diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-05-24 14:42:28 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-05-24 14:42:28 +0700 |
| commit | 6cb1fc1a1cd0c8091c32dfcd19ebc58793873d25 (patch) | |
| tree | 5c215960f604fa9e6e24243d6c7b44b7b3401243 /indoteknik_custom/models | |
| parent | 6ad978a9acdcff5f3b1d0a7eaf8a1c6a1bb9a51a (diff) | |
add note description in purchase order
Diffstat (limited to 'indoteknik_custom/models')
| -rwxr-xr-x | indoteknik_custom/models/purchase_order.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py index f334d968..ea99e165 100755 --- a/indoteknik_custom/models/purchase_order.py +++ b/indoteknik_custom/models/purchase_order.py @@ -38,6 +38,7 @@ class PurchaseOrder(models.Model): summary_qty_po = fields.Float('Total Qty', compute='_compute_summary_qty') summary_qty_receipt = fields.Float('Summary Qty Receipt', compute='_compute_summary_qty') count_line_product = fields.Float('Total Item', compute='compute_count_line_product') + note_description = fields.Char(string='Note', help='bisa diisi sebagai informasi indent barang tertentu atau apapun') def _compute_date_planned(self): for order in self: |
