19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:07 +01:00
parent ba20ce7443
commit 768b70e05e
2357 changed files with 1057103 additions and 712486 deletions

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_location_form_inherit" model="ir.ui.view">
<field name="name">stock.location.form.inherit</field>
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='additional_info']" position="after">
<div>
<group string="Accounting Information" invisible="usage not in ('inventory', 'production')">
<label for="valuation_account_id" string="Cost of Production" invisible="usage != 'production'"/>
<label for="valuation_account_id" string="Loss Account" invisible="usage != 'inventory'"/>
<field name="valuation_account_id" nolabel="1" options="{'no_create': True}"/>
</group>
</div>
</xpath>
</field>
</record>
</data>
</odoo>