changes
This commit is contained in:
@@ -1615,6 +1615,8 @@ class Internal_Entry(AutoCodeModel):
|
||||
ref = models.CharField(max_length=30, null=True)
|
||||
customer = models.ForeignKey(Customer, null=True, related_name='+', on_delete=models.PROTECT)
|
||||
product = models.ForeignKey(Product, null=True, related_name='+', on_delete=models.PROTECT)
|
||||
allocation_amount = models.DecimalField(null=True, max_digits=15, decimal_places=2)
|
||||
allocation_detail = models.JSONField(null=True)
|
||||
create_time = models.DateTimeField(null=True, auto_now_add=True)
|
||||
update_time = models.DateTimeField(null=True, auto_now=True)
|
||||
|
||||
@@ -1647,7 +1649,7 @@ class Payment_Schedule(AutoCodeModel):
|
||||
type = models.ForeignKey(Payment_Type, null=False, related_name='+', on_delete=models.PROTECT)
|
||||
status = models.ForeignKey(Payment_Status, null=False, related_name='+', on_delete=models.PROTECT)
|
||||
updater = models.ForeignKey(User, null=False, related_name='+', on_delete=models.PROTECT)
|
||||
entry = models.ForeignKey(Internal_Entry, null=True, related_name='+', on_delete=models.PROTECT)
|
||||
entry = models.JSONField(null=True)
|
||||
detail = models.JSONField(null=True)
|
||||
ovd_days = models.IntegerField(null=True)
|
||||
penalty_amount = models.DecimalField(null=True, max_digits=15, decimal_places=2)
|
||||
|
||||
Reference in New Issue
Block a user