diff --git a/app/Views/policyRegisterModel.php b/app/Views/policyRegisterModel.php
index 1e12dbbe..9cfadf3c 100644
--- a/app/Views/policyRegisterModel.php
+++ b/app/Views/policyRegisterModel.php
@@ -1144,15 +1144,21 @@
function registerPolicyData() {
var policyType;
+ var policyAcronym;
- if (totalSI < 50000000) {
+ if (totalSI <= 50000000) {
policyType = "Bharat Sookshma Udyam Suraksha (BSUS)"
- } else if (totalSI > 50000000 && totalSI < 500000000) {
+ policyAcronym = "bsu"
+ } else if (totalSI > 50000000 && totalSI <= 500000000) {
policyType = "Bharat Laghu Udyam Suraksha (BLUS)"
+ policyAcronym = "blu"
} else if (totalSI > 500000000) {
policyType = "Standard Fire and Special Perils (SFSP)";
+ policyAcronym = "sfsp"
}
+ modifyExcessTable(policyAcronym);
+
// Build the initial JSON object with productSelection and policyDetails
var outputData = {
policyType: policyType,
diff --git a/app/Views/view_rfq_non_eb.php b/app/Views/view_rfq_non_eb.php
index 8fe7d058..977d1c82 100644
--- a/app/Views/view_rfq_non_eb.php
+++ b/app/Views/view_rfq_non_eb.php
@@ -517,6 +517,22 @@
\ No newline at end of file
+
+
+
+
+
+