Commit fad282ac by Maria Agustina

seguridad transportista

1 parent 9b18c18f
......@@ -72,13 +72,13 @@ class trans_transportista(models.Model):
column2='trans_transportista_id',
)
# trans_pto_retiro = fields.Many2many(
# string=u'Punto de Retiro',
# comodel_name='trans.punto_retiro',
# relation='pto_retiro_transportista_rel',
# column1='trans_punto_retiro_id',
# column2='trans_transportista_id',
# )
trans_pto_retiro = fields.Many2many(
string=u'Punto de Retiro',
comodel_name='trans.punto_retiro',
relation='pto_retiro_transportista_rel',
column1='trans_punto_retiro_id',
column2='trans_transportista_id',
)
trans_posee_ayu = fields.Boolean(
string=u'Posee ayudantes de carga?',
......@@ -88,6 +88,14 @@ class trans_transportista(models.Model):
string=u'Observaciones',
help = u'Utilice este campo para agregar cualquier observacion que desee',
)
ejecutor = fields.Many2one(
string='Ejecuta',
comodel_name='res.users',
index=True,
default= lambda self: self.env.user
)
@api.one
@api.constrains('trans_cuit', 'trans_telefono')
......
......@@ -40,7 +40,7 @@
<field name="trans_tipo_ent" colspan="2" required="1"/>
<field name="trans_tipo" colspan="2" />
<field name="trans_restriccion_elem" colspan="2"/>
<!-- <field name="trans_pto_retiro" colspan="2" /> -->
<field name="trans_pto_retiro" colspan="2" />
<field name="trans_posee_ayu" colspan="2"/>
<field name="trans_observ" colspan="2"/>
</group>
......@@ -70,6 +70,7 @@
<field name="name">Transportista</field>
<field name="res_model">trans.transportista</field>
<field name="view_mode">tree,form</field>
<field name="domain">[["ejecutor","=",uid]]</field>
</record>
</data>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!