Using this query, we get partner details who have a test today. The customer name is present in another table res_partner: I have tried following code: But I got an error ERROR: column rs.id does not exist LINE 1: …t join (select partner_id from parking_test)pl on rs.id=pl.i… res_partner table: parking_test table As we are checking current date I want to
Tag: odoo-12
Using an _sql_constraints in Odoo 12 date
Hi I created the following model: class PrescriptionsPrescriptions(models.Model): _name = ‘prescriptions.prescriptions’ name = fields.Many2one(‘res.users’,’Name’, default=lambda self: self.env….