diff options
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/account_move.xml | 16 | ||||
| -rw-r--r-- | indoteknik_custom/views/bill_receipt.xml | 78 | ||||
| -rw-r--r-- | indoteknik_custom/views/promotion_program.xml | 73 | ||||
| -rw-r--r-- | indoteknik_custom/views/promotion_program_free_item.xml | 44 | ||||
| -rw-r--r-- | indoteknik_custom/views/promotion_program_keyword.xml | 44 | ||||
| -rw-r--r-- | indoteknik_custom/views/promotion_program_line.xml | 98 | ||||
| -rwxr-xr-x | indoteknik_custom/views/sale_order.xml | 3 | ||||
| -rwxr-xr-x | indoteknik_custom/views/voucher.xml | 23 | ||||
| -rwxr-xr-x | indoteknik_custom/views/website_user_cart.xml | 4 |
9 files changed, 348 insertions, 35 deletions
diff --git a/indoteknik_custom/views/account_move.xml b/indoteknik_custom/views/account_move.xml index 7f7fb228..0fd6b5b5 100644 --- a/indoteknik_custom/views/account_move.xml +++ b/indoteknik_custom/views/account_move.xml @@ -10,13 +10,29 @@ <button name="indoteknik_custom.action_view_invoice_reklas" string="Reklas" type="action" class="btn-primary" attrs="{'invisible': [('state', '!=', 'posted')]}"/> </button> + <field name="invoice_date" position="after"> + <field name="payment_schedule" attrs="{'invisible': [('move_type', '!=', 'in_invoice')]}"/> + </field> <field name="invoice_user_id" position="after"> <field name="date_kirim_tukar_faktur"/> <field name="shipper_faktur_id"/> <field name="resi_tukar_faktur"/> <field name="date_terima_tukar_faktur"/> <field name="due_extension"/> + <field name="counter"/> </field> + <notebook position="inside"> + <page string="Due Extension"> + <field name="due_line"> + <tree> + <field name="due_id"/> + <field name="due_description"/> + <field name="due_day_extension"/> + <field name="due_approval_status"/> + </tree> + </field> + </page> + </notebook> </field> </record> diff --git a/indoteknik_custom/views/bill_receipt.xml b/indoteknik_custom/views/bill_receipt.xml index cfc268b0..15d82e7b 100644 --- a/indoteknik_custom/views/bill_receipt.xml +++ b/indoteknik_custom/views/bill_receipt.xml @@ -6,10 +6,13 @@ <field name="arch" type="xml"> <tree> <field name="number"/> - <field name="vendor_id"/> - <field name="document_date"/> - <field name="description"/> - <field name="validated"/> + <field name="bill_date"/> + <field name="partner_id"/> + <field name="is_validated" readonly="1"/> + <field name="date_kirim_tukar_faktur"/> + <field name="resi_tukar_faktur"/> + <field name="date_terima_tukar_faktur"/> + <field name="shipper_faktur_id"/> </tree> </field> </record> @@ -19,16 +22,13 @@ <field name="model">bill.receipt.line</field> <field name="arch" type="xml"> <tree> - <field name="partner_ref"/> - <field name="po_id"/> - <field name="sale_order_id"/> - <field name="user_id"/> - <field name="vendor_id"/> - <field name="date_approve"/> - <field name="date_planned"/> + <field name="partner_id"/> + <field name="invoice_id"/> + <field name="date_invoice"/> <field name="reference"/> - <field name="amount_untaxed"/> - <field name="amount_total"/> + <field name="total_amt"/> + <field name="open_amt"/> + <field name="due_date"/> </tree> </field> </record> @@ -39,29 +39,41 @@ <field name="arch" type="xml"> <form> <header> - <button name="validate_button" + <button name="generate_bill_line" + string="Generate" + type="object" + class="mr-2 oe_highlight oe_edit_only" + /> + <button name="validate_bill" string="Validate" type="object" + class="mr-2 oe_highlight oe_edit_only" /> - <button name="cancel_button" - string="Cancel" - type="object" + <button name="copy_date_faktur" + string="Copy Date" + type="object" + class="oe_highlight oe_edit_only" /> </header> <sheet> <group> <group> - <field name="vendor_id" attrs="{'readonly': [('validated', '=', True)]}"/> - <field name="document_date" attrs="{'readonly': [('validated', '=', True)]}"/> - <field name="description" attrs="{'readonly': [('validated', '=', True)]}"/> + <field name="number"/> + <field name="partner_id"/> + <field name="bill_date"/> + <field name="notification" readonly="1"/> </group> <group> - <field name="validated" readonly="1"/> + <field name="is_validated" readonly="1"/> + <field name="date_kirim_tukar_faktur"/> + <field name="resi_tukar_faktur"/> + <field name="date_terima_tukar_faktur"/> + <field name="shipper_faktur_id"/> </group> </group> <notebook> - <page string="Bill Line" name="bill_line"> - <field name="bill_line" attrs="{'readonly': [('validated', '=', True)]}"/> + <page string="Bills"> + <field name="bill_line" attrs="{'readonly': [('is_validated', '=', True)]}"/> </page> </notebook> </sheet> @@ -69,18 +81,32 @@ </field> </record> + <record id="view_bill_receipt_filter" model="ir.ui.view"> + <field name="name">bill.receipt.list.select</field> + <field name="model">bill.receipt</field> + <field name="priority" eval="15"/> + <field name="arch" type="xml"> + <search string="Search Bills"> + <field name="number"/> + <field name="partner_id"/> + <field name="bill_line" string="Bill" filter_domain="[('bill_line.invoice_id', 'ilike', self)]"/> + </search> + </field> + </record> + <record id="bill_receipt_action" model="ir.actions.act_window"> <field name="name">Bill Line</field> <field name="type">ir.actions.act_window</field> <field name="res_model">bill.receipt</field> + <field name="search_view_id" ref="view_bill_receipt_filter"/> <field name="view_mode">tree,form</field> </record> <menuitem id="menu_bill_receipt" - name="Bill Line" - parent="sale.product_menu_catalog" - sequence="4" + name="Bill Receipt" + parent="account.menu_finance_reports" + sequence="250" action="bill_receipt_action" /> </odoo> diff --git a/indoteknik_custom/views/promotion_program.xml b/indoteknik_custom/views/promotion_program.xml new file mode 100644 index 00000000..5dff80e6 --- /dev/null +++ b/indoteknik_custom/views/promotion_program.xml @@ -0,0 +1,73 @@ +<odoo> + <record id="promotion_program_tree" model="ir.ui.view"> + <field name="name">Promotion Program Tree</field> + <field name="model">promotion.program</field> + <field name="arch" type="xml"> + <tree> + <field name="name" /> + <field name="start_time" /> + <field name="end_time" /> + <field name="applies_to" /> + </tree> + </field> + </record> + + <record id="promotion_program_form" model="ir.ui.view"> + <field name="name">Promotion Program Form</field> + <field name="model">promotion.program</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="name" /> + <field name="keywords" widget="many2many_tags" /> + <field name="banner" widget="image" height="160" /> + </group> + <group> + <field name="start_time" /> + <field name="end_time" /> + <field name="applies_to" /> + </group> + </group> + <notebook> + <page string="Program Lines" name="program_lines"> + <field name="program_line" /> + </page> + <page string="Image Properties" name="image_properties"> + <group> + <group> + <field name="icon" widget="image" height="120" /> + <field name="icon_top" widget="image" height="80" /> + <field name="icon_bottom" widget="image" height="80" /> + </group> + </group> + </page> + </notebook> + </sheet> + </form> + </field> + </record> + + <record id="promotion_program_action" model="ir.actions.act_window"> + <field name="name">Promotion Program</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">promotion.program</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + id="menu_promotion_program_parent" + name="Promotion Program" + parent="website.menu_website_configuration" + sequence="7" + /> + + <menuitem + id="menu_promotion_program" + name="Program" + parent="indoteknik_custom.menu_promotion_program_parent" + sequence="1" + action="promotion_program_action" + /> +</odoo>
\ No newline at end of file diff --git a/indoteknik_custom/views/promotion_program_free_item.xml b/indoteknik_custom/views/promotion_program_free_item.xml new file mode 100644 index 00000000..52d421fe --- /dev/null +++ b/indoteknik_custom/views/promotion_program_free_item.xml @@ -0,0 +1,44 @@ +<odoo> + <record id="promotion_program_free_item_tree" model="ir.ui.view"> + <field name="name">Promotion Program Free Item Tree</field> + <field name="model">promotion.program.free_item</field> + <field name="arch" type="xml"> + <tree> + <field name="product_id" /> + <field name="qty" /> + </tree> + </field> + </record> + + <record id="promotion_program_free_item_form" model="ir.ui.view"> + <field name="name">Promotion Program Free Item Form</field> + <field name="model">promotion.program.free_item</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="product_id" /> + <field name="qty" /> + </group> + </group> + </sheet> + </form> + </field> + </record> + + <record id="promotion_program_free_item_action" model="ir.actions.act_window"> + <field name="name">Promotion Program Free Item</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">promotion.program.free_item</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + id="menu_promotion_program_free_item" + name="Program Free Item" + parent="indoteknik_custom.menu_promotion_program_parent" + sequence="3" + action="promotion_program_free_item_action" + /> +</odoo>
\ No newline at end of file diff --git a/indoteknik_custom/views/promotion_program_keyword.xml b/indoteknik_custom/views/promotion_program_keyword.xml new file mode 100644 index 00000000..fd279665 --- /dev/null +++ b/indoteknik_custom/views/promotion_program_keyword.xml @@ -0,0 +1,44 @@ +<odoo> + <record id="promotion_program_keyword_tree" model="ir.ui.view"> + <field name="name">Promotion Program Keyword Tree</field> + <field name="model">promotion.program.keyword</field> + <field name="arch" type="xml"> + <tree> + <field name="name" /> + <field name="program_id" /> + </tree> + </field> + </record> + + <record id="promotion_program_keyword_form" model="ir.ui.view"> + <field name="name">Promotion Program Keyword Form</field> + <field name="model">promotion.program.keyword</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="name" /> + <field name="program_id" /> + </group> + </group> + </sheet> + </form> + </field> + </record> + + <record id="promotion_program_keyword_action" model="ir.actions.act_window"> + <field name="name">Promotion Program Keyword</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">promotion.program.keyword</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + id="menu_promotion_program_keyword" + name="Program Keyword" + parent="indoteknik_custom.menu_promotion_program_parent" + sequence="4" + action="promotion_program_keyword_action" + /> +</odoo>
\ No newline at end of file diff --git a/indoteknik_custom/views/promotion_program_line.xml b/indoteknik_custom/views/promotion_program_line.xml new file mode 100644 index 00000000..5963d0dd --- /dev/null +++ b/indoteknik_custom/views/promotion_program_line.xml @@ -0,0 +1,98 @@ +<odoo> + <record id="promotion_program_line_tree" model="ir.ui.view"> + <field name="name">Promotion Program Line Tree</field> + <field name="model">promotion.program.line</field> + <field name="arch" type="xml"> + <tree> + <field name="name" /> + <field name="promotion_type" /> + <field name="limit_qty" /> + <field name="limit_qty_user" /> + <field name="limit_qty_transaction" /> + <field name="line_free_item" /> + <field name="display_on_homepage" /> + </tree> + </field> + </record> + + <record id="promotion_program_line_form" model="ir.ui.view"> + <field name="name">Promotion Program Line Form</field> + <field name="model">promotion.program.line</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="name" /> + <field name="promotion_type"/> + <field name="product_id" /> + <field name="image" widget="image" height="160" /> + </group> + <group> + <field name="limit_qty" /> + <field name="limit_qty_user" /> + <field name="limit_qty_transaction" /> + <field + name="discount_type" + attrs="{'invisible': [('promotion_type', '!=', 'special_price')]}" + /> + <field + name="discount_amount" + attrs="{'invisible': [('promotion_type', '!=', 'special_price')]}" + /> + <field + name="minimum_purchase_qty" + attrs="{'invisible': [('promotion_type', 'not in', ['discount_loading', 'bundling', 'merchandise'])]}" + /> + <field + name="applies_multiply" + attrs="{'invisible': [('promotion_type', 'not in', ['discount_loading', 'bundling', 'merchandise'])]}" + /> + <field + name="display_on_homepage" + attrs="{'invisible': [('promotion_type', '!=', 'special_price')]}" + /> + </group> + </group> + <notebook> + <page + string="Line Free Item" + name="line_free_items" + attrs="{'invisible': [('promotion_type', '=', 'special_price')]}" + > + <field name="line_free_item" /> + </page> + <page + string="Order Line" + name="order_line" + > + <field name="order_line_ids" readonly="1"> + <tree> + <field name="order_id" /> + <field name="name" /> + <field name="product_id" /> + <field name="product_uom_qty" /> + </tree> + </field> + </page> + </notebook> + </sheet> + </form> + </field> + </record> + + <record id="promotion_program_line_action" model="ir.actions.act_window"> + <field name="name">Promotion Program Line</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">promotion.program.line</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + id="menu_promotion_program_line" + name="Program Line" + parent="indoteknik_custom.menu_promotion_program_parent" + sequence="2" + action="promotion_program_line_action" + /> +</odoo>
\ No newline at end of file diff --git a/indoteknik_custom/views/sale_order.xml b/indoteknik_custom/views/sale_order.xml index 7679f92d..4570f43b 100755 --- a/indoteknik_custom/views/sale_order.xml +++ b/indoteknik_custom/views/sale_order.xml @@ -26,7 +26,7 @@ <field name="delivery_amt"/> <field name="fee_third_party"/> <field name="total_percent_margin"/> - <field name="voucher_id" /> + <field name="voucher_id" readonly="1" /> </field> <field name="analytic_account_id" position="after"> <field name="customer_type" attrs="{'required': ['|', ('create_date', '>', '2023-06-28'), ('create_date', '=', False)]}"/> @@ -72,6 +72,7 @@ <field name="note_procurement" optional="hide"/> <field name="vendor_subtotal" optional="hide"/> <field name="amount_voucher_disc" string="Voucher" optional="hide"/> + <field name="program_line_id" optional="1" /> </xpath> <xpath expr="//form/sheet/notebook/page/field[@name='order_line']/tree/field[@name='product_id']" position="before"> <field name="line_no" readonly="1" optional="hide"/> diff --git a/indoteknik_custom/views/voucher.xml b/indoteknik_custom/views/voucher.xml index cd42586e..c6741a8d 100755 --- a/indoteknik_custom/views/voucher.xml +++ b/indoteknik_custom/views/voucher.xml @@ -28,15 +28,7 @@ <group> <field name="image" widget="image" width="120"/> <field name="name" required="1" /> - <field name="description" placeholder="Insert short description..." /> - </group> - <group string="Rules"> - <field name="code" required="1" /> - <field name="visibility" required="1" /> - <field name="start_time" required="1"/> - <field name="end_time" required="1"/> </group> - <group></group> <group string="Discount Settings"> <field name="min_purchase_amount" widget="monetary" required="1" /> <field name="discount_type" required="1" /> @@ -60,12 +52,27 @@ <field name="max_discount_amount" widget="monetary" required="1" attrs="{'invisible': [('discount_type', '!=', 'percentage')]}"/> </group> + <group string="Rules"> + <field name="code" required="1" /> + <field name="visibility" required="1" /> + <field name="start_time" required="1"/> + <field name="end_time" required="1"/> + <field name="limit" required="1"/> + <field name="manufacture_ids" widget="many2many_tags"/> + <field name="excl_pricelist_ids" widget="many2many_tags"/> + </group> </group> <notebook> + <page name="description" string="Description"> + <label for="description" string="Max 120 characters:" class="font-weight-normal mb-2 oe_edit_only"/> + <field name="description" placeholder="Insert short description..." /> + </page> <page name="order_page" string="Orders"> <field name="order_ids" readonly="1"> <tree> <field name="name" /> + <field name="partner_id" /> + <field name="amount_voucher_disc" /> <field name="amount_total" /> </tree> </field> diff --git a/indoteknik_custom/views/website_user_cart.xml b/indoteknik_custom/views/website_user_cart.xml index 890d801c..fbd08acb 100755 --- a/indoteknik_custom/views/website_user_cart.xml +++ b/indoteknik_custom/views/website_user_cart.xml @@ -13,7 +13,9 @@ <tree> <field name="user_id"/> <field name="product_id"/> + <field name="program_line_id"/> <field name="qty"/> + <field name="is_selected"/> </tree> </field> </record> @@ -28,7 +30,9 @@ <group> <field name="user_id"/> <field name="product_id"/> + <field name="program_line_id" domain="[('product_id', '=', product_id)]"/> <field name="qty"/> + <field name="is_selected"/> </group> <group></group> </group> |
