[IMP] inmprovement in sale for Logistics and in sale/stock.py

bzr revid: aag@tinyerp.co.in-20101122130829-y2vwtrtndgy1s4ne
This commit is contained in:
aag (OpenERP) 2010-11-22 18:38:29 +05:30
parent 4c9a0c185a
commit 864423b1f4
2 changed files with 2 additions and 2 deletions

View File

@ -1512,7 +1512,7 @@ msgstr "Verkäufe je Verkäufer"
#. module: sale
#: view:sale.order:0
msgid "Logistic"
msgid "Logistics"
msgstr "Logistik"
#. module: sale

View File

@ -70,7 +70,7 @@ class stock_picking(osv.osv):
def _get_price_unit_invoice(self, cursor, user, move_line, type):
if move_line.sale_line_id and move_line.sale_line_id.product_id.id == move_line.product_id.id:
from_uom_id = move_line.product_id.uom_id.id
to_uom_id = move_line.product_id.uos_id.id
to_uom_id = move_line.product_id.uos_id and move_line.product_id.uos_id.id or False
price = move_line.sale_line_id.price_unit
coeff = move_line.product_id.uos_coeff
if from_uom_id != to_uom_id and coeff != 0: