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>
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
RegistrarsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
1
jul 25
|
614 | ||
Internal Team Grouping for Calendar
Resuelto
|
|
2
jun 25
|
996 | |
|
1
may 25
|
2546 | ||
|
1
abr 25
|
3699 | ||
|
3
ago 24
|
2771 |
got the same problem. did you resolve this one??