diff options
Diffstat (limited to 'addons/stock/wizard/stock_track_confirmation_views.xml')
| -rw-r--r-- | addons/stock/wizard/stock_track_confirmation_views.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/addons/stock/wizard/stock_track_confirmation_views.xml b/addons/stock/wizard/stock_track_confirmation_views.xml new file mode 100644 index 00000000..cc257a84 --- /dev/null +++ b/addons/stock/wizard/stock_track_confirmation_views.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="view_stock_track_confirmation" model="ir.ui.view"> + <field name="name">stock.track.confirmation.view.form</field> + <field name="model">stock.track.confirmation</field> + <field name="arch" type="xml"> + <form string="Lots or serial numbers were not provided to tracked products"> + <field name="inventory_id" invisible="1"/> + <p>Some products of the inventory adjustment are tracked. Are you sure you don't want to specify a serial or lot number for them?</p> + <strong>Product(s) tracked: </strong> + <field name="tracking_line_ids" readonly="1"> + <tree> + <field name="product_id"/> + <field name="tracking"/> + </tree> + </field> + <footer> + <button name="action_confirm" string="Confirm" type="object" class="btn-primary"/> + <button string="Discard" special="cancel" class="btn-secondary"/> + </footer> + </form> + </field> + </record> +</odoo> |
