I've been using a manual system to handle my restaurant and now i want to import all that data into Odoo POS. Is there a way to select the Order date when creating them?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
1
Reply
5845
Views
Dear Andres,
I think you can use create_date field.
That field by default in odoo framework so you can access that field
I think you should first create that field .py file
Like
'create_date': fields.datetime('Order Date')
and after use in .XML file
Like
<field name="create_date" />
Hope this useful for you.
Thanks & Regards
Ankit H Gandhi
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
मई 25
|
3021 | ||
|
1
जून 23
|
2092 | ||
|
0
अग॰ 16
|
3209 | ||
|
0
अप्रैल 24
|
1446 | ||
|
2
मार्च 24
|
3423 |
@ankit gandhi, just to be clear, we're talking about creating a custom model that overrides the create_date field to make it editable??