Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
218
sale_order_line_menu/views/sale_order_line_views.xml
Executable file
218
sale_order_line_menu/views/sale_order_line_views.xml
Executable file
@@ -0,0 +1,218 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- Copyright 2023 Moduon Team
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
<record id="sale_order_line_view_form_readonly" model="ir.ui.view">
|
||||
<field name="name">sale.order.line.view.form.readonly</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field name="inherit_id" ref="sale.sale_order_line_view_form_readonly" />
|
||||
<field name="mode">primary</field>
|
||||
<field name="priority">999</field>
|
||||
<field name="arch" type="xml">
|
||||
<form position="attributes">
|
||||
<attribute name="create">false</attribute>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="sale_order_line_tree" model="ir.ui.view">
|
||||
<field name="model">sale.order.line</field>
|
||||
<field name="inherit_id" ref="sale.view_order_line_tree" />
|
||||
<field name="mode">primary</field>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='order_id']" position="after">
|
||||
<field name="state" optional="hide" />
|
||||
<field name="invoice_status" optional="hide" />
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='name']" position="after">
|
||||
<field
|
||||
name="analytic_distribution"
|
||||
widget="analytic_distribution"
|
||||
groups="analytic.group_analytic_accounting"
|
||||
options="{'product_field': 'product_id', 'business_domain': 'sale_order'}"
|
||||
optional="hide"
|
||||
/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='order_partner_id']" position="after">
|
||||
<field name="product_id" />
|
||||
<field name="product_template_id" optional="hide" />
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='product_uom']" position="before">
|
||||
<field name="price_unit" optional="show" />
|
||||
<field name="discount" optional="hide" />
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='price_subtotal']" position="after">
|
||||
<field name="tax_id" widget="many2many_tags" optional="hide" />
|
||||
<field
|
||||
name="price_tax"
|
||||
widget="monetary"
|
||||
optional="hide"
|
||||
sum="Price Tax"
|
||||
/>
|
||||
<field name="price_total" optional="hide" sum="Price Total" />
|
||||
</xpath>
|
||||
<xpath expr="//list" position="inside">
|
||||
<field name="date_order" widget="date" optional="show" />
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='salesman_id']" position="attributes">
|
||||
<attribute name="optional">hide</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='qty_delivered']" position="attributes">
|
||||
<attribute name="optional">hide</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='qty_invoiced']" position="attributes">
|
||||
<attribute name="optional">hide</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='qty_to_invoice']" position="attributes">
|
||||
<attribute name="optional">hide</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='price_subtotal']" position="attributes">
|
||||
<attribute name="sum">Price Subtotal</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='name']" position="attributes">
|
||||
<attribute name="optional">show</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//list" position="inside">
|
||||
<field
|
||||
name="invoice_lines"
|
||||
widget="many2many_tags"
|
||||
groups="account.group_account_invoice"
|
||||
optional="hide"
|
||||
domain="[('move_id.partner_id', 'child_of', parent.parent_partner_id), ('sale_line_ids', 'not in', parent.order_line), ('display_type', '=', 'product'), ('move_id.move_type', 'in', ('out_invoice', 'out_refund', 'out_receipt'))]"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_sale_order_line_pivot" model="ir.ui.view">
|
||||
<field name="name">sale.order.line.pivot</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field name="arch" type="xml">
|
||||
<pivot string="Order Lines" sample="1">
|
||||
<field name="product_id" type="row" />
|
||||
<field name="date_order" type="col" />
|
||||
<field name="price_subtotal" type="measure" />
|
||||
</pivot>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_sales_order_line_filter" model="ir.ui.view">
|
||||
<field name="name">sale.order.line.search</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field name="inherit_id" ref="sale.view_sales_order_line_filter" />
|
||||
<field name="mode">primary</field>
|
||||
<field name="priority">101</field>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//filter[@name='to_invoice']" position="replace" />
|
||||
<xpath expr="//filter[@name='my_sales_order_lines']" position="after">
|
||||
<separator />
|
||||
<filter
|
||||
name="flt_state_draft"
|
||||
string="Quotation"
|
||||
domain="[('state','=','draft')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_state_sent"
|
||||
string="Quotation Sent"
|
||||
domain="[('state','=','sent')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_state_sale"
|
||||
string="Sales Order"
|
||||
domain="[('state','=','sale')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_state_done"
|
||||
string="Locked"
|
||||
domain="[('state','=','done')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_state_cancel"
|
||||
string="Cancelled"
|
||||
domain="[('state','=','cancel')]"
|
||||
/>
|
||||
<separator />
|
||||
<filter
|
||||
name="flt_invoice_status_no"
|
||||
string="Nothing to Invoice"
|
||||
domain="[('invoice_status','=','no')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_invoice_status_upselling"
|
||||
string="Upselling Opportunity"
|
||||
domain="[('invoice_status','=','upselling')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_invoice_status_to_invoice"
|
||||
string="To Invoice"
|
||||
domain="[('invoice_status','=','to invoice')]"
|
||||
/>
|
||||
<filter
|
||||
name="flt_invoice_status_invoiced"
|
||||
string="Fully Invoiced"
|
||||
domain="[('invoice_status','=','invoiced')]"
|
||||
/>
|
||||
<separator />
|
||||
<filter name="flt_date_order" string="Order Date" date="date_order" />
|
||||
</xpath>
|
||||
<xpath expr="//group" position="inside">
|
||||
<filter
|
||||
name="groupby_invoice_status"
|
||||
string="Invoice Status"
|
||||
context="{'group_by' : 'invoice_status'}"
|
||||
/>
|
||||
<filter
|
||||
name="groupby_date_order"
|
||||
string="Order Date"
|
||||
context="{'group_by' : 'date_order'}"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_orders_lines" model="ir.actions.act_window">
|
||||
<field name="name">Order Lines</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">sale.order.line</field>
|
||||
<field name="view_mode">list,form,pivot</field>
|
||||
<field
|
||||
name="search_view_id"
|
||||
ref="sale_order_line_menu.view_sales_order_line_filter"
|
||||
/>
|
||||
<field
|
||||
name="domain"
|
||||
>[('display_type', 'not in', ['line_section', 'line_note'])]</field>
|
||||
</record>
|
||||
|
||||
<record
|
||||
id="ir_action_order_line_list_window_view"
|
||||
model="ir.actions.act_window.view"
|
||||
>
|
||||
<field eval="1" name="sequence" />
|
||||
<field name="view_mode">list</field>
|
||||
<field name="view_id" ref="sale_order_line_menu.sale_order_line_tree" />
|
||||
<field name="act_window_id" ref="sale_order_line_menu.action_orders_lines" />
|
||||
</record>
|
||||
|
||||
<record
|
||||
id="ir_action_order_line_form_window_view"
|
||||
model="ir.actions.act_window.view"
|
||||
>
|
||||
<field eval="2" name="sequence" />
|
||||
<field name="view_mode">form</field>
|
||||
<field
|
||||
name="view_id"
|
||||
ref="sale_order_line_menu.sale_order_line_view_form_readonly"
|
||||
/>
|
||||
<field name="act_window_id" ref="sale_order_line_menu.action_orders_lines" />
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
id="sale_order_line_menu"
|
||||
name="Order Lines"
|
||||
action="sale_order_line_menu.action_orders_lines"
|
||||
parent="sale.sale_order_menu"
|
||||
groups="sales_team.group_sale_salesman"
|
||||
sequence="21"
|
||||
/>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user