Skip to Content
Menu
This question has been flagged
3 Replies
1371 Views

Hi everyone,

I login from the particular user and created quotation in odoo9.0 sale but in logs its showing sale order created before clicking confirm order ..How to handle this issue???

Kindly post the answers

Thank u

Avatar
Discard

Hi krupesh,

Does isnt show quotation created once the quotation is saved after filling all the data.

Thanku in advance

Best Answer

Just to get it clear Quotation and Sale Order are the same entity but in different state

state = fields.Selection([
('draft', 'Quotation'),
('sent', 'Quotation Sent'),
('sale', 'Sales Order'),
('done', 'Locked'),
('cancel', 'Cancelled'),
Avatar
Discard
Best Answer

Hi,

It will always create sale order because to identify Quotation sale order have stage Quotation once Quotation will confirm it will become sale order and stage change to Sale Order.

You can see stage in header of form view.

Avatar
Discard