تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
5211 أدوات العرض

I would like to put a report on my dashboard of all the employee contracts that are ending in the next 60 days. How can I enter a formula or a trigger or something to update the report each day?

I wrote an SQL for it in pgAdmin, but I'm unsure how to get OpenERP to run the query and add it to the dashboard.

الصورة الرمزية
إهمال
أفضل إجابة

You should refer to CRM dashboard in crm module to know how to create your reporting data using a SQL request in a custom module.

Then you will be able to add a domain like this in your XML file:

domain="[('<date_field>','&lt;=', ((context_today()+datetime.timedelta(days=60)).strftime('%%Y-%%m-%%d')))]"

Or you can create a filter like this in your list view to try to create the one you will add to your dashboard.

<filter
  string="Contracts ending in next 60 days"
  domain="[('<date_field>','&lt;=', ((context_today()+datetime.timedelta(days=60)).strftime('%%Y-%%m-%%d')))]"/>
الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
يونيو 15
4161
1
فبراير 25
1413
2
مايو 25
1655
1
يوليو 25
316
3
ديسمبر 24
5299