Skip to Content
Menu
This question has been flagged
5 Replies
8187 Views

Hi everyone, 

I am new here and working on the task which I am adding customer data to Odoo res.partner model through python using API. 

My question is: Is there any ways or tip that I can use to get the last update date, max_id or something like this? 

My data will be continuously added and I do not want duplicate records. So, I want to have one parameter which I can use to get the last added customer and start to create/update customers from that time on.

So if the same customer is existing: update the data

If not: create a new one


Avatar
Discard

Odoo have create_date, write_date

create_date --> while create the record the date time will update

write_date --> While any change happened it will update that date time

Are you using xmlrpc call or Rest API?

Author

@subbarao I am using external API

Author Best Answer

@shalin wilson what is the difference between last_updated and write_date?

Avatar
Discard
Best Answer

__last_update field is there in res.partner and its automatically  updates 
is it enough for you to check the DateTime??

Avatar
Discard
Best Answer

If Odoo create record with external API with success, returns its ID. See External API documentation.

Avatar
Discard
Related Posts Replies Views Activity
0
Oct 20
2697
3
Jul 23
1053
1
Nov 20
9289
2
Jun 18
2727
0
May 15
2974