Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
1778 Vistas

Create a report that collects the names of inactive customers in the last 3 months and depends on payments and invoices

Avatar
Descartar
Mejor respuesta

Hi 

You can use the following query to fetch the data in order to create a custom report

date = date.today() + relativedelta(months=-3)

"""select p.name from account_move as m inner join res_partner as p on m.partner_id = p.id where p.active=False and p.write_date::date >= '%s' """ %(date)

Regards

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
0
oct 24
2144
0
ago 24
1907
0
ene 24
2360
1
nov 23
2121
0
jun 23
2494