shareneus 1.4.54 → 1.4.56
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.
|
@@ -286,8 +286,9 @@ class SharedPDFService {
|
|
|
286
286
|
static GetEntityDetails(Entity) {
|
|
287
287
|
let SetData = [];
|
|
288
288
|
if (Entity.PrUPI && !Entity.IsProforma) {
|
|
289
|
-
SetData.push({ qr: Entity.UPI, fit: '
|
|
289
|
+
SetData.push({ qr: Entity.UPI, fit: '125', marginLeft: 150 });
|
|
290
290
|
SetData.push({ text: 'Scan To Pay', fontSize: this.TermsandCond, marginLeft: 151, bold: true, marginTop: 2 });
|
|
291
|
+
SetData.push({ text: 'UPI Number: ' + Entity.UPIPhone, fontSize: 9, marginLeft: 151, bold: true, marginTop: 5 });
|
|
291
292
|
}
|
|
292
293
|
// SetData.push({ columns: [this.GetEntityTax(Entity)] })
|
|
293
294
|
return {
|
|
@@ -571,7 +572,7 @@ class SharedPDFService {
|
|
|
571
572
|
let AccHolderName = { name: 'Account Holder Name', value: Bankinfo.ACName };
|
|
572
573
|
let Branch = { name: 'Branch', value: tr_utils_1.TrUtils.IsNull(Bankinfo.Bran) ? '' : Bankinfo.Bran };
|
|
573
574
|
let IFSC = { name: 'IFSC NO', value: Bankinfo.IFSC };
|
|
574
|
-
let UPIPh = { name: 'Phone Pay / Google Pay', value: UPIPhone };
|
|
575
|
+
// let UPIPh = { name: 'Phone Pay / Google Pay', value: UPIPhone };
|
|
575
576
|
// let TotalPartsAmount = { name: 'Final Labor Amount', value: this.LabourtotalAmount(ROPrintData.LaborInsTotal) };
|
|
576
577
|
AccountFields.push(BANK);
|
|
577
578
|
// if (!TrUtils.IsNull(ROPrintData.OverAllLaborDiscount) && ROPrintData.OverAllLaborDiscount !== 0) {
|
|
@@ -580,9 +581,9 @@ class SharedPDFService {
|
|
|
580
581
|
// }
|
|
581
582
|
AccountFields.push(Branch);
|
|
582
583
|
AccountFields.push(IFSC);
|
|
583
|
-
if (!
|
|
584
|
-
|
|
585
|
-
}
|
|
584
|
+
// if (!TrUtils.IsNull(UPIPhone)) {
|
|
585
|
+
// AccountFields.push(UPIPh);
|
|
586
|
+
// } // AccountFields.push(TotalPartsAmount);
|
|
586
587
|
return {
|
|
587
588
|
style: ['columnheader', 'TotalsStyles'],
|
|
588
589
|
lineHeight: 1,
|