Merge lp:~openerp-dev/openobject-addons/trunk-bug-1011541-mma into lp:openobject-addons

Proposed by Mayur Maheshwari(OpenERP)
Status: Merged
Merged at revision: 7365
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-1011541-mma
Merge into: lp:openobject-addons
Diff against target: 25 lines (+2/-2)
2 files modified
stock/product.py (+1/-1)
stock/product_view.xml (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-1011541-mma
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+109635@code.launchpad.net

Description of the change

Hello Sir,

     product : I Have fix the issue of counting of Deliveries in kanban view and improve a action string of Deliver product

Thanks
Mayur

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'stock/product.py'
--- stock/product.py 2012-05-22 14:54:33 +0000
+++ stock/product.py 2012-06-21 11:15:26 +0000
@@ -44,7 +44,7 @@
44 ], ['product_id'], ['product_id'])44 ], ['product_id'], ['product_id'])
45 for move in moves:45 for move in moves:
46 product_id = move['product_id'][0]46 product_id = move['product_id'][0]
47 res[product_id]['reception_count'] = move['product_id_count']47 res[product_id]['delivery_count'] = move['product_id_count']
48 return res48 return res
4949
50 def get_product_accounts(self, cr, uid, product_id, context=None):50 def get_product_accounts(self, cr, uid, product_id, context=None):
5151
=== modified file 'stock/product_view.xml'
--- stock/product_view.xml 2012-06-19 08:56:18 +0000
+++ stock/product_view.xml 2012-06-21 11:15:26 +0000
@@ -138,7 +138,7 @@
138 </record>138 </record>
139 139
140 <record id="action_deliver_move" model="ir.actions.act_window">140 <record id="action_deliver_move" model="ir.actions.act_window">
141 <field name="name">Receive Products</field>141 <field name="name">Deliver Products</field>
142 <field name="res_model">stock.move</field>142 <field name="res_model">stock.move</field>
143 <field name="type">ir.actions.act_window</field>143 <field name="type">ir.actions.act_window</field>
144 <field name="view_type">form</field>144 <field name="view_type">form</field>

Subscribers

People subscribed via source and target branches

to all changes: