From 3d5c3e17e096b05c037efa1792a8f6ec2e8bebd7 Mon Sep 17 00:00:00 2001 From: camilogs <camilo.gonzalez.col@gmail.com> Date: Fri, 28 Jul 2023 00:30:32 +0000 Subject: [PATCH] Se crea modelo inicial de prospecto --- prospect.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 prospect.py diff --git a/prospect.py b/prospect.py new file mode 100644 index 0000000..cf1237e --- /dev/null +++ b/prospect.py @@ -0,0 +1,9 @@ +# 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 Prospect(ModelSQL, ModelView): + 'Prospecto' + __name__ = 'call.prospect' + + name = fields.Char('Name') \ No newline at end of file