تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
4646 أدوات العرض

Searched around for modules, i've found dx_sale_line_delivered which works perfect for v6.1 and v7(with minor changes)
But for v8, since the new WMS introduced, line.move_ids has been removed? Code extracted from dx_sale_line_delivered:


class sale_order_line(osv.osv):

_inherit = 'sale.order.line'

def _delivered_qty(self, cr, uid, ids, field_name, arg, context=None):

move_obj = self.pool.get('stock.move')

res = {}

for line in self.browse(cr, uid, ids, context=context):

qty = 0

for move in line.move_ids:

if move.state == 'done':

qty += move.product_qty

res[line.id] = qty

return res

 

Any advice on how to migrate this module to v8? Thanks   



الصورة الرمزية
إهمال
أفضل إجابة

See this post and proposed solution. I tested. It works

الصورة الرمزية
إهمال
الكاتب

It shows picked rate of sale.order, not sale.order.line. picked rate for whole order is merely useless for multiple lines order. Thanks anyway.

المنشورات ذات الصلة الردود أدوات العرض النشاط
0
أغسطس 23
1868
2
ديسمبر 24
21694
0
سبتمبر 24
1273
3
أغسطس 24
2552
0
فبراير 24
1714