Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
2073 Lượt xem

I need to add Quantity field to journal items , the value of this field will be the same value of Done field of stock move , and if the journal entry created without stock move the value of Quantity field will be 1.

I created this code :

class AccountMove(models.Model):
_inherit = 'account.move.line'

qty=fields.Float(string="QTY",default=1)
Which function can i use to make the value of qty equal to Done quantity in case of Journal entry created by stock move?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,
Can you please try with the below code. 
from odoo import models, fields, api

class AccountMoveLine(models.Model):
    _inherit = 'account.move.line'

    @api.model
    def create(self, vals):
        if 'stock_move_id' in vals:
            stock_move = self.env['stock.move'].browse(vals['stock_move_id'])
            vals['qty'] = stock_move.quantity_done

        return super(AccountMoveLine, self).create(vals)

Hope it helps

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 8 25
2585
1
thg 7 25
990
2
thg 7 25
1526
1
thg 8 25
1151
0
thg 5 25
1439