diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-05-30 16:09:35 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-05-30 16:09:35 +0700 |
| commit | 65fe5e9cb0865293eb6d0626d2c99f35d6862b3c (patch) | |
| tree | 9b101f91df2be5e08a489991579b9edd691cbdfd /indoteknik_custom/views/account_move.xml | |
| parent | c0bc0039928cdb7e2eef8e39dc5daad6e5ecfc28 (diff) | |
add invoice_date_due and terima faktur on bills
Diffstat (limited to 'indoteknik_custom/views/account_move.xml')
| -rw-r--r-- | indoteknik_custom/views/account_move.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/indoteknik_custom/views/account_move.xml b/indoteknik_custom/views/account_move.xml index 1be6d118..93145fea 100644 --- a/indoteknik_custom/views/account_move.xml +++ b/indoteknik_custom/views/account_move.xml @@ -111,6 +111,8 @@ <field name="bill_day_to_due" string="Due Date" widget="remaining_days"/> <field name="is_efaktur_uploaded" optional="hide"/> <field name="is_invoice_uploaded" optional="hide"/> + <field name="invoice_date"/> + <field name="invoice_date_due"/> </field> <field name="invoice_date_due" position="attributes"> @@ -131,6 +133,9 @@ {'column_invisible': [('parent.move_type', '!=', 'in_invoice')]} </attribute> </field> + <field name="invoice_incoterm_id" position="after"> + <field name="date_terima_tukar_faktur"/> + </field> </field> </record> @@ -141,6 +146,14 @@ <field name="state">code</field> <field name="code">action = records.open_form_multi_update()</field> </record> + + <record id="account_move_multi_update_bills_ir_actions_server" model="ir.actions.server"> + <field name="name">Update Terima Faktur Bills</field> + <field name="model_id" ref="account.model_account_move"/> + <field name="binding_model_id" ref="account.model_account_move"/> + <field name="state">code</field> + <field name="code">action = records.open_form_multi_update_bills()</field> + </record> <record id="account_move_multi_create_reklas_ir_actions_server" model="ir.actions.server"> <field name="name">Create Reklas Penjualan</field> |
