ecotransac-shared-js 1.2.39 → 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 -0
- package/dist/index.mjs +14 -0
- 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",
|
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",
|