mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
645 lines
32 KiB
XML
645 lines
32 KiB
XML
<?xml version="1.0" ?>
|
|
<odoo>
|
|
<data>
|
|
<record id="view_rma_line_tree" model="ir.ui.view">
|
|
<field name="name">rma.order.line.tree</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="arch" type="xml">
|
|
<tree
|
|
string="RMA Line"
|
|
decoration-info="state in ('draft','to_approve')"
|
|
>
|
|
<field name="name" />
|
|
<field name="partner_id" />
|
|
<field name="product_id" />
|
|
<field name="lot_id" groups="stock.group_production_lot" />
|
|
<field name="rma_id" groups="rma.group_rma_groups" />
|
|
<field name="origin" />
|
|
<field name="operation_id" />
|
|
<field name="supplier_address_id" />
|
|
<field name="uom_id" groups="uom.group_uom" />
|
|
<field name="product_qty" />
|
|
<field name="price_unit" />
|
|
<field name="state" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_rma_line_supplier_tree" model="ir.ui.view">
|
|
<field name="name">rma.order.line.supplier.tree</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="arch" type="xml">
|
|
<tree
|
|
string="RMA Line"
|
|
decoration-info="state in ('draft','to_approve')"
|
|
>
|
|
<field name="name" />
|
|
<field name="partner_id" />
|
|
<field name="product_id" />
|
|
<field name="lot_id" groups="stock.group_production_lot" />
|
|
<field name="rma_id" groups="rma.group_rma_groups" />
|
|
<field name="origin" />
|
|
<field name="operation_id" domain="[('type','=','supplier')]" />
|
|
<field name="uom_id" groups="uom.group_uom" />
|
|
<field name="product_qty" />
|
|
<field name="price_unit" />
|
|
<field name="state" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_rma_line_supplier_form" model="ir.ui.view">
|
|
<field name="name">rma.order.line.supplier.form</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="arch" type="xml">
|
|
<form string="RMA Line">
|
|
<header>
|
|
<button
|
|
name="action_rma_to_approve"
|
|
type="object"
|
|
string="Request Approval"
|
|
attrs="{'invisible':[('state', '!=', 'draft')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<button
|
|
name="action_rma_draft"
|
|
type="object"
|
|
string="Back to Draft"
|
|
attrs="{'invisible':[('state', '=', 'draft')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user,rma.group_rma_supplier_user"
|
|
/>
|
|
<button
|
|
name="action_rma_approve"
|
|
type="object"
|
|
string="Approve"
|
|
attrs="{'invisible':[('state', '!=', 'to_approve')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<button
|
|
name="action_rma_done"
|
|
type="object"
|
|
string="Done"
|
|
attrs="{'invisible':[('state', 'in', ('done', 'draft'))]}"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<field name="state" widget="statusbar" nolabel="1" />
|
|
</header>
|
|
<sheet>
|
|
<div name="button_box" class="oe_button_box">
|
|
<button
|
|
type="object"
|
|
name="action_view_in_shipments"
|
|
class="oe_stat_button"
|
|
icon="fa-truck"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="in_shipment_count"
|
|
widget="statinfo"
|
|
string="Shipments"
|
|
/>
|
|
</button>
|
|
<button
|
|
type="object"
|
|
name="action_view_out_shipments"
|
|
class="oe_stat_button"
|
|
icon="fa-truck"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="out_shipment_count"
|
|
widget="statinfo"
|
|
string="Deliveries"
|
|
/>
|
|
</button>
|
|
<button
|
|
type="object"
|
|
name="action_view_rma_lines"
|
|
class="oe_stat_button"
|
|
icon="fa-link"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="rma_line_count"
|
|
widget="statinfo"
|
|
string="Customer RMA"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div class="oe_title" name="title">
|
|
<h1>
|
|
<field
|
|
name="name"
|
|
readonly="1"
|
|
invisible="context.get('hide_title',False)"
|
|
/>
|
|
</h1>
|
|
</div>
|
|
<group>
|
|
<group name="partner">
|
|
<field
|
|
name="partner_id"
|
|
context="{'res_partner_search_mode': 'supplier'}"
|
|
string="Supplier"
|
|
/>
|
|
<field
|
|
name="delivery_address_id"
|
|
domain="['|', ('parent_id', '=', partner_id),('id', '=', partner_id)]"
|
|
context="{'show_address': 1}"
|
|
options="{'always_reload': 1}"
|
|
groups='rma.group_rma_delivery_invoice_address'
|
|
/>
|
|
</group>
|
|
</group>
|
|
<group>
|
|
<group name="product" string="Product">
|
|
<field name="product_id" />
|
|
<newline />
|
|
<field name="product_tracking" invisible="1" />
|
|
<field
|
|
name="lot_id"
|
|
groups="stock.group_production_lot"
|
|
attrs="{'required': [('product_tracking', 'in', ('serial', 'lot'))]}"
|
|
domain="[('product_id', '=', product_id)]"
|
|
/>
|
|
</group>
|
|
<group name="product_qty" string="Quantity">
|
|
<field name="product_qty" />
|
|
<field name="price_unit" />
|
|
<field name="uom_id" groups="uom.group_uom" />
|
|
</group>
|
|
</group>
|
|
<group name="main_info" string="Origin">
|
|
<field
|
|
name="reference_move_id"
|
|
options="{'no_create': True}"
|
|
domain="[('picking_id.partner_id', '=', partner_id),
|
|
('location_id.usage', '=', 'supplier'),
|
|
('state', '=', 'done')]"
|
|
/>
|
|
</group>
|
|
<group>
|
|
<group name="operation" string="Operation">
|
|
<field
|
|
name="operation_id"
|
|
domain="[('type','=','supplier')]"
|
|
/>
|
|
<field name="receipt_policy" />
|
|
<field name="delivery_policy" />
|
|
</group>
|
|
<group name="description" string="Description">
|
|
<field name="description" nolabel="1" />
|
|
</group>
|
|
<group name="contact" string="Contact">
|
|
<field name="requested_by" readonly="1" />
|
|
<field name="assigned_to" />
|
|
</group>
|
|
</group>
|
|
<notebook>
|
|
<page name="route" string="Routes">
|
|
<group>
|
|
<group name="inbound" string="Inbound">
|
|
<field name="in_warehouse_id" />
|
|
<field
|
|
name="location_id"
|
|
domain="[('usage', '=', 'internal')]"
|
|
/>
|
|
<field
|
|
name="in_route_id"
|
|
groups="stock.group_adv_location"
|
|
/>
|
|
</group>
|
|
<group name="outbound" string="Outbound">
|
|
<field name="out_warehouse_id" />
|
|
<field
|
|
name="out_route_id"
|
|
groups="stock.group_adv_location"
|
|
/>
|
|
<field name="supplier_to_customer" />
|
|
<field
|
|
name="customer_address_id"
|
|
context="{'show_address': 1}"
|
|
options="{'always_reload': 1}"
|
|
attrs="{'required':[('supplier_to_customer', '=', True)],
|
|
'invisible':[('supplier_to_customer', '=', False)]}"
|
|
/>
|
|
</group>
|
|
</group>
|
|
</page>
|
|
<page name="stock" string="Stock Moves">
|
|
<field name="move_ids" nolabel="1" readonly="1" />
|
|
</page>
|
|
<page name="quantities" string="Quantities">
|
|
<group>
|
|
<group
|
|
name="quantities"
|
|
col="4"
|
|
string="Quantities"
|
|
>
|
|
<group name="receive">
|
|
<field name="qty_to_receive" />
|
|
<field name="qty_incoming" />
|
|
<field name="qty_received" />
|
|
</group>
|
|
<group name="deliver">
|
|
<field name="qty_to_deliver" />
|
|
<field name="qty_outgoing" />
|
|
<field name="qty_delivered" />
|
|
</group>
|
|
</group>
|
|
</group>
|
|
</page>
|
|
<page name="other" string="Other Info">
|
|
<group name="general" string="General">
|
|
<field name="conditions" />
|
|
<field
|
|
name="rma_id"
|
|
groups="rma.group_rma_groups"
|
|
/>
|
|
<field name="origin" />
|
|
|
|
</group>
|
|
<group
|
|
name="company"
|
|
string="Company"
|
|
groups="base.group_multi_company"
|
|
>
|
|
<field name="company_id" />
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
<div class="oe_chatter">
|
|
<field
|
|
name="message_follower_ids"
|
|
widget="mail_followers"
|
|
groups="base.group_user"
|
|
/>
|
|
<field name="message_ids" widget="mail_thread" />
|
|
</div>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_rma_line_form" model="ir.ui.view">
|
|
<field name="name">rma.order.line.form</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="arch" type="xml">
|
|
<form string="RMA Line">
|
|
<header>
|
|
<button
|
|
name="action_rma_to_approve"
|
|
type="object"
|
|
string="Request Approval"
|
|
attrs="{'invisible':[('state', '!=', 'draft')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<button
|
|
name="action_rma_draft"
|
|
type="object"
|
|
string="Back to Draft"
|
|
attrs="{'invisible':[('state', '=', 'draft')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user,rma.group_rma_supplier_user"
|
|
/>
|
|
<button
|
|
name="action_rma_approve"
|
|
type="object"
|
|
string="Approve"
|
|
attrs="{'invisible':[('state', '!=', 'to_approve')]}"
|
|
class="oe_highlight"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<button
|
|
name="action_rma_done"
|
|
type="object"
|
|
string="Done"
|
|
attrs="{'invisible':[('state', 'in', ('done', 'draft'))]}"
|
|
groups="rma.group_rma_customer_user"
|
|
/>
|
|
<field name="state" widget="statusbar" nolabel="1" />
|
|
</header>
|
|
<sheet>
|
|
<div name="button_box" class="oe_button_box">
|
|
<button
|
|
type="object"
|
|
name="action_view_in_shipments"
|
|
class="oe_stat_button"
|
|
icon="fa-truck"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="in_shipment_count"
|
|
widget="statinfo"
|
|
string="Shipments"
|
|
/>
|
|
</button>
|
|
<button
|
|
type="object"
|
|
name="action_view_out_shipments"
|
|
class="oe_stat_button"
|
|
icon="fa-truck"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="out_shipment_count"
|
|
widget="statinfo"
|
|
string="Deliveries"
|
|
/>
|
|
</button>
|
|
<!--Move this button to rma_account-->
|
|
<!--<button type="object" name="action_view_invoice"
|
|
class="oe_stat_button"
|
|
icon="fa-pencil-square-o"
|
|
string="Origin Inv">
|
|
</button>-->
|
|
<button
|
|
type="object"
|
|
name="action_view_rma_lines"
|
|
class="oe_stat_button"
|
|
icon="fa-link"
|
|
groups="stock.group_stock_user"
|
|
>
|
|
<field
|
|
name="rma_line_count"
|
|
widget="statinfo"
|
|
string="Supplier RMA"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div class="oe_title" name="title">
|
|
<h1>
|
|
<field
|
|
name="name"
|
|
readonly="1"
|
|
invisible="context.get('hide_title',False)"
|
|
/>
|
|
</h1>
|
|
</div>
|
|
<group name="partner">
|
|
<group name="partner">
|
|
<field
|
|
name="partner_id"
|
|
context="{'res_partner_search_mode': 'customer'}"
|
|
string="Customer"
|
|
/>
|
|
<field
|
|
name="delivery_address_id"
|
|
domain="['|', ('parent_id', '=', partner_id),
|
|
('id', '=', partner_id)]"
|
|
context="{'show_address': 1}"
|
|
options="{'always_reload': 1}"
|
|
groups='rma.group_rma_delivery_invoice_address'
|
|
/>
|
|
<field name="under_warranty" />
|
|
</group>
|
|
</group>
|
|
<group>
|
|
<group name="product" string="Product">
|
|
<field name="product_id" />
|
|
<newline />
|
|
<field name="product_tracking" invisible="1" />
|
|
<field
|
|
name="lot_id"
|
|
groups="stock.group_production_lot"
|
|
attrs="{'required': [('product_tracking', 'in', ('serial', 'lot'))]}"
|
|
/>
|
|
</group>
|
|
<group name="product_qty" string="Quantity">
|
|
<field name="product_qty" />
|
|
<field name="uom_id" groups="uom.group_uom" />
|
|
<field name="price_unit" />
|
|
</group>
|
|
</group>
|
|
<group name="main_info" string="Origin">
|
|
<field
|
|
name="reference_move_id"
|
|
options="{'no_create': True}"
|
|
domain="[('picking_id.partner_id', '=', partner_id),
|
|
('location_dest_id.usage', '=', 'customer'),
|
|
('state', '=', 'done')]"
|
|
/>
|
|
</group>
|
|
<group>
|
|
<group name="operation" string="Operation">
|
|
<field
|
|
name="operation_id"
|
|
domain="[('type','=','customer')]"
|
|
/>
|
|
<field name="receipt_policy" />
|
|
<field name="delivery_policy" />
|
|
</group>
|
|
<group name="description" string="Description">
|
|
<field name="description" nolabel="1" />
|
|
</group>
|
|
</group>
|
|
<group>
|
|
<group name="contact" string="Contact">
|
|
<field name="requested_by" readonly="1" />
|
|
<field name="assigned_to" />
|
|
</group>
|
|
</group>
|
|
<notebook>
|
|
<page name="route" string="Routes">
|
|
<group name="inbound" string="Inbound">
|
|
<field name="in_warehouse_id" />
|
|
<field
|
|
name="location_id"
|
|
domain="[('usage', '=', 'internal')]"
|
|
/>
|
|
<field
|
|
name="in_route_id"
|
|
groups="stock.group_adv_location"
|
|
/>
|
|
<field name="customer_to_supplier" />
|
|
<field
|
|
name="supplier_address_id"
|
|
context="{'show_address': 1}"
|
|
options="{'always_reload': 1}"
|
|
attrs="{'required':[('customer_to_supplier', '=', True)],
|
|
'invisible':[('customer_to_supplier', '=', False)]}"
|
|
/>
|
|
</group>
|
|
<group name="outbound" string="Outbound">
|
|
<field name="out_warehouse_id" />
|
|
<field
|
|
name="out_route_id"
|
|
groups="stock.group_adv_location"
|
|
/>
|
|
</group>
|
|
</page>
|
|
<page name="stock" string="Stock Moves">
|
|
<field name="move_ids" nolabel="1" readonly="1" />
|
|
</page>
|
|
<page name="quantities" string="Quantities">
|
|
<group name="quantities" col="4" string="Quantities">
|
|
<group name="receive">
|
|
<field name="qty_to_receive" />
|
|
<field name="qty_incoming" />
|
|
<field name="qty_received" />
|
|
</group>
|
|
<group name="deliver">
|
|
<field name="qty_to_deliver" />
|
|
<field name="qty_outgoing" />
|
|
<field name="qty_delivered" />
|
|
</group>
|
|
<group
|
|
name="supplier_rma"
|
|
attrs="{'invisible':[('customer_to_supplier','=',False)]}"
|
|
>
|
|
<field name="qty_to_supplier_rma" />
|
|
<field name="qty_in_supplier_rma" />
|
|
</group>
|
|
</group>
|
|
</page>
|
|
<page name="other" string="Other Info">
|
|
<group name="general" string="General">
|
|
<field name="conditions" />
|
|
<field
|
|
name="rma_id"
|
|
groups="rma.group_rma_groups"
|
|
/>
|
|
<field name="origin" />
|
|
</group>
|
|
<group
|
|
name="company"
|
|
string="Company"
|
|
groups="base.group_multi_company"
|
|
>
|
|
<field name="company_id" />
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
<div class="oe_chatter">
|
|
<field
|
|
name="message_follower_ids"
|
|
widget="mail_followers"
|
|
groups="base.group_user"
|
|
/>
|
|
<field name="message_ids" widget="mail_thread" />
|
|
</div>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_rma_rma_line_filter" model="ir.ui.view">
|
|
<field name="name">rma.order.line.select</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="arch" type="xml">
|
|
<search string="Search RMA line">
|
|
<field name="name" />
|
|
<field name="rma_id" groups="rma.group_rma_groups" />
|
|
<field name="partner_id" />
|
|
<field name="requested_by" />
|
|
<field name="assigned_to" />
|
|
<field name="product_id" />
|
|
<field name="lot_id" />
|
|
<separator />
|
|
<filter
|
|
name="assigned_to"
|
|
domain="[('assigned_to','=',uid)]"
|
|
help="My RMAs"
|
|
/>
|
|
<separator />
|
|
<group name="stock_quantities" groups="stock.group_stock_user">
|
|
<filter
|
|
name="to_receive"
|
|
domain="[('state','!=', 'done'),('qty_to_receive','>',0.0)]"
|
|
help="To Receive"
|
|
/>
|
|
<filter
|
|
name="to_deliver"
|
|
domain="[('state','!=', 'done'),('qty_to_deliver','>',0.0)]"
|
|
help="To Deliver"
|
|
/>
|
|
</group>
|
|
<group name="rma_supplier_quantities">
|
|
<filter
|
|
name="to_send_to_supplier"
|
|
domain="[('state','!=', 'done'),('qty_to_supplier_rma','>',0.0)]"
|
|
help="To Send to Supplier RMA"
|
|
/>
|
|
</group>
|
|
<group expand="0" string="Group By">
|
|
<filter
|
|
name="status"
|
|
string="State"
|
|
domain="[]"
|
|
context="{'group_by':'state'}"
|
|
/>
|
|
<filter
|
|
name="partner"
|
|
string="Partner"
|
|
domain="[]"
|
|
context="{'group_by':'partner_id'}"
|
|
/>
|
|
<filter
|
|
name="operation"
|
|
string="Operation"
|
|
domain="[]"
|
|
context="{'group_by':'operation_id'}"
|
|
/>
|
|
<filter
|
|
name="product"
|
|
string="Product"
|
|
domain="[]"
|
|
context="{'group_by':'product_id'}"
|
|
/>
|
|
<filter
|
|
name="to_receive"
|
|
string="To Receive"
|
|
domain="[('qty_to_receive', '>', 0)]"
|
|
context="{'group_by':'partner_id'}"
|
|
/>
|
|
<filter
|
|
name="to_deliver"
|
|
string="To Deliver"
|
|
domain="[('qty_to_deliver', '>', 0)]"
|
|
context="{'group_by':'partner_id'}"
|
|
/>
|
|
</group>
|
|
</search>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_rma_customer_lines" model="ir.actions.act_window">
|
|
<field name="name">Customer RMA</field>
|
|
<field name="res_model">rma.order.line</field>
|
|
<field name="domain">[('type','=', 'customer')]</field>
|
|
<field name="context">{"search_default_assigned_to":uid}</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="view_id" ref="view_rma_line_tree" />
|
|
</record>
|
|
|
|
<record id="action_rma_supplier_lines" model="ir.actions.act_window">
|
|
<field name="name">Supplier RMA</field>
|
|
<field name="res_model">rma.order.line</field>
|
|
<field name="domain">[('type','=', 'supplier')]</field>
|
|
<field
|
|
name="context"
|
|
>{"search_default_assigned_to":uid, "supplier":1}</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="view_id" ref="view_rma_line_supplier_tree" />
|
|
</record>
|
|
|
|
<record id="action_rma_line_supplier_tree" model="ir.actions.act_window.view">
|
|
<field eval="3" name="sequence" />
|
|
<field name="view_mode">tree</field>
|
|
<field name="act_window_id" ref="action_rma_supplier_lines" />
|
|
</record>
|
|
|
|
<record id="action_rma_line_supplier_form" model="ir.actions.act_window.view">
|
|
<field eval="4" name="sequence" />
|
|
<field name="view_mode">form</field>
|
|
<field name="view_id" ref="view_rma_line_supplier_form" />
|
|
<field name="act_window_id" ref="action_rma_supplier_lines" />
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|