diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-04 14:16:38 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-04 14:16:38 +0700 |
| commit | 43b20f27ca04037139b1775e6db2bfcc2fe5b851 (patch) | |
| tree | 75ceacc4b1078c246a400fb2c3a99ad8ef8fea42 /indoteknik_custom/models | |
| parent | 69c476bba84a7cb2b33e8b45bc1ea7d140333b2f (diff) | |
Customer PO
Diffstat (limited to 'indoteknik_custom/models')
| -rwxr-xr-x | indoteknik_custom/models/sale_order.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indoteknik_custom/models/sale_order.py b/indoteknik_custom/models/sale_order.py index f0792114..3f6f5032 100755 --- a/indoteknik_custom/models/sale_order.py +++ b/indoteknik_custom/models/sale_order.py @@ -49,6 +49,9 @@ class SaleOrder(models.Model): ('sebagian', 'Sebagian Diproses'), ('menunggu', 'Menunggu Diproses'), ]) + partner_purchase_order_name = fields.Char(string='Nama PO Customer', copy=False, help="Nama purchase order customer, diisi oleh customer melalui website.", tracking=3) + partner_purchase_order_description = fields.Text(string='Keterangan PO Customer', copy=False, help="Keterangan purchase order customer, diisi oleh customer melalui website.", tracking=3) + partner_purchase_order_file = fields.Binary(string='File PO Customer', copy=False, help="File purchase order customer, diisi oleh customer melalui website.") def calculate_so_status_beginning(self): so_state = ['sale'] |
