[MERGE]: mrp: Merge with improvement of removing function to change product price by aag

bzr revid: rpa@tinyerp.com-20111014111350-9xs3o9b8sf16i3h7
This commit is contained in:
Rucha (Open ERP) 2011-10-14 16:43:50 +05:30
commit b6037ec0a5
3 changed files with 4 additions and 38 deletions

View File

@ -75,7 +75,7 @@ Dashboard provided by this module:
'wizard/change_production_qty_view.xml',
'wizard/mrp_price_view.xml',
'wizard/mrp_workcenter_load_view.xml',
'wizard/mrp_change_standard_price_view.xml',
# 'wizard/mrp_change_standard_price_view.xml',
'mrp_view.xml',
'mrp_report.xml',
'company_view.xml',

View File

@ -53,42 +53,8 @@ class product_product(osv.osv):
_columns = {
"bom_ids": fields.one2many('mrp.bom', 'product_id','Bill of Materials'),
}
def do_change_standard_price(self, cr, uid, ids, datas, context=None):
""" Changes the Standard Price of Product and parent products and creates an account move accordingly.
@param datas: dict. contain default datas like new_price, stock_output_account, stock_input_account, stock_journal
@param context: A standard dictionary
@return:
"""
if context is None:
context = {}
res = super(product_product, self).do_change_standard_price(cr, uid, ids, datas, context=context)
bom_obj = self.pool.get('mrp.bom')
change = context.get('change_parent_price', False)
def _compute_price(bom):
price = 0.0
if bom.bom_id and change:
if bom.bom_id.bom_lines:
for bom_line in bom.bom_id.bom_lines:
prod_price = self.read(cr, uid, bom_line.product_id.id, ['standard_price'])['standard_price']
price += bom_line.product_qty * prod_price
accounts = self.get_product_accounts(cr, uid, bom.bom_id.product_id.id, context)
datas = {
'new_price': price,
'stock_output_account': accounts['stock_account_output'],
'stock_input_account': accounts['stock_account_input'],
'stock_journal': accounts['stock_journal']
}
super(product_product, self).do_change_standard_price(cr, uid, [bom.bom_id.product_id.id], datas, context)
_compute_price(bom.bom_id)
return price
bom_ids = bom_obj.search(cr, uid, [('product_id', 'in', ids)])
for bom in bom_obj.browse(cr, uid, bom_ids, context=context):
_compute_price(bom)
# Removed do_change_standard_price for the fix of lp:747056
def copy(self, cr, uid, id, default=None, context=None):
if not default:

View File

@ -23,7 +23,7 @@ import mrp_product_produce
import mrp_price
import mrp_workcenter_load
import change_production_qty
import mrp_change_standard_price
#import mrp_change_standard_price
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: