Exemplo n.º 1
0
 def print_bill(self):
     gst_obj = GST(unit_price=self.product.unit_price,
                   category=self.product.category)
     gst_obj.print_gst()
     amount = TotalAmount(gst=gst_obj.gst_value,
                          quantity=self.product.quantity,
                          unit_price=self.product.unit_price)
     amount.print_amount()