i need to add function to insurance_expire_date field if this field is less by 5 days than the current date then send massage to hr manager group how i can do that and what the syntax please i need a quick help.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
2
الردود
4649
أدوات العرض
Hi,
You can create onchange method for expire_date field. For e.g. In your xml file:
<field name="expire_date" on_change="onchange_expire_date(expire_date)"/>
In your py file add the function below:
def onchange_expire_date((self, cr, uid, ids, expire_date, context=None):
datetime_today = datetime.now()
if (datetime_today - expire_date).days <= 5:
# Send message
else:
# else part
Hope this may help you.
Create an Automated Action which calls the Server Action 5 days before a insurance_exp ire_date and send Email to hr manager group using Email Template
Refer the below link:-
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل