This question has been flagged
3 Replies
2890 Views

Hi,


I am importing one sales order at a time into Odoo using a CSV file.  The CSV files contains one order with two order lines.  The issue I have is the sequence for sales order number increments by three.  Is there a way to fix this?


My CSV structure for the import of a single sales order of multiple order lines looks like this: -

project_id/id | partner_id/id | client_order_ref | date_order | order_line/product_id/id | order_line/product_uom_qty | order_line/price_unit | order_line/tax_id/id | pricelist_id/id

With the exception of non-sequential numbering, it works.


Cheers!

km

Avatar
Discard

There must be some fields, by which you can identify in CSV file, that these order lines belongs to same Sales Order.

Do you have any column in csv file, whose value is unique per Sales Order?

Author

Thanks for your feedback, Asmita. I have updated the original question with the CSV structure I am using.

Best Answer

With your revised Question, and CSV format you shared,

I consider that, client_order_ref column in csv is unique, per Sales Order.

If my consideration is correct,

Then, whenever you are importing this CSV file, create method gets called ; And you must be mapping client_order_ref column with one of the field of sale.order model, So in create method you can handle this duplication of Sales Order Record.

You can write the condition in create method, which will check if any Sales Order with mentioned client_order_ref exists or not, and if exists do not create another Sales Order, just link existing Sales Order to that Sale Order line.

Hope, this works!

Thank you

Avatar
Discard
Author

Thanks for sharing your thoughts Asmita. If I understand you correctly, Odoo is behaving as designed, albeit slightly nonintuitively, and the only way to fix this would be to change it programatically.

KM

yes, we have to follow the framework in Odoo. So, this can be only fixed at coding level.

Author

Thanks Asmita. You've been a great help.