trytondo-sale_opportunity_m.../pending_call.py
camilogs d7d5c95b29
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
chore: Se remueve código muerto luego de refactorizar
2023-08-13 20:35:11 -05:00

11 lines
361 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', required=True)