diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2024-09-03 10:16:32 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2024-09-03 10:16:32 +0700 |
| commit | 836936b33c8206cf5344df189642e7a65f095480 (patch) | |
| tree | 7ba554b6a583e9257093e369b37d437b006c1dc2 /indoteknik_custom/models | |
| parent | 5b376d68e62b5d06ff5665b405acc99b89448f06 (diff) | |
add others info in dunning run
Diffstat (limited to 'indoteknik_custom/models')
| -rw-r--r-- | indoteknik_custom/models/dunning_run.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indoteknik_custom/models/dunning_run.py b/indoteknik_custom/models/dunning_run.py index d75d7c51..90159cd0 100644 --- a/indoteknik_custom/models/dunning_run.py +++ b/indoteknik_custom/models/dunning_run.py @@ -27,6 +27,10 @@ class DunningRun(models.Model): shipper_faktur_id = fields.Many2one('delivery.carrier', string='Shipper Faktur') is_validated = fields.Boolean(string='Validated') notification = fields.Char(string='Notification') + is_paid = fields.Boolean(string='Paid') + description = fields.Char(string='Description') + comment = fields.Char(string='Comment') + def copy_date_faktur(self): if not self.is_validated: |
