Hi Everyone, Is there a module or script, so I can see the birthdays of customers on a calendar or some place else in openerp v7?
thanks in advance! Regards
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi Everyone, Is there a module or script, so I can see the birthdays of customers on a calendar or some place else in openerp v7?
thanks in advance! Regards
also look here
https://www.odoo.com/forum/help-1/question/how-to-display-the-birthday-of-a-customer-in-calendar-solved-67467
please note that this is a text field in the database and not a date field. So getting to display in a calendar will not work, neither will auto emailing etc. This will require changes to the base field.
I did this in my module and it works:
<record id="aaaa_id" model="ir.ui.view">
<field name="name">calendar_aaaa</field>
<field name="model">res.partner</field>
<field name="type">calendar</field>
<field name="arch" type="xml">
<calendar string="Calendar" date_start="birthday" color="name_of _the_customer">
<field name="name_of_the_customer"/>
</calendar>
</field>
</record>
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Jul 25
|
625 | ||
|
2
Jun 25
|
1018 | ||
|
1
May 25
|
2554 | ||
|
1
Apr 25
|
3729 | ||
|
3
Aug 24
|
2786 |
got the same problem. did you resolve this one??