diff options
| -rwxr-xr-x | indoteknik_custom/models/purchase_order.py | 1 | ||||
| -rwxr-xr-x | indoteknik_custom/views/purchase_order.xml | 6 |
2 files changed, 6 insertions, 1 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: diff --git a/indoteknik_custom/views/purchase_order.xml b/indoteknik_custom/views/purchase_order.xml index eb5267e0..a4c77c58 100755 --- a/indoteknik_custom/views/purchase_order.xml +++ b/indoteknik_custom/views/purchase_order.xml @@ -56,6 +56,9 @@ </group> </page> </page> + <field name="fiscal_position_id" position="after"> + <field name="note_description"/> + </field> </field> </record> </data> @@ -78,7 +81,8 @@ <field name="inherit_id" ref="purchase.purchase_order_view_tree"/> <field name="arch" type="xml"> <field name="invoice_status" position="after"> - <field name="po_status" /> + <field name="po_status"/> + <field name="note_description" optional="hide"/> </field> </field> </record> |
