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>
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
1
Jul 25
|
625 | ||
Internal Team Grouping for Calendar
Diselesaikan
|
|
2
Jun 25
|
1019 | |
|
1
Mei 25
|
2554 | ||
|
1
Apr 25
|
3730 | ||
Calendar Month View - More information on entry?
Diselesaikan
|
|
3
Agu 24
|
2787 |
got the same problem. did you resolve this one??