Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
5510 มุมมอง

Good day everyone, 

We have a set of special products for which their inventory is handled on a legacy app and we need to have odoo in sync with that. Is there any kinda sample code of how to update the quantity on hand of a product from within a runing source code.


Thanks in advance.

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

thanks for reply Samir,  I found this sample code and adapted in my module , it updates the on hand quantity properly but left the stock records like something still pending.

here the code

[CODE UPDATED!] now works fine

warehouse = self.env['stock.warehouse'].search([('code', '=', 'T006')],limit=1)



new_quantity = 742

for product in products:

self.env['stock.quant'].with_context(inventory_mode=True).create({

'product_id': product.id,

'inventory_quantity': new_quantity,

'location_id': warehouse.lot_stock_id.id,

}).action_apply_inventory()




อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

HI Sir

By using the inventory Adjustment , you can the ware location you need to update the product Quantity  

set the new count and apply it 

you can run that by batch 


อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
Replace Product Inventory Inventory แก้ไขแล้ว
1
ต.ค. 23
1550
2
พ.ค. 18
4802
0
ส.ค. 17
3521
0
มิ.ย. 23
1663
Inventory report แก้ไขแล้ว
1
ก.ย. 21
2674