Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1055)

Delta Between Two Patch Sets: product.xml

Issue 2179041: New module account_stock_anglo_saxon (Closed)
Left Patch Set: Add case if reception/delivery is not done Created 14 years, 7 months ago
Right Patch Set: Refactoring: base the code on supplier/customer instead of input/output Created 14 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « product.py ('k') | setup.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 <?xml version="1.0"?>
2 <!-- This file is part of Tryton. The COPYRIGHT file at the top level of
3 this repository contains the full copyright notices and license terms. -->
4 <tryton>
5 <data>
6
7 <record model="ir.ui.view" id="category_view_form">
8 <field name="model">product.category</field>
9 <field name="inherit" ref="product.category_view_form"/>
10 <field name="arch" type="xml">
11 <![CDATA[
12 <data>
13 <xpath
14 expr="/form/notebook/page[@id='accounting']/field[@name= 'account_stock']"
15 position="after">
16 <label name="account_cogs"/>
17 <field name="account_cogs"/>
18 </xpath>
19 </data>
20 ]]>
21 </field>
22 </record>
23
24 <record model="ir.ui.view" id="template_view_form">
25 <field name="model">product.template</field>
26 <field name="inherit" ref="product.template_view_form"/>
27 <field name="arch" type="xml">
28 <![CDATA[
29 <data>
30 <xpath
31 expr="/form/notebook/page[@id='accounting']/field[@name= 'account_stock']"
32 position="after">
33 <label name="account_cogs"/>
34 <field name="account_cogs"/>
35 </xpath>
36 </data>
37 ]]>
38 </field>
39 </record>
40
41 </data>
42 </tryton>
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b