Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
2028 Widoki

Hi there, 


I'm using the Appointments App for booking services (trainings on communication, leadership) with my customers. Is there any way to link sales order (or items on that order) to the appointment? 


I know this is possible with the planning app, so wondering if it's possible with the Appointment app too...


Thanks!

Awatar
Odrzuć

Perhaps, this third-party app - https://apps.odoo.com/apps/modules/17.0/business_appointment - might be an alternative to reach your goals.

Najlepsza odpowiedź

Hi,

While the Appointments app doesn’t natively support linking sales orders or items to appointments, you can achieve this by adding a custom many2one field to the appointment form. This field can link directly to the relevant sales order or sales order line.

class Appointment(models.Model): 

       _inherit = 'appointment.appointment' 

       sale_order_id = fields.Many2one('sale.order', string="Sales Order")

This setup would allow you to easily associate an appointment with a specific order or item, similar to how it works in the Planning app.


Hope it helps

Awatar
Odrzuć
Najlepsza odpowiedź

Is there any update on this? I would like to know how to see if an appointment has been paid for from the online booking (whilst in the calendar) 

Awatar
Odrzuć
Najlepsza odpowiedź

Following

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
3
lut 25
2076
1
lut 25
1489
1
gru 24
2160
2
mar 24
2505
2
mar 24
3013