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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
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
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
2
aug. 25
|
2345 | ||
|
1
jul. 25
|
862 | ||
|
2
jul. 25
|
1466 | ||
|
1
aug. 25
|
1150 | ||
|
0
mei 25
|
1322 |