shareneus 1.4.63 → 1.4.66
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/accounting/invoice/hc-inv-pdf.service.js +4 -5
- package/dist/accounting/invoice/invoice-total.service.d.ts +1 -0
- package/dist/accounting/invoice/invoice-total.service.js +23 -0
- package/dist/shared/shared-pdf.service.d.ts +38 -22
- package/dist/shared/shared-pdf.service.js +43 -39
- package/package.json +1 -1
|
@@ -765,7 +765,7 @@ class HCInvoiceprintService {
|
|
|
765
765
|
static CommonTotalDetails(ROPrintData, index, numberofCopies, withPass, isAuto, moreDiscDetails) {
|
|
766
766
|
// console.log('ROPrintData', ROPrintData);
|
|
767
767
|
let CommonDetails = [
|
|
768
|
-
shared_pdf_service_1.SharedPDFService.GetFinalTotalDetails1(ROPrintData, ROPrintData.CustLaborTotalAfterDisc, ROPrintData.CustLaborDiscTotal, ROPrintData.CustLaborCGST, ROPrintData.CustLaborSGST, ROPrintData.CustLaborIGST, ROPrintData.CustPartIGST, ROPrintData.ShowIGST, ROPrintData.ShowTaxColumn, ROPrintData.CustPartsTotalAfterDisc, ROPrintData.CustPartsDiscTotal, ROPrintData.CustPartCGST, ROPrintData.CustPartSGST, ROPrintData.CustTaxGroupDataByPerc, ROPrintData.ShowAccParts, ROPrintData.CustLaborAfterTax, ROPrintData.CustPartAfterTax, ROPrintData.FixedDisc, ROPrintData.For, ROPrintData.FixedTotal, ROPrintData.CustTotalRoundedBy, ROPrintData.CustRoundedTotal, ROPrintData.ShowTaxColumn, ROPrintData.ShowTaxColumn, tr_utils_1.TrUtils.isTaxable(ROPrintData.Settings.Tax), ROPrintData.CustLaborITax, ROPrintData.CustPartITax, ROPrintData.Consolidate, ROPrintData.From, ROPrintData.Adj, ROPrintData.
|
|
768
|
+
shared_pdf_service_1.SharedPDFService.GetFinalTotalDetails1(ROPrintData, ROPrintData.CustLaborTotalAfterDisc, ROPrintData.CustLaborDiscTotal, ROPrintData.CustLaborCGST, ROPrintData.CustLaborSGST, ROPrintData.CustLaborIGST, ROPrintData.CustPartIGST, ROPrintData.ShowIGST, ROPrintData.ShowTaxColumn, ROPrintData.CustPartsTotalAfterDisc, ROPrintData.CustPartsDiscTotal, ROPrintData.CustPartCGST, ROPrintData.CustPartSGST, ROPrintData.CustTaxGroupDataByPerc, ROPrintData.ShowAccParts, ROPrintData.CustLaborAfterTax, ROPrintData.CustPartAfterTax, ROPrintData.FixedDisc, ROPrintData.For, ROPrintData.FixedTotal, ROPrintData.CustTotalRoundedBy, ROPrintData.CustRoundedTotal, ROPrintData.ShowTaxColumn, ROPrintData.ShowTaxColumn, tr_utils_1.TrUtils.isTaxable(ROPrintData.Settings.Tax), ROPrintData.CustLaborITax, ROPrintData.CustPartITax, ROPrintData.Consolidate, ROPrintData.From, ROPrintData.Adj, ROPrintData.TaxSummary, ROPrintData.STotal, isAuto, moreDiscDetails),
|
|
769
769
|
this.GetNumberInWords(ROPrintData.CustRoundedTotal),
|
|
770
770
|
this.InvoiceDueStatus(ROPrintData.Type, ROPrintData.Paid, ROPrintData.Due, ROPrintData.Sts, ROPrintData.isCountersale, ROPrintData.Entity.DecimalsNumber),
|
|
771
771
|
shared_pdf_service_1.SharedPDFService.GetTemsAndConditions(ROPrintData.Entity.Terms),
|
|
@@ -789,13 +789,12 @@ class HCInvoiceprintService {
|
|
|
789
789
|
return {
|
|
790
790
|
// lineHeight: 0.7,
|
|
791
791
|
fontSize: 9,
|
|
792
|
-
marginTop:
|
|
792
|
+
marginTop: 5,
|
|
793
793
|
marginBottom: 5,
|
|
794
794
|
table: {
|
|
795
|
-
widths: [
|
|
795
|
+
widths: ['*', 'auto'],
|
|
796
796
|
body: [[{ text: 'Paid : ' + tr_utils_1.TrUtils.FixPriceValue(Paid, DecimalsNumber) },
|
|
797
|
-
{ text: 'Due : ' + tr_utils_1.TrUtils.FixPriceValue(Due, DecimalsNumber) }
|
|
798
|
-
{ text: 'Status : ' + Status }]]
|
|
797
|
+
{ text: 'Due : ' + tr_utils_1.TrUtils.FixPriceValue(Due, DecimalsNumber) }]]
|
|
799
798
|
},
|
|
800
799
|
layout: shared_pdf_service_1.SharedPDFService.LayOutStyle(),
|
|
801
800
|
};
|
|
@@ -17,6 +17,7 @@ export declare class InvoiceTotalsService {
|
|
|
17
17
|
static GetRetPartsTotalAfterDiscount(PartsList: any): any;
|
|
18
18
|
static GetNonRetPartsTotalAfterDiscount(PartsList: any): any;
|
|
19
19
|
static GetDetailedTotalsData(finalTotalsData: any, IsIndependentTax: boolean, opCodesList: any, PartsList: any, TaxCodes: any, DecimalsNumber: any): any;
|
|
20
|
+
static groupTaxData(items: any[], ops: any[]): any[];
|
|
20
21
|
static GetTaxGroupingForLaborByPerc(opCodesList: any, TaxCodes: any, DecimalsNumber: any): any[];
|
|
21
22
|
static GetTaxGroupingForPartsByPerc(Parts: any, TaxCodes: any, DecimalsNumber: any): any[];
|
|
22
23
|
static GetTaxGroupingInfoBySAC(FinalMatchedLabors: any, TaxCodes: any, DecimalsNumber: any): any[];
|
|
@@ -246,6 +246,7 @@ class InvoiceTotalsService {
|
|
|
246
246
|
finalTotalsData.CustTaxGroupData = this.GetTaxGroupingForPartsByHSN(PartsList, TaxCodes, DecimalsNumber);
|
|
247
247
|
finalTotalsData.CustTaxGroupDataByPerc = this.GetTaxGroupingForPartsByPerc(PartsList, TaxCodes, DecimalsNumber);
|
|
248
248
|
finalTotalsData.CustLaborTaxGroupDataByPerc = this.GetTaxGroupingForLaborByPerc(opCodesList, TaxCodes, DecimalsNumber);
|
|
249
|
+
finalTotalsData.TaxSummary = this.groupTaxData(finalTotalsData.CustTaxGroupData, finalTotalsData.CustLaborTaxGroupDataByPerc);
|
|
249
250
|
finalTotalsData.CustTotalRoundedBy = tr_utils_1.TrUtils.FixedTo(finalTotalsData.Round, DecimalsNumber);
|
|
250
251
|
finalTotalsData.CustRoundedTotal = tr_utils_1.TrUtils.FixedTo(finalTotalsData.Total, DecimalsNumber);
|
|
251
252
|
finalTotalsData.CustRetRoundedTotal = tr_utils_1.TrUtils.FixedTo(finalTotalsData.RetTotal, DecimalsNumber);
|
|
@@ -260,6 +261,28 @@ class InvoiceTotalsService {
|
|
|
260
261
|
}
|
|
261
262
|
return finalTotalsData;
|
|
262
263
|
}
|
|
264
|
+
static groupTaxData(items, ops) {
|
|
265
|
+
const combined = [...items, ...ops];
|
|
266
|
+
const groupedMap = new Map();
|
|
267
|
+
combined.forEach(item => {
|
|
268
|
+
if (groupedMap.has(item.CombinedTaxPercentage)) {
|
|
269
|
+
const existing = groupedMap.get(item.CombinedTaxPercentage);
|
|
270
|
+
existing.CGSTAmt = (0, aggregation_1.addition)(existing.CGSTAmt, item.CGSTAmt);
|
|
271
|
+
existing.SGSTAmt = (0, aggregation_1.addition)(existing.SGSTAmt, item.SGSTAmt);
|
|
272
|
+
// Sum IGST if present
|
|
273
|
+
if (item.IGSTAmt !== undefined) {
|
|
274
|
+
existing.IGSTAmt = (0, aggregation_1.addition)(existing.IGSTAmt || 0, item.IGSTAmt);
|
|
275
|
+
}
|
|
276
|
+
existing.TotalTaxAmount = (0, aggregation_1.addition)(existing.TotalTaxAmount || 0, item.TotalTaxAmount || 0);
|
|
277
|
+
existing.TotalTaxableAmount = (0, aggregation_1.addition)(existing.TotalTaxableAmount || 0, item.TotalTaxableAmount || 0);
|
|
278
|
+
}
|
|
279
|
+
else {
|
|
280
|
+
// Clone the object to avoid mutation
|
|
281
|
+
groupedMap.set(item.CombinedTaxPercentage, Object.assign({}, item));
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
return Array.from(groupedMap.values());
|
|
285
|
+
}
|
|
263
286
|
static GetTaxGroupingForLaborByPerc(opCodesList, TaxCodes, DecimalsNumber) {
|
|
264
287
|
opCodesList = this.GetCombinedTaxPercentage(tr_utils_1.TrUtils.Stringify(opCodesList), TaxCodes);
|
|
265
288
|
// opCodesList = this.ResetPartsHSNIfInvalid(opCodesList);
|
|
@@ -468,6 +468,7 @@ export declare class SharedPDFService {
|
|
|
468
468
|
fontSize: number;
|
|
469
469
|
lineHeight: number;
|
|
470
470
|
Field: string;
|
|
471
|
+
alignment: string;
|
|
471
472
|
}[];
|
|
472
473
|
static CreateHSNTaxTable1(PartsTaxInfo: any, ShowAccParts: any, ShowIGST: any, ShowTaxColumn: any): any;
|
|
473
474
|
static CreateHSNTaxTable(PartsTaxInfo: any, ShowAccParts: any, ShowIGST: any, ShowTaxColumn: any): any;
|
|
@@ -496,10 +497,6 @@ export declare class SharedPDFService {
|
|
|
496
497
|
hLineColor: (i: any, node: any) => string;
|
|
497
498
|
};
|
|
498
499
|
}[];
|
|
499
|
-
} | {
|
|
500
|
-
text: string;
|
|
501
|
-
fontSize: number;
|
|
502
|
-
opacity: number;
|
|
503
500
|
})[];
|
|
504
501
|
})[];
|
|
505
502
|
marginLeft: number;
|
|
@@ -653,39 +650,57 @@ export declare class SharedPDFService {
|
|
|
653
650
|
static GetSignatures(CName: any, For: any, Type: any): {
|
|
654
651
|
columns: {
|
|
655
652
|
stack: ({
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
text:
|
|
659
|
-
|
|
660
|
-
|
|
653
|
+
text: {
|
|
654
|
+
style: string;
|
|
655
|
+
text: (string | {
|
|
656
|
+
text: any;
|
|
657
|
+
bold: string;
|
|
658
|
+
})[];
|
|
659
|
+
};
|
|
660
|
+
alignment: string;
|
|
661
|
+
columns?: undefined;
|
|
661
662
|
} | {
|
|
662
663
|
columns: any[];
|
|
664
|
+
text?: undefined;
|
|
665
|
+
alignment?: undefined;
|
|
663
666
|
})[];
|
|
664
667
|
}[];
|
|
665
668
|
};
|
|
666
669
|
static GetInvSignatures(CName: any, isCounterSale: boolean): {
|
|
667
670
|
columns: {
|
|
668
671
|
stack: ({
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
text:
|
|
672
|
-
|
|
673
|
-
|
|
672
|
+
text: {
|
|
673
|
+
style: string;
|
|
674
|
+
text: (string | {
|
|
675
|
+
text: any;
|
|
676
|
+
bold: string;
|
|
677
|
+
})[];
|
|
678
|
+
};
|
|
679
|
+
alignment: string;
|
|
680
|
+
columns?: undefined;
|
|
674
681
|
} | {
|
|
675
682
|
columns: any[];
|
|
683
|
+
text?: undefined;
|
|
684
|
+
alignment?: undefined;
|
|
676
685
|
})[];
|
|
677
686
|
}[];
|
|
678
687
|
};
|
|
679
688
|
static GetHCInvSignatures(CName: any, isCounterSale: boolean): {
|
|
680
689
|
columns: {
|
|
681
690
|
stack: ({
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
text:
|
|
685
|
-
|
|
686
|
-
|
|
691
|
+
text: {
|
|
692
|
+
style: string;
|
|
693
|
+
text: (string | {
|
|
694
|
+
text: any;
|
|
695
|
+
bold: string;
|
|
696
|
+
})[];
|
|
697
|
+
};
|
|
698
|
+
alignment: string;
|
|
699
|
+
columns?: undefined;
|
|
687
700
|
} | {
|
|
688
701
|
columns: any[];
|
|
702
|
+
text?: undefined;
|
|
703
|
+
alignment?: undefined;
|
|
689
704
|
})[];
|
|
690
705
|
}[];
|
|
691
706
|
};
|
|
@@ -700,21 +715,22 @@ export declare class SharedPDFService {
|
|
|
700
715
|
static Authorizedsignature(): {
|
|
701
716
|
style: string;
|
|
702
717
|
text: string[];
|
|
718
|
+
width: string;
|
|
703
719
|
};
|
|
704
720
|
static Accountantsignature(): {
|
|
705
721
|
style: string;
|
|
706
722
|
text: string[];
|
|
707
|
-
|
|
723
|
+
width: string;
|
|
708
724
|
};
|
|
709
725
|
static CustomerSignature(): {
|
|
710
726
|
style: string;
|
|
711
727
|
text: string[];
|
|
712
|
-
|
|
728
|
+
width: string;
|
|
713
729
|
};
|
|
714
730
|
static PatientSignature(): {
|
|
715
731
|
style: string;
|
|
716
732
|
text: string[];
|
|
717
|
-
|
|
733
|
+
width: string;
|
|
718
734
|
};
|
|
719
735
|
static SurveyorSignature(For: any, Type: any): any;
|
|
720
736
|
static GetHeadersWithDiffDisc(ROData: any, PrintPartNumber: any): any;
|
|
@@ -848,7 +848,7 @@ class SharedPDFService {
|
|
|
848
848
|
static textToSvgBarcode(text) {
|
|
849
849
|
const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
850
850
|
(0, jsbarcode_1.default)(svgElement, text, {
|
|
851
|
-
format: "CODE128", width: 1.25, height:
|
|
851
|
+
format: "CODE128", width: 1.25, height: 20, margin: 0, marginTop: 8,
|
|
852
852
|
displayValue: true, fontSize: 7, textMargin: 0, fontOptions: 'bold'
|
|
853
853
|
});
|
|
854
854
|
return { svg: svgElement.outerHTML };
|
|
@@ -999,9 +999,9 @@ class SharedPDFService {
|
|
|
999
999
|
if (tr_utils_1.TrUtils.IsNull(Customer)) {
|
|
1000
1000
|
return this.emptyObject();
|
|
1001
1001
|
}
|
|
1002
|
-
let Data = [{ text: CustHeader + ':', style: '
|
|
1003
|
-
{ text: Customer.Code,
|
|
1004
|
-
{ text: Customer.Name,
|
|
1002
|
+
let Data = [{ text: CustHeader + ':', style: 'hed2' },
|
|
1003
|
+
{ text: Customer.Code, fontSize: 12 },
|
|
1004
|
+
{ text: Customer.Name, fontSize: 12 },
|
|
1005
1005
|
{ text: this.GetAddress(Customer), marginTop: 3 },
|
|
1006
1006
|
this.GetCustPhoneNumber(Customer, Type), this.GetCustomerGSTIN(Customer), this.GetCustomerDLNo(Customer),
|
|
1007
1007
|
,
|
|
@@ -1397,7 +1397,7 @@ class SharedPDFService {
|
|
|
1397
1397
|
return {
|
|
1398
1398
|
style: 'tableExample',
|
|
1399
1399
|
table: {
|
|
1400
|
-
widths: [20,
|
|
1400
|
+
widths: [20, 60, 40, 40],
|
|
1401
1401
|
body: this.ALLPartsCGSTTaxListTable(PartsTaxInfo, ShowAccParts, ShowTaxColumn)
|
|
1402
1402
|
},
|
|
1403
1403
|
layout: this.HeaderLineStyle(),
|
|
@@ -1488,18 +1488,19 @@ class SharedPDFService {
|
|
|
1488
1488
|
// { text: 'CGST', style: 'tableheader', fontSize: 6, lineHeight: 0.3, Field: 'CGST' },
|
|
1489
1489
|
// { text: 'SGST', style: 'tableheader', fontSize: 6, lineHeight: 0.3, Field: 'SGST' },
|
|
1490
1490
|
// { text: 'Count', style: 'tableheader', fontSize: 6, lineHeight: 0.3, Field: 'PartsCount' },
|
|
1491
|
-
{ text: '
|
|
1492
|
-
{ text: '
|
|
1491
|
+
{ text: 'Tax Rate', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CombinedTaxPercentage', alignment: 'center' },
|
|
1492
|
+
{ text: 'Taxable Amount', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'TotalTaxableAmount', alignment: 'right' },
|
|
1493
|
+
// { text: 'Tax Amount', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'TotalTaxAmount' },
|
|
1493
1494
|
];
|
|
1494
1495
|
if (ShowIGST) {
|
|
1495
|
-
HeaderNames.splice(1, 0, { text: 'IGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'IGST' });
|
|
1496
|
-
HeaderNames.splice(2, 0, { text: 'IGST(Rs.)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'IGSTAmt' });
|
|
1496
|
+
// HeaderNames.splice(1, 0, { text: 'IGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'IGST' });
|
|
1497
|
+
HeaderNames.splice(2, 0, { text: 'IGST(Rs.)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'IGSTAmt', alignment: 'right' });
|
|
1497
1498
|
}
|
|
1498
1499
|
else {
|
|
1499
|
-
HeaderNames.splice(1, 0, { text: 'CGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGST' });
|
|
1500
|
-
HeaderNames.splice(2, 0, { text: 'CGST(Rs.)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGSTAmt' });
|
|
1501
|
-
HeaderNames.splice(3, 0, { text: 'SGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGST' });
|
|
1502
|
-
HeaderNames.splice(
|
|
1500
|
+
// HeaderNames.splice(1, 0, { text: 'CGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGST' });
|
|
1501
|
+
HeaderNames.splice(2, 0, { text: 'CGST(Rs.)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGSTAmt', alignment: 'right' });
|
|
1502
|
+
// HeaderNames.splice(3, 0, { text: 'SGST(%)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'CGST' });
|
|
1503
|
+
HeaderNames.splice(3, 0, { text: 'SGST(Rs.)', style: 'tableheader2', fontSize: 6, lineHeight: 0.3, Field: 'SGSTAmt', alignment: 'right' });
|
|
1503
1504
|
}
|
|
1504
1505
|
return HeaderNames;
|
|
1505
1506
|
}
|
|
@@ -1514,9 +1515,12 @@ class SharedPDFService {
|
|
|
1514
1515
|
if (!tr_utils_1.TrUtils.IsFixedZero(part[column.Field]) &&
|
|
1515
1516
|
!tr_utils_1.TrUtils.IsNull(part[column.Field]) || column.Field === 'SGST' || column.Field === 'CGST' || column.Field === 'SGSTAmt' || column.Field === 'CGSTAmt'
|
|
1516
1517
|
|| column.Field === 'TotalTaxAmount') {
|
|
1517
|
-
if (column.Field === '
|
|
1518
|
+
if (column.Field === 'TotalTaxAmount' || column.Field === 'SGSTAmt' || column.Field === 'CGSTAmt' || column.Field === 'IGSTAmt') {
|
|
1518
1519
|
dataRow.push({ text: part[column.Field].toString(), alignment: 'right', opacity: 0.7, nowrap: true, fontSize: 6 });
|
|
1519
1520
|
}
|
|
1521
|
+
else if (column.Field === 'CombinedTaxPercentage') {
|
|
1522
|
+
dataRow.push({ text: part[column.Field].toString() + '%', alignment: 'center', opacity: 0.7, nowrap: true, fontSize: 6 });
|
|
1523
|
+
}
|
|
1520
1524
|
else {
|
|
1521
1525
|
dataRow.push({ text: part[column.Field].toString(), alignment: 'center', opacity: 0.7, nowrap: true, fontSize: 6 });
|
|
1522
1526
|
}
|
|
@@ -1613,16 +1617,15 @@ class SharedPDFService {
|
|
|
1613
1617
|
totalDisc = tr_utils_1.TrUtils.FixPriceValue((0, aggregation_1.addition)(Number(OverAllMainLaborDiscount), Number(OverAllMainPartsDiscount)), RecordData.Entity.DecimalsNumber);
|
|
1614
1618
|
}
|
|
1615
1619
|
}
|
|
1616
|
-
let serviceName;
|
|
1617
|
-
let itemName;
|
|
1618
|
-
if (isAuto) {
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
}
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
}
|
|
1620
|
+
// let serviceName: string;
|
|
1621
|
+
// let itemName: string;
|
|
1622
|
+
// if (isAuto) {
|
|
1623
|
+
// serviceName = 'Labor Tax';
|
|
1624
|
+
// itemName = 'Parts Tax';
|
|
1625
|
+
// } else {
|
|
1626
|
+
// serviceName = 'Service Tax';
|
|
1627
|
+
// itemName = 'Items Tax';
|
|
1628
|
+
// }
|
|
1626
1629
|
return {
|
|
1627
1630
|
columns: [
|
|
1628
1631
|
// this.GetTaxOnLabor(BasicLaborTotal, OverAllMainLaborDiscount, LCGST,
|
|
@@ -1632,10 +1635,11 @@ class SharedPDFService {
|
|
|
1632
1635
|
stack: [
|
|
1633
1636
|
// this.GetTaxOnParts(BasicPartsTotal, OverAllMainPartsDiscount, PCGST,
|
|
1634
1637
|
// PSGST, ShowAccParts, PIGST, ShowIGST, ShowTaxColumn, ShowDetailedPartTaxInfo, From),
|
|
1635
|
-
{ text: (istaxable && CustLaborTaxGroupDataByPerc.length !== 0) ? serviceName : '', fontSize: 7, opacity: 0.8 },
|
|
1638
|
+
// { text: (istaxable && CustLaborTaxGroupDataByPerc.length !== 0) ? serviceName : '', fontSize: 7, opacity: 0.8 },
|
|
1636
1639
|
this.PartsTaxAmounts1(CustLaborTaxGroupDataByPerc, ShowAccParts, ShowIGST, ShowTaxColumn),
|
|
1637
|
-
{ text: (istaxable && PartsTaxInfo.length !== 0) ? itemName : '', fontSize: 7, opacity: 0.8 },
|
|
1638
|
-
this.PartsTaxAmounts1(PartsTaxInfo, ShowAccParts, ShowIGST,
|
|
1640
|
+
// { text: (istaxable && PartsTaxInfo.length !== 0) ? itemName : '', fontSize: 7, opacity: 0.8 },
|
|
1641
|
+
// this.PartsTaxAmounts1(PartsTaxInfo, ShowAccParts, ShowIGST,
|
|
1642
|
+
// ShowTaxColumn)
|
|
1639
1643
|
]
|
|
1640
1644
|
},
|
|
1641
1645
|
// { text: '', width: 60 },
|
|
@@ -2228,8 +2232,8 @@ class SharedPDFService {
|
|
|
2228
2232
|
return {
|
|
2229
2233
|
columns: [{
|
|
2230
2234
|
stack: [
|
|
2231
|
-
this.CompanyName(CName),
|
|
2232
|
-
{ columns: [this.
|
|
2235
|
+
{ text: this.CompanyName(CName), alignment: 'right' },
|
|
2236
|
+
{ columns: [this.CustomerSignature(), this.SurveyorSignature(For, Type), this.Authorizedsignature()] }
|
|
2233
2237
|
]
|
|
2234
2238
|
}],
|
|
2235
2239
|
};
|
|
@@ -2238,8 +2242,8 @@ class SharedPDFService {
|
|
|
2238
2242
|
return {
|
|
2239
2243
|
columns: [{
|
|
2240
2244
|
stack: [
|
|
2241
|
-
this.CompanyName(CName),
|
|
2242
|
-
{ columns: [this.
|
|
2245
|
+
{ text: this.CompanyName(CName), alignment: 'right' },
|
|
2246
|
+
{ columns: [this.CustomerSignature(), this.SparesSignature(isCounterSale), this.Authorizedsignature()] }
|
|
2243
2247
|
]
|
|
2244
2248
|
}],
|
|
2245
2249
|
};
|
|
@@ -2248,8 +2252,8 @@ class SharedPDFService {
|
|
|
2248
2252
|
return {
|
|
2249
2253
|
columns: [{
|
|
2250
2254
|
stack: [
|
|
2251
|
-
this.CompanyName(CName),
|
|
2252
|
-
{ columns: [this.
|
|
2255
|
+
{ text: this.CompanyName(CName), alignment: 'right' },
|
|
2256
|
+
{ columns: [this.PatientSignature(), this.SparesSignature(isCounterSale), this.Authorizedsignature()] }
|
|
2253
2257
|
]
|
|
2254
2258
|
}],
|
|
2255
2259
|
};
|
|
@@ -2258,7 +2262,7 @@ class SharedPDFService {
|
|
|
2258
2262
|
if (CounterSale) {
|
|
2259
2263
|
return {
|
|
2260
2264
|
style: 'Sign',
|
|
2261
|
-
text: ['Parts Incharge Signature'],
|
|
2265
|
+
text: ['Parts Incharge Signature'], width: '*'
|
|
2262
2266
|
};
|
|
2263
2267
|
}
|
|
2264
2268
|
else {
|
|
@@ -2275,33 +2279,33 @@ class SharedPDFService {
|
|
|
2275
2279
|
static Authorizedsignature() {
|
|
2276
2280
|
return {
|
|
2277
2281
|
style: 'Sign',
|
|
2278
|
-
text: ['Authorized Signature'],
|
|
2282
|
+
text: ['Authorized Signature'], width: 'auto'
|
|
2279
2283
|
};
|
|
2280
2284
|
}
|
|
2281
2285
|
static Accountantsignature() {
|
|
2282
2286
|
return {
|
|
2283
2287
|
style: 'Sign',
|
|
2284
2288
|
text: ['Accountant Signature'],
|
|
2285
|
-
|
|
2289
|
+
width: '*'
|
|
2286
2290
|
};
|
|
2287
2291
|
}
|
|
2288
2292
|
static CustomerSignature() {
|
|
2289
2293
|
return {
|
|
2290
2294
|
style: 'Sign',
|
|
2291
|
-
text: ['Customer Signature'],
|
|
2295
|
+
text: ['Customer Signature'], width: '*'
|
|
2292
2296
|
};
|
|
2293
2297
|
}
|
|
2294
2298
|
static PatientSignature() {
|
|
2295
2299
|
return {
|
|
2296
2300
|
style: 'Sign',
|
|
2297
|
-
text: ['Patient Signature'],
|
|
2301
|
+
text: ['Patient Signature'], width: '*'
|
|
2298
2302
|
};
|
|
2299
2303
|
}
|
|
2300
2304
|
static SurveyorSignature(For, Type) {
|
|
2301
2305
|
if (For === enums_1.PayTypeEnum.Insurance && Type === 'Estimate') {
|
|
2302
2306
|
return {
|
|
2303
2307
|
style: 'Sign',
|
|
2304
|
-
text: ['Surveyor Signature'],
|
|
2308
|
+
text: ['Surveyor Signature'], width: '*'
|
|
2305
2309
|
};
|
|
2306
2310
|
}
|
|
2307
2311
|
else {
|