How can I create purchase orders of backdate
This question has been flagged
3
Replies
1957
Views
How can I create purchase orders of backdate
Hi,
By default odoo is not supporting back dates for inventory operations.
Thanks
Actually I am using odoo online but I have created a new field named x_old_date_order but it doesn't show in po form.
first add the field name any name you want 
add automation action
state =sales order 
3 add this code in python
if record.x_studio_old_order_date_1:
record.write({
'date_order':record.x_studio_old_order_date_1
})
for inventory same step
for inventory same add field 
for invensible condition
state == "draft"
for require 
for read only 
after than add automation action 
and add this code for python
if record.scheduled_date:
record.write({
'date_done':record.scheduled_date
})
💥
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
|
3
Apr 26
|
1222 | ||
|
Bundle POs per vendor
Solved
|
|
2
Apr 26
|
950 | |
|
|
2
Mar 26
|
1072 | ||
|
|
2
May 25
|
4034 | ||
|
|
3
Dec 24
|
10800 |
Okay thanks, but then how do I keep a track of my past purchases