shareneus 1.4.82 → 1.4.83
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.
|
@@ -370,7 +370,7 @@ export declare class SharedPDFService {
|
|
|
370
370
|
stack: {
|
|
371
371
|
style: string;
|
|
372
372
|
table: {
|
|
373
|
-
widths:
|
|
373
|
+
widths: number[];
|
|
374
374
|
headerRows: number;
|
|
375
375
|
body: any;
|
|
376
376
|
};
|
|
@@ -399,7 +399,7 @@ export declare class SharedPDFService {
|
|
|
399
399
|
static AllHSNPartCGSTTaxListTable1(PartsTaxInfo: any, ShowAccParts: any, ShowIGST: any, ShowTaxColumn: any): {
|
|
400
400
|
style: string;
|
|
401
401
|
table: {
|
|
402
|
-
widths:
|
|
402
|
+
widths: number[];
|
|
403
403
|
headerRows: number;
|
|
404
404
|
body: any;
|
|
405
405
|
};
|
|
@@ -487,7 +487,7 @@ export declare class SharedPDFService {
|
|
|
487
487
|
stack: {
|
|
488
488
|
style: string;
|
|
489
489
|
table: {
|
|
490
|
-
widths:
|
|
490
|
+
widths: number[];
|
|
491
491
|
headerRows: number;
|
|
492
492
|
body: any;
|
|
493
493
|
};
|
|
@@ -1353,7 +1353,7 @@ class SharedPDFService {
|
|
|
1353
1353
|
return {
|
|
1354
1354
|
style: 'tableExample',
|
|
1355
1355
|
table: {
|
|
1356
|
-
widths: [
|
|
1356
|
+
widths: [25, 60, 50],
|
|
1357
1357
|
headerRows: 1,
|
|
1358
1358
|
body: this.CreateHSNTaxTable1(PartsTaxInfo, ShowAccParts, ShowIGST, ShowTaxColumn)
|
|
1359
1359
|
},
|
|
@@ -1364,7 +1364,7 @@ class SharedPDFService {
|
|
|
1364
1364
|
return {
|
|
1365
1365
|
style: 'tableExample',
|
|
1366
1366
|
table: {
|
|
1367
|
-
widths: [
|
|
1367
|
+
widths: [25, 60, 40, 40],
|
|
1368
1368
|
headerRows: 1,
|
|
1369
1369
|
body: this.CreateHSNTaxTable1(PartsTaxInfo, ShowAccParts, ShowIGST, ShowTaxColumn)
|
|
1370
1370
|
},
|