diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-04 13:40:22 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-04 13:40:22 +0700 |
| commit | dca58449623e0fd25f2dc301747982da6a5ea940 (patch) | |
| tree | 3a090311c4e9892384acee114fad9ad80c1bb3f5 /fixco_custom/models/sale.py | |
| parent | 3307dcbdb37285bcd43a719a0ecbc1453e4af9df (diff) | |
add new field on so and invoice
Diffstat (limited to 'fixco_custom/models/sale.py')
| -rwxr-xr-x | fixco_custom/models/sale.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fixco_custom/models/sale.py b/fixco_custom/models/sale.py index 8269fce..6d7a7e6 100755 --- a/fixco_custom/models/sale.py +++ b/fixco_custom/models/sale.py @@ -7,7 +7,9 @@ class SaleOrder(models.Model): carrier = fields.Char(string='Shipping Method') invoice_mp = fields.Char(string='Invoice Marketplace') - order_reference = fields.Char(string='Order Reference') + order_reference = fields.Char(string='Order Reference') + address = fields.Char('Address') + note_by_buyer = fields.Char('Note By Buyer') # def open_form_multi_create_invoices(self): # action = self.env['ir.actions.act_window']._for_xml_id('fixco_custom.action_sale_order_multi_invoices') |
