Merge lp:~juanalfonso/openobject-addons/7.0-account-journal-form-visualization into lp:openobject-addons/7.0

Proposed by Juan A. Pérez Ruiz (Otherway)
Status: Needs review
Proposed branch: lp:~juanalfonso/openobject-addons/7.0-account-journal-form-visualization
Merge into: lp:openobject-addons/7.0
Diff against target: 39 lines (+15/-5)
2 files modified
account/account_view.xml (+1/-0)
stock/report/picking.py (+14/-5)
To merge this branch: bzr merge lp:~juanalfonso/openobject-addons/7.0-account-journal-form-visualization
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+203938@code.launchpad.net

Description of the change

A new <newline/> tag is included in the account.journal form due to that some fields not see directly without use horizontal scroll. This can lead to confusion when setting the account journals.

To post a comment you must log in.

Unmerged revisions

9799. By Juan A. Pérez Ruiz (Otherway)

Integration

9798. By Juan A. Pérez Ruiz (Otherway)

A new <newline/> tag is included in the account.journal form due to that some fields not see directly without use horizontal scroll.

9797. By Juan A. Pérez Ruiz (Otherway)

In the picking reports a for statement have been removed in order to include the reports stock.picking.list.in and stock.picking.list.out in translation template pot.

9796. By Juan A. Pérez Ruiz (Otherway)

Added missing translations in es.po for report stock.picking.list.in and stock.picking.list.out

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account/account_view.xml'
2--- account/account_view.xml 2013-09-03 07:07:07 +0000
3+++ account/account_view.xml 2014-01-30 12:36:24 +0000
4@@ -397,6 +397,7 @@
5 <label for="name" class="oe_edit_only"/>
6 <h1><field name="name"/></h1>
7 </div>
8+ <newline/>
9 <group>
10 <group>
11 <field name="code"/>
12
13=== modified file 'stock/report/picking.py'
14--- stock/report/picking.py 2013-08-23 13:12:14 +0000
15+++ stock/report/picking.py 2014-01-30 12:36:24 +0000
16@@ -35,9 +35,18 @@
17 desc = '[' + move_line.product_id.default_code + ']' + ' ' + desc
18 return desc
19
20-for suffix in ['', '.in', '.out']:
21- report_sxw.report_sxw('report.stock.picking.list' + suffix,
22- 'stock.picking' + suffix,
23- 'addons/stock/report/picking.rml',
24- parser=picking)
25+report_sxw.report_sxw('report.stock.picking.list',
26+ 'stock.picking',
27+ 'addons/stock/report/picking.rml',
28+ parser=picking)
29+
30+report_sxw.report_sxw('report.stock.picking.list.in',
31+ 'stock.picking.in',
32+ 'addons/stock/report/picking.rml',
33+ parser=picking)
34+
35+report_sxw.report_sxw('report.stock.picking.list.out',
36+ 'stock.picking.out',
37+ 'addons/stock/report/picking.rml',
38+ parser=picking)
39 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: