feat: Se agrega campo de departamento en vista de prospecto
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Camilo Gonzalez 2023-08-06 20:01:28 -05:00
parent d71f9ce6b2
commit 98ae18336e
2 changed files with 22 additions and 8 deletions

View File

@ -1,13 +1,26 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<label name="name"/>
<field name="name"/>
<form col="6">
<group col="4">
<label name="name"/>
<field name="name"/>
<label name="city"/>
<field name="city"/>
<newline/>
<label name="department"/>
<field name="department"/>
<label name="city"/>
<field name="city"/>
</group>
<notebook colspan="6">
<page string="Contact methods">
<newline/>
<field name="contact_methods" colspan="2"/>
<newline/>
<newline/>
</page>
</notebook>
<label name="contact_methods"/>
<field name="contact_methods"/>
</form>

View File

@ -2,7 +2,8 @@
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="name"/>
<field name="name" expand="1"/>
<field name="department"/>
<field name="city"/>
<field name="contact_methods"/>
</tree>