[IMP] Make rma order view cleaner for user

Hide button and fields depending on the policy chosen on the rma line
This commit is contained in:
Florian da Costa
2022-06-24 10:56:42 +02:00
parent a8ff0188aa
commit a248d56c8d
5 changed files with 36 additions and 15 deletions

View File

@@ -217,12 +217,18 @@
<notebook>
<page name="quantities" string="Quantities">
<group name="quantities" col="4" string="Quantities">
<group name="receive">
<group
name="receive"
attrs="{'invisible': [('receipt_policy', '=', 'no')]}"
>
<field name="qty_to_receive" />
<field name="qty_incoming" />
<field name="qty_received" />
</group>
<group name="deliver">
<group
name="deliver"
attrs="{'invisible': [('delivery_policy', '=', 'no')]}"
>
<field name="qty_to_deliver" />
<field name="qty_outgoing" />
<field name="qty_delivered" />
@@ -278,7 +284,11 @@
/>
</group>
</page>
<page name="stock" string="Stock Moves">
<page
name="stock"
string="Stock Moves"
attrs="{'invisible': [('move_ids', '=', [])]}"
>
<field name="move_ids" nolabel="1" readonly="1" />
</page>
<page name="other" string="Other Info">

View File

@@ -108,26 +108,26 @@
name="%(action_rma_picking_in)d"
string="Create Incoming Shipment"
class="oe_highlight"
attrs="{'invisible':['|', ('qty_to_receive', '=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_receive', '=', 0), ('state', '!=', 'approved'), ('receipt_policy', '=', 'no')]}"
type="action"
/>
<button
name="%(action_rma_picking_in)d"
string="Create Incoming Shipment"
attrs="{'invisible':['|', ('qty_to_receive', '!=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_receive', '!=', 0), ('state', '!=', 'approved'), ('receipt_policy', '=', 'no')]}"
type="action"
/>
<button
name="%(action_rma_picking_out)d"
string="Create Delivery"
class="oe_highlight"
attrs="{'invisible':['|', ('qty_to_deliver', '=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_deliver', '=', 0), ('state', '!=', 'approved'), ('delivery_policy', '=', 'no')]}"
type="action"
/>
<button
name="%(action_rma_picking_out)d"
string="Create Delivery"
attrs="{'invisible':['|', ('qty_to_deliver', '!=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_deliver', '!=', 0), ('state', '!=', 'approved'), ('delivery_policy', '=', 'no')]}"
type="action"
/>
</header>

View File

@@ -58,7 +58,11 @@
<field name="refund_policy" />
</field>
<page name="stock" position="after">
<page name="refunds" string="Refunds">
<page
name="refunds"
string="Refunds"
attrs="{'invisible': [('refund_line_ids', '=', [])]}"
>
<field name="refund_line_ids" nolabel="1" />
</page>
</page>
@@ -69,7 +73,10 @@
/>
</field>
<group name="supplier_rma" position="after">
<group name="refund">
<group
name="refund"
attrs="{'invisible': [('refund_policy', '=', 'no')]}"
>
<field name="qty_to_refund" />
<field name="qty_refunded" />
</group>

View File

@@ -59,13 +59,13 @@
name="%(action_rma_refund)d"
string="Create Refund"
class="oe_highlight"
attrs="{'invisible':['|', ('qty_to_refund', '=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_refund', '=', 0), ('state', '!=', 'approved'), ('refund_policy', '=', 'no')]}"
type="action"
/>
<button
name="%(action_rma_refund)d"
string="Create Refund"
attrs="{'invisible':['|', ('qty_to_refund', '!=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_refund', '!=', 0), ('state', '!=', 'approved'), ('refund_policy', '=', 'no')]}"
type="action"
/>
</xpath>

View File

@@ -30,7 +30,7 @@
/>
</group>
<group name="quantities" position="inside">
<group>
<group attrs="{'invisible': [('sale_policy', '=', 'no')]}">
<field name="qty_to_sell" />
<field name="qty_sold" />
</group>
@@ -45,7 +45,11 @@
/>
</field>
<notebook position="inside">
<page name="sale" string="Sale Lines">
<page
name="sale"
string="Sale Lines"
attrs="{'invisible': [('sale_line_ids', '=', [])]}"
>
<field name="sale_line_ids" nolabel="1" />
</page>
</notebook>
@@ -62,13 +66,13 @@
name="%(action_rma_order_line_make_sale_order)d"
string="Create Sales Quotation"
class="oe_highlight"
attrs="{'invisible':['|', ('qty_to_sell', '=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_sell', '=', 0), ('state', '!=', 'approved'), ('sale_policy', '=', 'no')]}"
type="action"
/>
<button
name="%(action_rma_order_line_make_sale_order)d"
string="Create Sales Quotation"
attrs="{'invisible':['|', ('qty_to_sell', '!=', 0), ('state', '!=', 'approved')]}"
attrs="{'invisible':['|', '|', ('qty_to_sell', '!=', 0), ('state', '!=', 'approved'), ('sale_policy', '=', 'no')]}"
type="action"
/>
</header>