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

I can't find the oldest feature to create an inventory with all products (his fproducts with quantity and without » zero quantity).

This feature seems to have disappeared.

How do you launch an inventory process for a company that is just starting up with Odoo and need to count all its products ?


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

Hello Bruno,

if you have not quant record in table stock_quant for a product (in fact if you have no quantity), you will have no inventory line created, see the method get_inventory_lines and the request done in database on table stock_quant, which return nothing for the case of your client (this method should be override to add all products which are not in stock quant table;) )

@+


def _get_inventory_lines(self, cr, uid, inventory, context=None):

     ...........

     cr.execute('''

     SELECT product_id, sum(qty) as product_qty, location_id, lot_id as prod_lot_id, package_id, owner_id as partner_id

FROM stock_quant WHERE''' + domain + '''

GROUP BY product_id, location_id, lot_id, package_id, partner_id

''', args)

     vals = []

     for product_line in cr.dictfetchall():

         #replace the None the dictionary by False, because falsy values are tested later on

         for key, value in product_line.items():

             if not value:

                 product_line[key] = False

         product_line['inventory_id'] = inventory.id

         product_line['theoretical_qty'] = product_line['product_qty']

         if product_line['product_id']:

             product = product_obj.browse(cr, uid, product_line['product_id'], context=context)

             product_line['product_uom_id'] = product.uom_id.id

         vals.append(product_line)

     return vals

Ảnh đại diện
Huỷ bỏ
Tác giả

Thx Cyril, I loved the oldest feature with this choice to create inventory list regardless of the theorical stock... Have to re-develop a discontinued feature :(

Tác giả Câu trả lời hay nhất

Thanks zbik for your help.

Maybe, i requested without enough informations : i know the way you remind in the application.

Exactly, i want to launch an inventory for all products (with or without theorical quantity). If you try on runbot, you'll get back only product where the theorical quantity is different of zero...
A company have no stock yet in the new application...


Ảnh đại diện
Huỷ bỏ

On Inventory Adjustments list, if stock is zero, create a new line with correct location and with real quantity value.

Tác giả

I understood zbik... In several cases, you can't ask to create each line ;-)

Câu trả lời hay nhất

i have same problem i need the oldest feature create Inventory Adjustments with all products if you resolved the problem please let me know

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

Menu -> Warehouse -> Inventory Control/Inventory Adjustments  -> Create -> All products

You check user right  ->  Manage Inventory Valuation and Costing Methods

Ả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 24
13061
1
thg 11 24
22544
3
thg 1 18
14921
1
thg 3 15
4227
0
thg 2 20
3639