ecotransac-shared-js 1.2.38 → 1.2.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +14 -6
- package/dist/index.mjs +14 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1521,6 +1521,20 @@ var mandateFormFields = [
|
|
|
1521
1521
|
tooltip: "Si vous connaissez le prix FAI que vous souhaitez obtenir, divisez ce prix par 1,05 (pour 5%) pour obtenir le prix net vendeur. Exemple : 100 000\u20AC FAI = 95 238\u20AC net vendeur (100 000 / 1,05)"
|
|
1522
1522
|
}
|
|
1523
1523
|
},
|
|
1524
|
+
{
|
|
1525
|
+
name: "feePaidBy",
|
|
1526
|
+
fieldType: "select",
|
|
1527
|
+
label: "Honoraires \xE0 la charge de",
|
|
1528
|
+
condition: or(
|
|
1529
|
+
not("isForProfessionalUse"),
|
|
1530
|
+
and(only("isForProfessionalUse"), only("isCommercialWallsSale"))
|
|
1531
|
+
),
|
|
1532
|
+
requiredFor: ["MANDATE_CREATION"],
|
|
1533
|
+
props: {
|
|
1534
|
+
options: MANDATE_EXCLUSIVITY,
|
|
1535
|
+
tooltip: "Si les honoraires sont \xE0 la charge de l'acqu\xE9reur, le prix FAI correspond au prix net vendeur. Si les honoraires sont \xE0 la charge du vendeur, le prix FAI correspond au prix net vendeur + les honoraires agence."
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1524
1538
|
{
|
|
1525
1539
|
name: "agencyFeePercentage",
|
|
1526
1540
|
fieldType: "integer",
|
|
@@ -1852,12 +1866,6 @@ var contactFormFields = [
|
|
|
1852
1866
|
fieldType: "date",
|
|
1853
1867
|
label: "Date d'expiration",
|
|
1854
1868
|
requiredFor: []
|
|
1855
|
-
},
|
|
1856
|
-
{
|
|
1857
|
-
name: "rcpInsuranceExpirationDate",
|
|
1858
|
-
fieldType: "date",
|
|
1859
|
-
label: "Date d'expiration de l'assurance RCP en cours",
|
|
1860
|
-
requiredFor: []
|
|
1861
1869
|
}
|
|
1862
1870
|
];
|
|
1863
1871
|
|
package/dist/index.mjs
CHANGED
|
@@ -1426,6 +1426,20 @@ var mandateFormFields = [
|
|
|
1426
1426
|
tooltip: "Si vous connaissez le prix FAI que vous souhaitez obtenir, divisez ce prix par 1,05 (pour 5%) pour obtenir le prix net vendeur. Exemple : 100 000\u20AC FAI = 95 238\u20AC net vendeur (100 000 / 1,05)"
|
|
1427
1427
|
}
|
|
1428
1428
|
},
|
|
1429
|
+
{
|
|
1430
|
+
name: "feePaidBy",
|
|
1431
|
+
fieldType: "select",
|
|
1432
|
+
label: "Honoraires \xE0 la charge de",
|
|
1433
|
+
condition: or(
|
|
1434
|
+
not("isForProfessionalUse"),
|
|
1435
|
+
and(only("isForProfessionalUse"), only("isCommercialWallsSale"))
|
|
1436
|
+
),
|
|
1437
|
+
requiredFor: ["MANDATE_CREATION"],
|
|
1438
|
+
props: {
|
|
1439
|
+
options: MANDATE_EXCLUSIVITY,
|
|
1440
|
+
tooltip: "Si les honoraires sont \xE0 la charge de l'acqu\xE9reur, le prix FAI correspond au prix net vendeur. Si les honoraires sont \xE0 la charge du vendeur, le prix FAI correspond au prix net vendeur + les honoraires agence."
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1429
1443
|
{
|
|
1430
1444
|
name: "agencyFeePercentage",
|
|
1431
1445
|
fieldType: "integer",
|
|
@@ -1757,12 +1771,6 @@ var contactFormFields = [
|
|
|
1757
1771
|
fieldType: "date",
|
|
1758
1772
|
label: "Date d'expiration",
|
|
1759
1773
|
requiredFor: []
|
|
1760
|
-
},
|
|
1761
|
-
{
|
|
1762
|
-
name: "rcpInsuranceExpirationDate",
|
|
1763
|
-
fieldType: "date",
|
|
1764
|
-
label: "Date d'expiration de l'assurance RCP en cours",
|
|
1765
|
-
requiredFor: []
|
|
1766
1774
|
}
|
|
1767
1775
|
];
|
|
1768
1776
|
|