~openerp-spain-team/openerp-spain/6.0-git

« back to all changes in this revision

Viewing changes to extra_addons/stock_past/stock_view.xml

  • Committer: Borja L.S.
  • Date: 2010-10-18 10:04:25 UTC
  • Revision ID: git-v1:271c47a993616dbba60585d48b8b98d603199d93
[REF] *: Refactorización para portar a 6.0 - Paso 1.

- Se han renombrado los módulos para usar la nomenclatura propuesta
  por OpenERP: l10n_es para el módulo base de localización (plan de 
  cuentas), l10n_es_* para el resto de módulos.

- Se eliminan los módulos extra_addons/* que deberían moverse a 
  los extra-addons genéricos (no son específicos de España).

- Se renombran los __terp__.py por __openerp__.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
2
 
<openerp>
3
 
<data>
4
 
    <record model="ir.ui.view" id="view_stock_past_inventory_line_form">
5
 
        <field name="name">stock.inventory.line.form</field>
6
 
        <field name="model">stock.inventory.line</field>
7
 
        <field name="inherit_id" ref="stock.view_inventory_line_form"/>
8
 
        <field name="type">form</field>
9
 
        <field name="arch" type="xml">
10
 
            <field name="product_id" position="replace">
11
 
                <field name="product_id" select="1"  on_change="on_change_product_id(location_id,product_id,parent.date,product_uom)" context="location=location_id,uom=product_uom"/>
12
 
            </field>
13
 
        </field>
14
 
    </record>
15
 
</data>
16
 
</openerp>