trytondo-sale_opportunity_m.../pending_call.py
camilogs 2bcaad6087
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Se crea modelo pending_call y se asignan sus relaciones
2023-08-07 12:43:44 -05:00

12 lines
424 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import ModelSQL, ModelView, fields
class PendingCall(ModelSQL, ModelView):
'Llamada pendiente a un prospecto'
__name__ = "sale.pending_call"
date = fields.Date('Date')
prospect_trace = fields.Many2One('sale.prospect_trace', 'Prospect trace')