Scheduler action is updated , but my function is not executing and I don't know why , Here is my function :
def create_revenue_logs(self, cr, uid,context=None):
customer_pool = self.pool.get('res.partner')
data = {
'name': 'xx',
}
customer_pool.create(cr,uid,data,context=context)
return True
Your help is really appreciated
It is solved