Compare commits
1 Commits
ICOP-Mappi
...
ICOP-Mappi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18e77dc37e |
@@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
<many-to-one name="facility" title="Facility" ref="com.axelor.apps.crm.db.Facility"/>
|
<many-to-one name="facility" title="Facility" ref="com.axelor.apps.crm.db.Facility"/>
|
||||||
<many-to-many name="stateAdministrationList" title="State Administration" ref="com.axelor.apps.crm.db.StateAdministration"/>
|
<many-to-many name="stateAdministrationList" title="State Administration" ref="com.axelor.apps.crm.db.StateAdministration"/>
|
||||||
|
<one-to-many name="productList" title="Products" ref="com.axelor.apps.base.db.Product" mappedBy="fabriquant"/>
|
||||||
|
|
||||||
<track>
|
<track>
|
||||||
<field name="accountNo"/>
|
<field name="accountNo"/>
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<domain-models xmlns="http://axelor.com/xml/ns/domain-models"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||||
|
|
||||||
|
<module name="base" package="com.axelor.apps.base.db"/>
|
||||||
|
|
||||||
|
<entity name="Product" lang="java">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ICOP fields -->
|
||||||
|
<string name="dci" title="DCI"/>
|
||||||
|
<integer name="colisage" title="Colisage"/>
|
||||||
|
<boolean name="isHospitalUsed" title="Is Hospital Used"/>
|
||||||
|
<many-to-one name="fabriquant" title="Fabriquant" ref="com.axelor.apps.base.db.Partner"/>
|
||||||
|
|
||||||
|
<track>
|
||||||
|
<field name="dci"/>
|
||||||
|
<field name="colisage"/>
|
||||||
|
<field name="isHospitalUsed"/>
|
||||||
|
<field name="fabriquant"/>
|
||||||
|
</track>
|
||||||
|
</entity>
|
||||||
|
|
||||||
|
</domain-models>
|
||||||
Reference in New Issue
Block a user