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