4 Commits

Author SHA1 Message Date
zakaria.hachem
fb9c4ff74a adding stateAdministrationList into crm partner 2026-03-17 12:06:45 +01:00
zakaria.hachem
15ce055b13 Merge remote-tracking branch 'origin/ICOP-address-management' into ICOP-Mapping-fields-from-Vtiger-to-ERP-Partners 2026-03-17 12:04:46 +01:00
Kheireddine Mehdi
936c00cda4 fix(crm): prevent infinite loop when StateAdministration parent is itself 2026-03-10 09:20:00 +01:00
Kheireddine Mehdi
55e9f4455c feat: add StateAdministration entity and extend Address with state relation
- Create StateAdministration entity with hierarchical parent relation
- Add typeSelect selection (Region, Sub Region, Wilaya, Commune)
- Implement computed fullName for hierarchical display
- Extend Address entity with many-to-one relation to StateAdministration
2026-03-03 12:03:54 +01:00
3 changed files with 60 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
<?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="Address" lang="java">
<many-to-one name="state" ref="com.axelor.apps.crm.db.StateAdministration" title="State" />
</entity>
</domain-models>

View File

@@ -16,7 +16,7 @@
<integer name="rating" title="Rating" selection="crm.partner.potentiality.selection" /> <integer name="rating" title="Rating" selection="crm.partner.potentiality.selection" />
<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"/>
<track> <track>
<field name="accountNo"/> <field name="accountNo"/>

View File

@@ -0,0 +1,46 @@
<?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="crm" package="com.axelor.apps.crm.db"/>
<entity name="StateAdministration" lang="java">
<string name="name" title="Name" required="true"/>
<string name="typeSelect" title="Type" selection="state.administration.type.select" required="true"/>
<many-to-one name="parent" ref="com.axelor.apps.crm.db.StateAdministration"/>
<string name="fullName" namecolumn="true" title="Full name">
<![CDATA[
String fullName = "";
com.axelor.apps.crm.db.StateAdministration current = this;
while (current != null && current.getName() != null) {
if (current == current.getParent()) {
break;
}
if (fullName.isEmpty()) {
fullName = current.getName();
} else {
fullName = current.getName() + " - " + fullName;
}
current = current.getParent();
}
return fullName;
]]>
</string>
</entity>
</domain-models>