diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-12-06 11:05:10 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-12-06 11:05:10 +0700 |
| commit | 02a1cfe4a4166d1b10ac82d9d89a1be64c870649 (patch) | |
| tree | 155713e64464f6a34d1e265bf298febeb197e897 /indoteknik_custom/models | |
| parent | ba29eec0050a0e47c9344f4a7fd4e42785779a53 (diff) | |
add note for purchase order line
Diffstat (limited to 'indoteknik_custom/models')
| -rwxr-xr-x | indoteknik_custom/models/purchase_order_line.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/purchase_order_line.py b/indoteknik_custom/models/purchase_order_line.py index 2e91bb69..b082eae9 100755 --- a/indoteknik_custom/models/purchase_order_line.py +++ b/indoteknik_custom/models/purchase_order_line.py @@ -31,6 +31,7 @@ class PurchaseOrderLine(models.Model): price_vendor = fields.Float(string='Price Vendor', compute='compute_price_vendor') so_line_id = fields.Many2one('sale.order.line', string='ID SO Line') indent = fields.Boolean(string='Indent', help='centang ini jika barang indent') + note = fields.Char(string='Note') def compute_price_vendor(self): for line in self: |
