tango-app-api-payment-subscription 3.1.16 → 3.1.18-alpha.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-payment-subscription",
3
- "version": "3.1.16",
3
+ "version": "3.1.18-alpha.0",
4
4
  "description": "paymentSubscription",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -212,6 +212,15 @@ export async function invoiceDownload( req, res ) {
212
212
  logo: `${JSON.parse( process.env.URL ).apiDomain}/logo.png`,
213
213
  uidomain: `${JSON.parse( process.env.URL ).domain}`,
214
214
  attachAnnexure: getgroup.attachAnnexure,
215
+ virtualaccountNumber: virtualAccount.accountNumber,
216
+ virtualifsc: virtualAccount.ifsc,
217
+ billingAddressLineOne: getgroup?.addressLineOne,
218
+ billingAddressLineTwo: getgroup?.addressLineTwo,
219
+ billingCountry: getgroup?.country,
220
+ billingState: getgroup?.state,
221
+ billingCity: getgroup?.city,
222
+ billingPinCode: getgroup?.pinCode,
223
+ billingCurrency: getgroup?.currency,
215
224
  virtualaccountNumber: virtualAccount?virtualAccount?.accountNumber:'',
216
225
  virtualifsc: virtualAccount?virtualAccount?.ifsc:'',
217
226
  };
@@ -355,6 +364,7 @@ export async function invoiceDownload( req, res ) {
355
364
  );
356
365
  invoiceData.annuxureData = annuxureData;
357
366
  }
367
+
358
368
  const templateHtml = fs.readFileSync( path.resolve( path.dirname( '' ) ) + '/src/hbs/invoicePdf.hbs', 'utf8' );
359
369
  const template = Handlebars.compile( templateHtml );
360
370
  const html = template( { ...invoiceData } );
@@ -81,8 +81,8 @@
81
81
 
82
82
  .frame-53 {
83
83
  display: flex;
84
- flex-direction: column;
85
- gap: 0px;
84
+ flex-direction: row;
85
+ gap: 30px;
86
86
  align-items: flex-start;
87
87
  justify-content: flex-start;
88
88
  flex-shrink: 0;
@@ -122,7 +122,18 @@
122
122
  width: 447px;
123
123
  }
124
124
 
125
- .chennai-tamil-nadu-600006-india {
125
+ .billTo {
126
+ color: var(--gray-900, #101828);
127
+ text-align: left;
128
+ font-family: var(--text-md-regular-font-family, "Inter-Regular", sans-serif);
129
+ font-size: var(--text-md-regular-font-size, 16px);
130
+ line-height: var(--text-md-regular-line-height, 24px);
131
+ font-weight: var(--text-md-regular-font-weight, 700);
132
+ position: relative;
133
+ width: 447px;
134
+ }
135
+
136
+ .haddows_road_nungambakkam {
126
137
  color: var(--gray-900, #101828);
127
138
  text-align: left;
128
139
  font-family: var(--text-md-regular-font-family, "Inter-Regular", sans-serif);
@@ -133,7 +144,7 @@
133
144
  width: 447px;
134
145
  }
135
146
 
136
- .gstin-33-aagct-3124-r-1-z-2 {
147
+ .chennai-tamil-nadu-600006-india {
137
148
  color: var(--gray-900, #101828);
138
149
  text-align: left;
139
150
  font-family: var(--text-md-regular-font-family, "Inter-Regular", sans-serif);
@@ -144,16 +155,48 @@
144
155
  width: 447px;
145
156
  }
146
157
 
147
- .frame-2698 {
148
- display: flex;
149
- flex-direction: column;
150
- align-items: flex-end;
151
- justify-content: space-between;
152
- align-self: stretch;
153
- flex-shrink: 0;
158
+ .gstin-33-aagct-3124-r-1-z-2 {
159
+ color: var(--gray-800, #1d2939);
160
+ text-align: left;
161
+ font-family: var(--text-xl-semibold-font-family, "Inter-SemiBold", sans-serif);
162
+ font-size: var(--text-xl-semibold-font-size, 20px);
163
+ line-height: var(--text-xl-semibold-line-height, 30px);
164
+ font-weight: var(--text-xl-semibold-font-weight, 600);
165
+ position: relative;
166
+ margin-top: 20px;
167
+ }
168
+
169
+ .gstin-33-aagct-3124-r-1-z-3 {
170
+ color: var(--gray-800, #1d2939);
171
+ text-align: left;
172
+ font-family: var(--text-xl-semibold-font-family, "Inter-SemiBold", sans-serif);
173
+ font-size: var(--text-xl-semibold-font-size, 16px);
174
+ line-height: var(--text-xl-semibold-line-height, 30px);
175
+ font-weight: var(--text-xl-semibold-font-weight, 600);
176
+ position: relative;
177
+ }
178
+
179
+ .place_of_supply {
180
+ color: var(--gray-800, #1d2939);
181
+ text-align: left;
182
+ font-family: var(--text-xl-semibold-font-family, "Inter-SemiBold", sans-serif);
183
+ font-size: var(--text-xl-semibold-font-size, 16px);
184
+ line-height: var(--text-xl-semibold-line-height, 30px);
185
+ font-weight: var(--text-xl-semibold-font-weight, 600);
154
186
  position: relative;
155
187
  }
156
188
 
189
+ .frame-2698 {
190
+ display: flex;
191
+ flex-direction: column;
192
+ align-items: flex-end;
193
+ align-self: stretch;
194
+ gap: 15px;
195
+ flex-shrink: 0;
196
+ position: relative;
197
+
198
+ }
199
+
157
200
  .frame-9155 {
158
201
  display: flex;
159
202
  flex-direction: column;
@@ -616,13 +659,11 @@
616
659
  }
617
660
 
618
661
  .text2 {
619
- color: var(--gray-800, #1d2939);
620
- text-align: left;
621
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
622
- font-size: var(--text-md-medium-font-size, 14px);
623
- line-height: var(--text-md-medium-line-height, 24px);
624
- font-weight: var(--text-md-medium-font-weight, 500);
625
- position: relative;
662
+ color: var(--Gray-800, #1D2939);
663
+ font-size: 16px;
664
+ font-weight: 600;
665
+ font-family: sans-serif;
666
+ white-space: nowrap;
626
667
  }
627
668
 
628
669
  .table-cell {
@@ -667,7 +708,7 @@
667
708
  }
668
709
 
669
710
  .table-header-cell2 {
670
- background: var(--gray-200, #eaecf0);
711
+ background: #D0D5DD;
671
712
  border-style: solid;
672
713
  border-color: var(--gray-200, #eaecf0);
673
714
  border-width: 0px 0px 1px 0px;
@@ -704,7 +745,7 @@
704
745
  font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
705
746
  font-size: var(--text-md-medium-font-size, 14px);
706
747
  line-height: var(--text-md-medium-line-height, 24px);
707
- font-weight: var(--text-md-medium-font-weight, 500);
748
+ font-weight: var(--text-md-medium-font-weight, 600);
708
749
  position: relative;
709
750
  }
710
751
 
@@ -741,14 +782,11 @@
741
782
  }
742
783
 
743
784
  .text6 {
744
- color: var(--gray-800, #1d2939);
745
- text-align: center;
746
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
747
- font-size: var(--text-md-medium-font-size, 14px);
748
- line-height: var(--text-md-medium-line-height, 24px);
749
- font-weight: var(--text-md-medium-font-weight, 500);
750
- position: relative;
751
- flex: 1;
785
+ color: var(--Gray-800, #1D2939);
786
+ font-size: 16px;
787
+ font-weight: 600;
788
+ font-family: sans-serif;
789
+ white-space: nowrap;
752
790
  }
753
791
 
754
792
  .table-cell4 {
@@ -772,7 +810,7 @@
772
810
  font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
773
811
  font-size: var(--text-md-medium-font-size, 16px);
774
812
  line-height: var(--text-md-medium-line-height, 24px);
775
- font-weight: var(--text-md-medium-font-weight, 500);
813
+ font-weight: var(--text-md-medium-font-weight, 600);
776
814
  position: relative;
777
815
  align-self: stretch;
778
816
  }
@@ -813,7 +851,7 @@
813
851
  font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
814
852
  font-size: var(--text-md-medium-font-size, 16px);
815
853
  line-height: var(--text-md-medium-line-height, 24px);
816
- font-weight: var(--text-md-medium-font-weight, 500);
854
+ font-weight: var(--text-md-medium-font-weight, 600);
817
855
  position: relative;
818
856
  flex: 1;
819
857
  }
@@ -884,7 +922,7 @@
884
922
  font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
885
923
  font-size: var(--text-md-medium-font-size, 16px);
886
924
  line-height: var(--text-md-medium-line-height, 24px);
887
- font-weight: var(--text-md-medium-font-weight, 500);
925
+ font-weight: var(--text-md-medium-font-weight, 600);
888
926
  position: relative;
889
927
  width: 190px;
890
928
  }
@@ -984,6 +1022,7 @@
984
1022
  font-weight: var(--text-md-bold-font-weight, 700);
985
1023
  position: relative;
986
1024
  width: 210px;
1025
+ text-align: end;
987
1026
  }
988
1027
 
989
1028
  .frame-1277 {
@@ -1042,13 +1081,13 @@
1042
1081
  }
1043
1082
 
1044
1083
  .tango-it-solutions-india-private-limited {
1045
- color: var(--gray-800, #1d2939);
1046
- text-align: left;
1047
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1048
- font-size: var(--text-md-medium-font-size, 16px);
1049
- line-height: var(--text-md-medium-line-height, 24px);
1050
- font-weight: var(--text-md-medium-font-weight, 500);
1051
- position: relative;
1084
+ color: var(--Gray-700, #344054);
1085
+ font-family: sans-serif;
1086
+ font-size: 16px;
1087
+ font-style: normal;
1088
+ font-weight: 600;
1089
+ line-height: 24px;
1090
+
1052
1091
  }
1053
1092
 
1054
1093
  .frame-553 {
@@ -1063,8 +1102,8 @@
1063
1102
 
1064
1103
  .frame-554 {
1065
1104
  display: flex;
1066
- flex-direction: column;
1067
- gap: 0px;
1105
+ flex-direction: row;
1106
+ gap: 38px;
1068
1107
  align-items: flex-start;
1069
1108
  justify-content: flex-start;
1070
1109
  flex-shrink: 0;
@@ -1082,20 +1121,18 @@
1082
1121
  }
1083
1122
 
1084
1123
  ._50200027441433 {
1085
- color: var(--gray-800, #1d2939);
1086
- text-align: left;
1087
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1088
- font-size: var(--text-md-medium-font-size, 16px);
1089
- line-height: var(--text-md-medium-line-height, 24px);
1090
- font-weight: var(--text-md-medium-font-weight, 500);
1091
- position: relative;
1092
- width: 210px;
1124
+ color: var(--Gray-700, #344054);
1125
+ font-family: sans-serif;
1126
+ font-size: 16px;
1127
+ font-style: normal;
1128
+ font-weight: 600;
1129
+ line-height: 24px;
1093
1130
  }
1094
1131
 
1095
1132
  .frame-54 {
1096
1133
  display: flex;
1097
- flex-direction: column;
1098
- gap: 0px;
1134
+ flex-direction: row;
1135
+ gap: 79px;
1099
1136
  align-items: flex-start;
1100
1137
  justify-content: flex-start;
1101
1138
  flex-shrink: 0;
@@ -1111,22 +1148,33 @@
1111
1148
  line-height: var(--text-md-medium-line-height, 24px);
1112
1149
  font-weight: var(--text-md-medium-font-weight, 500);
1113
1150
  position: relative;
1151
+ white-space: nowrap;
1114
1152
  }
1115
1153
 
1116
1154
  .hdfc-0000269 {
1117
- color: var(--gray-800, #1d2939);
1118
- text-align: left;
1119
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1120
- font-size: var(--text-md-medium-font-size, 16px);
1121
- line-height: var(--text-md-medium-line-height, 24px);
1122
- font-weight: var(--text-md-medium-font-weight, 500);
1123
- position: relative;
1155
+ color: var(--Gray-700, #344054);
1156
+ font-family: sans-serif;
1157
+ font-size: 16px;
1158
+ font-style: normal;
1159
+ font-weight: 600;
1160
+ line-height: 24px;
1124
1161
  }
1125
1162
 
1126
1163
  .frame-532 {
1127
1164
  display: flex;
1128
- flex-direction: column;
1129
- gap: 0px;
1165
+ flex-direction: row;
1166
+ gap: 57px;
1167
+ align-items: flex-start;
1168
+ justify-content: flex-start;
1169
+ flex-shrink: 0;
1170
+ width: 138.5px;
1171
+ position: relative;
1172
+ }
1173
+
1174
+ .frame-543 {
1175
+ display: flex;
1176
+ flex-direction: row;
1177
+ gap: 68px;
1130
1178
  align-items: flex-start;
1131
1179
  justify-content: flex-start;
1132
1180
  flex-shrink: 0;
@@ -1142,16 +1190,16 @@
1142
1190
  line-height: var(--text-md-medium-line-height, 24px);
1143
1191
  font-weight: var(--text-md-medium-font-weight, 500);
1144
1192
  position: relative;
1193
+ white-space: nowrap;
1145
1194
  }
1146
1195
 
1147
1196
  .virtual-acc {
1148
- color: #000000;
1149
- text-align: left;
1150
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1151
- font-size: var(--text-md-medium-font-size, 16px);
1152
- line-height: var(--text-md-medium-line-height, 24px);
1153
- font-weight: var(--text-md-medium-font-weight, 500);
1154
- position: relative;
1197
+ color: var(--Gray-700, #344054);
1198
+ font-family: sans-serif;
1199
+ font-size: 16px;
1200
+ font-style: normal;
1201
+ font-weight: 600;
1202
+ line-height: 24px;
1155
1203
  }
1156
1204
 
1157
1205
  .frame-563 {
@@ -1172,23 +1220,22 @@
1172
1220
  line-height: var(--text-md-medium-line-height, 24px);
1173
1221
  font-weight: var(--text-md-medium-font-weight, 500);
1174
1222
  position: relative;
1223
+ white-space: nowrap;
1175
1224
  }
1176
1225
 
1177
1226
  .hdfcinbbche {
1178
- color: var(--gray-800, #1d2939);
1179
- text-align: left;
1180
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1181
- font-size: var(--text-md-medium-font-size, 16px);
1182
- line-height: var(--text-md-medium-line-height, 24px);
1183
- font-weight: var(--text-md-medium-font-weight, 500);
1184
- position: relative;
1185
- width: 210px;
1227
+ color: var(--Gray-700, #344054);
1228
+ font-family: sans-serif;
1229
+ font-size: 16px;
1230
+ font-style: normal;
1231
+ font-weight: 600;
1232
+ line-height: 24px;
1186
1233
  }
1187
1234
 
1188
1235
  .frame-542 {
1189
1236
  display: flex;
1190
- flex-direction: column;
1191
- gap: 0px;
1237
+ flex-direction: row;
1238
+ gap: 111px;
1192
1239
  align-items: flex-start;
1193
1240
  justify-content: flex-start;
1194
1241
  flex-shrink: 0;
@@ -1206,13 +1253,12 @@
1206
1253
  }
1207
1254
 
1208
1255
  .rs-puram-coimbatore {
1209
- color: var(--gray-800, #1d2939);
1210
- text-align: left;
1211
- font-family: var(--text-md-medium-font-family, "Inter-Medium", sans-serif);
1212
- font-size: var(--text-md-medium-font-size, 16px);
1213
- line-height: var(--text-md-medium-line-height, 24px);
1214
- font-weight: var(--text-md-medium-font-weight, 500);
1215
- position: relative;
1256
+ color: var(--Gray-700, #344054);
1257
+ font-family: sans-serif;
1258
+ font-size: 16px;
1259
+ font-style: normal;
1260
+ font-weight: 600;
1261
+ line-height: 24px;
1216
1262
  }
1217
1263
 
1218
1264
  .frame-9161 {
@@ -1226,14 +1272,13 @@
1226
1272
  }
1227
1273
 
1228
1274
  .authorized-signature {
1229
- color: var(--Gray-500, #667085);
1230
- font-family: var(--text-xl-semibold-font-family,
1231
- "Inter-SemiBold",
1232
- sans-serif) !important;
1275
+ color: var(--Gray-700, #344054);
1276
+ font-family: sans-serif;
1233
1277
  font-size: 16px;
1234
1278
  font-style: normal;
1235
- font-weight: 500;
1279
+ font-weight: 600;
1236
1280
  line-height: 24px;
1281
+
1237
1282
  }
1238
1283
 
1239
1284
  .div {
@@ -1301,12 +1346,15 @@
1301
1346
  </div>
1302
1347
  <div class="frame-9158">
1303
1348
  <div class="_2nd-floor-apeejay-business-centre-no-12-haddows-road-nungambakkam">
1304
- 2nd Floor, Apeejay Business Centre, No.12, Haddows Road Nungambakkam
1349
+ 2nd Floor, Apeejay Business Centre, No.12/39,
1350
+ </div>
1351
+ <div class="haddows_road_nungambakkam">
1352
+ Haddows Road, Nungambakkam
1305
1353
  </div>
1306
1354
  <div class="chennai-tamil-nadu-600006-india">
1307
1355
  Chennai Tamil Nadu 600006, India
1308
1356
  </div>
1309
- <div class="gstin-33-aagct-3124-r-1-z-2">GSTIN 33AAGCT3124R1Z2</div>
1357
+ <div class="gstin-33-aagct-3124-r-1-z-3">GSTIN 33AAGCT3124R1Z2</div>
1310
1358
  </div>
1311
1359
  </div>
1312
1360
  </div>
@@ -1329,7 +1377,7 @@
1329
1377
  <div class="frame-9156">
1330
1378
  <div class="frame-55">
1331
1379
  <div class="frame-9158" style="margin-top:10px;">
1332
- <div class="_2nd-floor-apeejay-business-centre-no-12-haddows-road-nungambakkam">
1380
+ <div class="billTo">
1333
1381
  BILL TO :</div>
1334
1382
  </div>
1335
1383
  <div class="frame-53">
@@ -1339,15 +1387,22 @@
1339
1387
  </div>
1340
1388
  <div class="frame-9158">
1341
1389
  <div class="_2nd-floor-apeejay-business-centre-no-12-haddows-road-nungambakkam">
1342
- {{companyAddress}}
1390
+ {{billingAddressLineOne}}
1391
+ </div>
1392
+ <div class="_2nd-floor-apeejay-business-centre-no-12-haddows-road-nungambakkam">
1393
+ {{billingAddressLineTwo}}
1394
+ </div>
1395
+ <div class="_2nd-floor-apeejay-business-centre-no-12-haddows-road-nungambakkam">
1396
+ {{billingCity}}, {{billingPinCode}}, {{billingState}}, {{billingCountry}}
1343
1397
  </div>
1398
+
1344
1399
  <div class="chennai-tamil-nadu-600006-india">
1345
1400
 
1346
1401
  </div>
1347
1402
  <div class="gstin-33-aagct-3124-r-1-z-2">GSTIN {{GSTNumber}}</div>
1348
1403
  </div>
1349
1404
  </div>
1350
- <div class="gstin-33-aagct-3124-r-1-z-2">
1405
+ <div class="place_of_supply">
1351
1406
  Place Of Supply: {{PlaceOfSupply}}
1352
1407
  </div>
1353
1408
  </div>
@@ -1356,7 +1411,13 @@
1356
1411
  <div class="frame-2699">
1357
1412
  <div class="frame-45" style="margin-top:70px;">
1358
1413
  <div class="balance-due">Invoice Total</div>
1359
- <div class="_1234">{{currencyType}}{{totalAmount}}</div>
1414
+ <div class="_1234">{{#eq billingCurrency 'inr'}}
1415
+
1416
+ {{/eq}}
1417
+
1418
+ {{#eq billingCurrency 'dollar'}}
1419
+ $
1420
+ {{/eq}} {{totalAmount}}</div>
1360
1421
  </div>
1361
1422
  </div>
1362
1423
  </div>
@@ -1391,13 +1452,13 @@
1391
1452
  <div class="invoice-info">
1392
1453
  <div class="card-header">
1393
1454
  <div class="content">
1394
- <div class="text">Invoice Details</div>
1455
+ <div class="text"></div>
1395
1456
  </div>
1396
1457
  </div>
1397
1458
  <div class="frame-2397">
1398
1459
  <div class="content2">
1399
1460
  <div class="column">
1400
- <div class="table-header-cell" style="background: var(--gray-200, #eaecf0);
1461
+ <div class="table-header-cell" style="background: #D0D5DD;
1401
1462
  border-style: solid;
1402
1463
  border-color: var(--gray-200, #eaecf0);
1403
1464
  border-width: 0px 0px 1px 0px;
@@ -1461,7 +1522,7 @@
1461
1522
  <div class="column2">
1462
1523
  <div class="table-header-cell2">
1463
1524
  <div class="table-header2">
1464
- <div class="text6">Stores</div>
1525
+ <div class="text6">Store Count</div>
1465
1526
  </div>
1466
1527
  </div>
1467
1528
  {{#each products}}
@@ -1473,12 +1534,20 @@
1473
1534
  <div class="column2">
1474
1535
  <div class="table-header-cell2">
1475
1536
  <div class="table-header2">
1476
- <div class="text6">Price</div>
1537
+ <div class="text6">Rate</div>
1477
1538
  </div>
1478
1539
  </div>
1479
1540
  {{#each products}}
1480
1541
  <div class="table-cell6">
1481
- <div class="text8">{{currency}} {{price}}</div>
1542
+ <div class="text8">
1543
+ {{#eq ../billingCurrency 'inr'}}
1544
+
1545
+ {{/eq}}
1546
+
1547
+ {{#eq ../billingCurrency 'dollar'}}
1548
+ $
1549
+ {{/eq}}
1550
+ {{price}}</div>
1482
1551
  </div>
1483
1552
  {{/each}}
1484
1553
 
@@ -1491,7 +1560,15 @@
1491
1560
  </div>
1492
1561
  {{#each products}}
1493
1562
  <div class="table-cell6">
1494
- <div class="text8">{{currency}} {{amount}}</div>
1563
+ <div class="text8">
1564
+ {{#eq ../billingCurrency 'inr'}}
1565
+
1566
+ {{/eq}}
1567
+
1568
+ {{#eq ../billingCurrency 'dollar'}}
1569
+ $
1570
+ {{/eq}}
1571
+ {{amount}}</div>
1495
1572
  </div>
1496
1573
  {{/each}}
1497
1574
 
@@ -1502,25 +1579,48 @@
1502
1579
  <div class="frame-2394">
1503
1580
  <div class="text9">Discount ({{discountPercentage}}%)</div>
1504
1581
  <div class="frame-9157">
1505
- <div class="text10">{{currencyType}} {{discountAmount}}</div>
1582
+ <div class="text10">{{#eq billingCurrency 'inr'}}
1583
+
1584
+ {{/eq}}
1585
+
1586
+ {{#eq billingCurrency 'dollar'}}
1587
+ $
1588
+ {{/eq}} {{discountAmount}}</div>
1506
1589
  </div>
1507
1590
  </div>
1508
1591
  {{/neq}}
1509
1592
  <div class="frame-2394">
1510
1593
  <div class="text9">Sub Total</div>
1511
1594
  <div class="frame-9157">
1512
- <div class="text10">{{currencyType}} {{amount}}</div>
1595
+ <div class="text10">{{#eq billingCurrency 'inr'}}
1596
+
1597
+ {{/eq}}
1598
+
1599
+ {{#eq billingCurrency 'dollar'}}
1600
+ $
1601
+ {{/eq}} {{amount}}</div>
1513
1602
  </div>
1514
1603
  </div>
1515
-
1604
+
1605
+ {{#eq billingCurrency 'inr'}}
1516
1606
  {{#each tax }}
1517
1607
  <div class="frame-2392">
1518
1608
  <div class="text9">{{type}} ({{value}}%)</div>
1519
1609
  <div class="frame-9157">
1520
- <div class="text10">{{currency}} {{taxAmount}}</div>
1610
+ <div class="text10">{{#eq ../billingCurrency 'inr'}}
1611
+
1612
+ {{/eq}}
1613
+
1614
+ {{#eq ../billingCurrency 'dollar'}}
1615
+ $
1616
+ {{/eq}} {{taxAmount}}</div>
1521
1617
  </div>
1522
1618
  </div>
1523
1619
  {{/each }}
1620
+ {{/eq}}
1621
+
1622
+
1623
+
1524
1624
  <!-- <div class="frame-2398">
1525
1625
  <div class="text9">CGST (9%)</div>
1526
1626
  <div class="frame-9157">
@@ -1533,14 +1633,27 @@
1533
1633
  <div class="frame-2396">
1534
1634
  <div class="text11">Total Amount</div>
1535
1635
  <div class="frame-9157">
1536
- <div class="text12">{{currencyType}} {{totalAmount}}</div>
1636
+ <div class="text12">{{#eq billingCurrency 'inr'}}
1637
+
1638
+ {{/eq}}
1639
+
1640
+ {{#eq billingCurrency 'dollar'}}
1641
+ $
1642
+ {{/eq}} {{totalAmount}}</div>
1537
1643
  </div>
1538
1644
  </div>
1539
1645
  <div class="frame-23973">
1540
1646
  <div class="text11">Total In Words</div>
1541
1647
  <div class="frame-9157">
1542
1648
  <div class="text13">
1543
- {{currencyName}} {{amountwords}} Only
1649
+ {{#eq billingCurrency 'inr'}}
1650
+ Indian Rupee
1651
+ {{/eq}}
1652
+
1653
+ {{#eq billingCurrency 'dollar'}}
1654
+ US Dollar
1655
+ {{/eq}}
1656
+ {{amountwords}} Only
1544
1657
  </div>
1545
1658
  </div>
1546
1659
  </div>
@@ -1557,29 +1670,25 @@
1557
1670
  Tango IT Solutions India Private Limited
1558
1671
  </div>
1559
1672
  </div>
1560
- <div class="frame-553">
1561
- <div class="frame-554">
1562
- <div class="account-number">Account Number</div>
1563
- <div class="_50200027441433">50200027441433</div>
1564
- </div>
1565
- <div class="frame-54">
1566
- <div class="ifsc-code">IFSC Code</div>
1567
- <div class="hdfc-0000269">HDFC0000269</div>
1568
- </div>
1569
- <div class="frame-532">
1570
- <div class="payment-type">Payment Type</div>
1571
- <div class="virtual-acc">{{paymentMethod}}</div>
1572
- </div>
1673
+ <div class="frame-554">
1674
+ <div class="account-number">Account Number</div>
1675
+ <div class="_50200027441433">50200027441433</div>
1573
1676
  </div>
1574
- <div class="frame-563">
1575
- <div class="frame-53">
1576
- <div class="swift-code">SWIFT Code</div>
1577
- <div class="hdfcinbbche">HDFCINBBCHE</div>
1578
- </div>
1579
- <div class="frame-542">
1580
- <div class="branch">Branch</div>
1581
- <div class="rs-puram-coimbatore">RS Puram, Coimbatore</div>
1582
- </div>
1677
+ <div class="frame-54">
1678
+ <div class="ifsc-code">IFSC Code</div>
1679
+ <div class="hdfc-0000269">HDFC0000269</div>
1680
+ </div>
1681
+ <div class="frame-532">
1682
+ <div class="payment-type">Payment Type</div>
1683
+ <div class="virtual-acc">{{paymentMethod}}</div>
1684
+ </div>
1685
+ <div class="frame-543">
1686
+ <div class="swift-code">SWIFT Code</div>
1687
+ <div class="hdfcinbbche">HDFCINBBCHE</div>
1688
+ </div>
1689
+ <div class="frame-542">
1690
+ <div class="branch">Branch</div>
1691
+ <div class="rs-puram-coimbatore">RS Puram, Coimbatore</div>
1583
1692
  </div>
1584
1693
  </div>
1585
1694
  </div>
@@ -1587,7 +1696,7 @@
1587
1696
  <div class="authorized-signature">This is a system generated invoice. No signature required</div>
1588
1697
  {{!-- <div class="div">_________________________________</div> --}}
1589
1698
  </div>
1590
- {{#eq attachAnnexure true}}
1699
+ {{#eq attachAnnexure true}}
1591
1700
  <div class="frame-9162">
1592
1701
  <div class="thanks-for-your-business">Annexure-1</div>
1593
1702
  </div>
@@ -1662,13 +1771,19 @@
1662
1771
  </div>
1663
1772
  {{#each annuxureData}}
1664
1773
  <div class="table-cell" style="height: 70px !important;">
1665
- <div class="text7">{{currencyType}} {{runningCost}}</div>
1774
+ <div class="text7">{{#eq ../billingCurrency 'inr'}}
1775
+
1776
+ {{/eq}}
1777
+
1778
+ {{#eq ../billingCurrency 'dollar'}}
1779
+ $
1780
+ {{/eq}} {{runningCost}}</div>
1666
1781
  </div>
1667
1782
  {{/each}}
1668
1783
  </div>
1669
1784
  </div>
1670
1785
  </div>
1671
- {{/eq}}
1786
+ {{/eq}}
1672
1787
  </div>
1673
1788
  </div>
1674
1789
 
@@ -763,7 +763,7 @@ img {
763
763
  </tr>
764
764
  <tr>
765
765
  <td>
766
- <a href={{uidomain}}>
766
+ <a href="{{uidomain}}/manage/settings/payment-subscription">
767
767
  <table cellspacing="0" cellpadding="0" border="0">
768
768
  <tbody><tr>
769
769
  <td>