shareneus 1.7.4 → 1.7.6
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/README.md +1 -0
- package/dist/accounting/invoice/invoice-pdf/invoice-pdf.service.js +18 -45
- package/dist/accounting/invoice/reports/excel/analysis-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/category-wise-item-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/cust-wise-sales-details.js +17 -7
- package/dist/accounting/invoice/reports/excel/cust-wise-sales-summary-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/invoice-wise-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/item-wise-doctor-sale-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/items-wise-sales-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/manf-wise-sales-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/operator-wise-details.js +17 -7
- package/dist/accounting/invoice/reports/excel/operator-wise-summary.js +17 -7
- package/dist/accounting/invoice/reports/excel/sa-wise-labor-sales-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/sa-wise-part-sales-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/sale-summary-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/sales-by-service-summary-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/scheduled-drug-summary-excel.service.js +17 -7
- package/dist/accounting/invoice/reports/excel/scheduled-drugs-excel.service.js +17 -7
- package/dist/accounting/invoice/unified-invoice-pdf.service.d.ts +1 -1
- package/dist/accounting/payment-receive/reports/excel/cust-balance-excel.service.js +17 -7
- package/dist/accounting/payment-receive/reports/excel/payment-receive-excel.service.js +17 -7
- package/dist/common/reports/excel/product-without-owner-excel.service.js +17 -7
- package/dist/gst/excel/GSTR-RO-excel.service.js +17 -7
- package/dist/gst/excel/GSTR1-excel.service.js +17 -7
- package/dist/gst/excel/GSTR2-excel.service.js +17 -7
- package/dist/gst/excel/hsn-summary.js +17 -7
- package/dist/gst/excel/tally-sales-import.service.js +17 -7
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/inventory/items/reports/excel/expiring-drugs-excel.service.js +17 -7
- package/dist/inventory/items/reports/excel/item-wise-mout-details.js +17 -7
- package/dist/inventory/items/reports/excel/item-wise-mout-summary.js +17 -7
- package/dist/inventory/items/reports/excel/spares-issue-excel.service.js +17 -7
- package/dist/inventory/items/reports/excel/stock-excel.service.js +17 -7
- package/dist/purchases/payment-made/reports/excel/payments-made-excel.service.js +17 -7
- package/dist/purchases/payment-made/reports/excel/ven-balance-excel.service.js +17 -7
- package/dist/services/reports/excel/insurance-expire-excel.service.js +17 -7
- package/dist/services/reports/excel/next-service-date-excel.service.js +17 -7
- package/dist/services/reports/excel/repair-orders-excel.service.js +17 -7
- package/dist/shared/table-section/pdf-table.header.d.ts +1 -1
- package/dist/shared/table-section/pdf-table.header.js +14 -2
- package/dist/shared/table-section/pdf-table.section.js +6 -13
- package/dist/{accounting/invoice/invoice-pdf.service.js → shared/transactions-pdf.service.js} +15 -15
- package/package.json +1 -1
- package/src/accounting/counter-sales/auto-sales-receipt-pdf.service.ts +569 -0
- package/src/accounting/counter-sales/pos-receipt-pdf.ts +577 -0
- package/src/accounting/counter-sales/sales-receipt-pdf.service.ts +628 -0
- package/src/accounting/counter-sales/sales-receipt-print.service.ts +506 -0
- package/src/accounting/credit-note/cn-print.service.ts +264 -0
- package/src/accounting/credit-note/credit-note-pdf.service.ts +602 -0
- package/src/accounting/credit-note/credit-note-totals.service.ts +424 -0
- package/src/accounting/debit-note/debit-note-pdf.service.ts +681 -0
- package/src/accounting/debit-note/debit-note-print.service.ts +276 -0
- package/src/accounting/debit-note/debit-note-totals.service.ts +361 -0
- package/src/accounting/invoice/hc-inv-pdf.service.ts +880 -0
- package/src/accounting/invoice/inv-pdf.service.ts +812 -0
- package/src/accounting/invoice/inv-print.service.ts +532 -0
- package/src/accounting/invoice/invoice-landscape-pdf.service.ts +947 -0
- package/src/accounting/invoice/invoice-letterhead-pdf.service.ts +813 -0
- package/src/accounting/invoice/invoice-pdf/invoice-pdf.service.ts +359 -0
- package/src/accounting/invoice/invoice-portrait-pdf.ts +972 -0
- package/src/accounting/invoice/invoice-print.service.ts +2906 -0
- package/src/accounting/invoice/invoice-total.service.ts +834 -0
- package/src/accounting/invoice/reports/excel/analysis-excel.service.ts +291 -0
- package/src/accounting/invoice/reports/excel/category-wise-item-excel.service.ts +267 -0
- package/src/accounting/invoice/reports/excel/cust-wise-sales-details.ts +321 -0
- package/src/accounting/invoice/reports/excel/cust-wise-sales-summary-excel.service.ts +300 -0
- package/src/accounting/invoice/reports/excel/invoice-wise-excel.service.ts +859 -0
- package/src/accounting/invoice/reports/excel/item-wise-doctor-sale-excel.service.ts +255 -0
- package/src/accounting/invoice/reports/excel/items-wise-sales-excel.service.ts +312 -0
- package/src/accounting/invoice/reports/excel/manf-wise-sales-excel.service.ts +273 -0
- package/src/accounting/invoice/reports/excel/operator-wise-details.ts +258 -0
- package/src/accounting/invoice/reports/excel/operator-wise-summary.ts +259 -0
- package/src/accounting/invoice/reports/excel/sa-wise-labor-sales-excel.service.ts +230 -0
- package/src/accounting/invoice/reports/excel/sa-wise-part-sales-excel.service.ts +231 -0
- package/src/accounting/invoice/reports/excel/sale-summary-excel.service.ts +326 -0
- package/src/accounting/invoice/reports/excel/sales-by-service-details-excel.service.ts +0 -0
- package/src/accounting/invoice/reports/excel/sales-by-service-summary-excel.service.ts +432 -0
- package/src/accounting/invoice/reports/excel/scheduled-drug-summary-excel.service.ts +373 -0
- package/src/accounting/invoice/reports/excel/scheduled-drugs-excel.service.ts +372 -0
- package/src/accounting/invoice/reports/pdf/analysis-pdf.service.ts +113 -0
- package/src/accounting/invoice/reports/pdf/category-wise-item-pdf.service.ts +107 -0
- package/src/accounting/invoice/reports/pdf/cust-wise-sales-details-pdf.service.ts +125 -0
- package/src/accounting/invoice/reports/pdf/cust-wise-sales-summary-pdf.service.ts +119 -0
- package/src/accounting/invoice/reports/pdf/item-wise-doctor-sale-pdf.service.ts +180 -0
- package/src/accounting/invoice/reports/pdf/item-wise-sales-pdf.service.ts +193 -0
- package/src/accounting/invoice/reports/pdf/manf-wise-sales-pdf.service.ts +188 -0
- package/src/accounting/invoice/reports/pdf/operator-wise-details-pdf.service.ts +118 -0
- package/src/accounting/invoice/reports/pdf/operator-wise-summary-pdf.ts +116 -0
- package/src/accounting/invoice/reports/pdf/sales-by-service-pdf.service.ts +132 -0
- package/src/accounting/invoice/reports/pdf/scheduled-drug-pdf.service.ts +191 -0
- package/src/accounting/invoice/reports/pdf/scheduled-drug-summary-pdf.service.ts +202 -0
- package/src/accounting/invoice/shared-inv-pdf.service.ts +787 -0
- package/src/accounting/invoice/unified-invoice-pdf.service.ts +937 -0
- package/src/accounting/payment-receive/payment-pdf.service.ts +410 -0
- package/src/accounting/payment-receive/payment-receipt-pdf/receipt-pdf.service.ts +470 -0
- package/src/accounting/payment-receive/receipt-print.service.ts +71 -0
- package/src/accounting/payment-receive/reports/excel/cust-balance-excel.service.ts +298 -0
- package/src/accounting/payment-receive/reports/excel/payment-receive-excel.service.ts +221 -0
- package/src/accounting/payment-receive/reports/pdf/customer-balances-pdf.service.ts +182 -0
- package/src/accounting/payment-receive/reports/pdf/payment-report-pdf.service.ts +116 -0
- package/src/aggregation/aggregation.ts +58 -0
- package/src/appointments/appointments/appointment-total.service.ts +298 -0
- package/src/appointments/consultations/consultation-fee-receipt.service.ts +407 -0
- package/src/appointments/consultations/consultation-full-pdf.service.ts +238 -0
- package/src/appointments/consultations/consultation-letterhead-pdf.service.ts +430 -0
- package/src/appointments/consultations/consultation-pdf.service.ts +417 -0
- package/src/common/reports/excel/product-without-owner-excel.service.ts +308 -0
- package/src/common/reports/pdf/product-without-owner-pdf.service.ts +146 -0
- package/src/enums/cache-enums.ts +33 -0
- package/src/enums/code-enums.ts +291 -0
- package/src/enums/country-enums.ts +9 -0
- package/src/enums/enums.ts +364 -0
- package/src/enums/industry-enums.ts +26 -0
- package/src/enums/treatment-enums.ts +9 -0
- package/src/gst/excel/GSTR-RO-excel.service.ts +926 -0
- package/src/gst/excel/GSTR1-excel.service.ts +313 -0
- package/src/gst/excel/GSTR2-excel.service.ts +314 -0
- package/src/gst/excel/hsn-summary.ts +314 -0
- package/src/gst/excel/tally-sales-import.service.ts +767 -0
- package/src/gst/pdf/hsn-summary-pdf.ts +176 -0
- package/src/index.ts +194 -0
- package/src/inventory/items/adjustment-pdf.service.ts +177 -0
- package/src/inventory/items/issue-parts-pdf.service.ts +795 -0
- package/src/inventory/items/item-bar-code-label-pdf.ts +194 -0
- package/src/inventory/items/item-detais-pdf.ts +141 -0
- package/src/inventory/items/item-price-for-pricelist.ts +368 -0
- package/src/inventory/items/reports/excel/expiring-drugs-excel.service.ts +290 -0
- package/src/inventory/items/reports/excel/item-wise-mout-details.ts +284 -0
- package/src/inventory/items/reports/excel/item-wise-mout-summary.ts +279 -0
- package/src/inventory/items/reports/excel/spares-issue-excel.service.ts +494 -0
- package/src/inventory/items/reports/excel/stock-excel.service.ts +319 -0
- package/src/inventory/items/reports/pdf/expiring-drugs-pdf.service.ts +172 -0
- package/src/inventory/items/reports/pdf/item-wise-mout-details-pdf.ts +122 -0
- package/src/inventory/items/reports/pdf/item-wise-mout-summary-pdf.ts +115 -0
- package/src/inventory/items/reports/pdf/reorder-point-pdf.service.ts +163 -0
- package/src/inventory/material-out/mout-pdf.service.ts +545 -0
- package/src/inventory/transfer-order/transfer-order-pdf.service.ts +154 -0
- package/src/purchases/bills/bill-pdf/bill-pdf.service.ts +211 -0
- package/src/purchases/bills/bill-pdf.service.ts +21 -0
- package/src/purchases/payment-made/reports/excel/payments-made-excel.service.ts +313 -0
- package/src/purchases/payment-made/reports/excel/ven-balance-excel.service.ts +307 -0
- package/src/purchases/payment-made/reports/pdf/vendor-balances-pdf.service.ts +114 -0
- package/src/purchases/purchase-order/po-totals.service.ts +343 -0
- package/src/purchases/purchase-order/purchase-order-pdf.service.ts +1016 -0
- package/src/purchases/purchase-order/purchase-order-print.service.ts +279 -0
- package/src/purchases/purchase-order/purchase-order-totals.service.ts +637 -0
- package/src/purchases/vendor-credit-note/vendor-credit-note-pdf.service.ts +1055 -0
- package/src/purchases/vendor-credit-note/vendor-credit-note-print.service.ts +145 -0
- package/src/purchases/vendor-credit-note/vendor-credit-note-totals.service.ts +399 -0
- package/src/purchases/vendor-debit-note/vendor-debit-note-pdf.service.ts +582 -0
- package/src/purchases/vendor-debit-note/vendor-debit-note-print.service.ts +295 -0
- package/src/purchases/vendor-debit-note/vendor-debit-note-totals.service.ts +377 -0
- package/src/sales/delivery-challan/dc-landscape-pdf.service.ts +922 -0
- package/src/sales/delivery-challan/dc-landscape-without-price-pdf.service.ts +869 -0
- package/src/sales/delivery-challan/dc-without-price-pdf.service.ts +505 -0
- package/src/sales/delivery-challan/delivery-challan-pdf.service.ts +461 -0
- package/src/sales/delivery-challan/delivery-challan-print.service.ts +229 -0
- package/src/sales/delivery-challan/delivery-challan-totals.ts +466 -0
- package/src/sales/sales/equipment-design-pdf.service.ts +153 -0
- package/src/sales/sales/pack-ship-pdf.service.ts +128 -0
- package/src/sales/sales/pack-ship-print.service.ts +198 -0
- package/src/sales/sales/sales-pdf.service.ts +658 -0
- package/src/sales/sales/sales-print.service.ts +376 -0
- package/src/sales/sales/sales-totals.service.ts +500 -0
- package/src/sales-receive/sales-receive-pdf.service.ts +602 -0
- package/src/sales-receive/sales-receive-print.service.ts +242 -0
- package/src/sales-receive/sales-receive-totals.service.ts +651 -0
- package/src/services/checklist-pdf.ts +151 -0
- package/src/services/checklists-pdf.ts +133 -0
- package/src/services/est.print-service.ts +1155 -0
- package/src/services/reports/excel/insurance-expire-excel.service.ts +292 -0
- package/src/services/reports/excel/next-service-date-excel.service.ts +317 -0
- package/src/services/reports/excel/repair-orders-excel.service.ts +249 -0
- package/src/services/reports/pdf/insurance-expire-pdf.service.ts +115 -0
- package/src/services/reports/pdf/next-service-date-pdf.service.ts +198 -0
- package/src/services/reports/pdf/repair-orders-pdf.service.ts +184 -0
- package/src/services/ro-pdf.service.ts +1917 -0
- package/src/services/ro-print-service.ts +881 -0
- package/src/services/ro-totals.service.ts +1314 -0
- package/src/services/separate-wo-print.service.ts +396 -0
- package/src/services/service-history-pdf.service.ts +145 -0
- package/src/services/service-price-for-pricelist.ts +649 -0
- package/src/services/technician-pdf.service.ts +234 -0
- package/src/services/technician-print.service.ts +95 -0
- package/src/shared/header-footer-section/pdf-header-footer.section.ts +519 -0
- package/src/shared/header-footer-section/pdf-shared.utils.ts +46 -0
- package/src/shared/math-operations.ts +208 -0
- package/src/shared/party-details-section/pdf-party-details.section.ts +602 -0
- package/src/shared/shared-pdf.service.ts +3042 -0
- package/src/shared/shared-print.service.ts +879 -0
- package/src/shared/table-section/pdf-table.config.ts +8 -0
- package/src/shared/table-section/pdf-table.header.ts +396 -0
- package/src/shared/table-section/pdf-table.row.ts +248 -0
- package/src/shared/table-section/pdf-table.section.ts +447 -0
- package/src/shared/totals-section/pdf-totals.section.ts +921 -0
- package/src/shared/transactions-pdf.service.ts +191 -0
- package/src/shared/util.ts +101 -0
- package/src/tasks/meetings/meeting-pdf.ts +410 -0
- package/src/tasks/tasks/task-pdf.service.ts +238 -0
- package/src/tasks/tasks/task-reports-pdf.service.ts +313 -0
- package/src/tax/index.ts +86 -0
- package/src/tax/tax-calculator.ts +1025 -0
- package/src/tax/tax.types.ts +535 -0
- package/src/transaction-calculations/discounts-distribution.ts +343 -0
- package/src/transaction-calculations/index.ts +3 -0
- package/src/transaction-calculations/total-calculation.ts +443 -0
- package/src/transaction-calculations/transaction-calculation-engine.ts +903 -0
- package/src/utils/my-date.ts +111 -0
- package/src/utils/tr-utils.ts +104 -0
- package/tsconfig.json +2 -2
- /package/dist/{accounting/invoice/invoice-pdf.service.d.ts → shared/transactions-pdf.service.d.ts} +0 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
|
|
2
|
+
import JsBarcode from 'jsbarcode';
|
|
3
|
+
import { SharedPDFService } from '../../shared/shared-pdf.service';
|
|
4
|
+
import { TrUtils } from '../../utils/tr-utils';
|
|
5
|
+
declare var pdfMake: any;
|
|
6
|
+
|
|
7
|
+
export class ItemBarCodeLabelPdf {
|
|
8
|
+
static PrintFile: any;
|
|
9
|
+
|
|
10
|
+
static ItemDetailsPrint(Item: any, win: any, custom: boolean, txt: string) {
|
|
11
|
+
let dd = {
|
|
12
|
+
background: function (currentPage:any, pageSize:any) {
|
|
13
|
+
if (custom) {
|
|
14
|
+
return [
|
|
15
|
+
{
|
|
16
|
+
canvas: [
|
|
17
|
+
{ type: 'line', x1: 5, y1: 5, x2: 385, y2: 5, lineWidth: 1 }, //Up line
|
|
18
|
+
{ type: 'line', x1: 5, y1: 5, x2: 5, y2: 560, lineWidth: 1 }, //Left line
|
|
19
|
+
{ type: 'line', x1: 5, y1: 560, x2: 385, y2: 560, lineWidth: 1 }, //Bottom line
|
|
20
|
+
{ type: 'line', x1: 385, y1: 5, x2: 385, y2: 560, lineWidth: 1 }, //Rigth line
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
} else {
|
|
27
|
+
return [
|
|
28
|
+
{
|
|
29
|
+
canvas: [
|
|
30
|
+
{ type: 'line', x1: 5, y1: 15, x2: 372.95275591, y2: 15, lineWidth: 1 }, //Up line
|
|
31
|
+
{ type: 'line', x1: 5, y1: 15, x2: 5, y2: 550.92913386, lineWidth: 1 }, //Left line
|
|
32
|
+
{ type: 'line', x1: 5, y1: 550.92913386, x2: 372.95275591, y2: 550.92913386, lineWidth: 1 }, //Bottom line
|
|
33
|
+
{ type: 'line', x1: 372.95275591, y1: 15, x2: 372.95275591, y2: 550.92913386, lineWidth: 1 }, //Rigth line
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
},
|
|
41
|
+
info: {
|
|
42
|
+
title: 'ItemDetails',
|
|
43
|
+
},
|
|
44
|
+
header: function (currentPage: any, pageCount: any) {
|
|
45
|
+
return { text: currentPage.toString() + ' of ' + pageCount, alignment: 'right', marginRight: 7, fontSize: 8, marginTop: 2 };
|
|
46
|
+
},
|
|
47
|
+
// footer: {
|
|
48
|
+
// columns: [
|
|
49
|
+
// {
|
|
50
|
+
// text: Item.Entity.CName, bold: 'true'
|
|
51
|
+
// },
|
|
52
|
+
// { text: Item.Entity.CName, alignment: 'right' }
|
|
53
|
+
// ]
|
|
54
|
+
// },
|
|
55
|
+
// pageMargins: [10, 15, 10, 15],
|
|
56
|
+
pageMargins: [10, 20, 10, 20],
|
|
57
|
+
pageSize: {
|
|
58
|
+
width: 377.95275591,
|
|
59
|
+
height: 566.92913386
|
|
60
|
+
},
|
|
61
|
+
content: [
|
|
62
|
+
// SharedPDFService.MainHeading(CheckListData.Entity.CName, CheckListData.Entity.Header, CheckListData.Image, CheckListData.HColor, null),
|
|
63
|
+
// SharedPDFService.GetPrintType('INSPECTION'),
|
|
64
|
+
// SharedPDFService.HeaderAfterLine(),
|
|
65
|
+
this.ChangeTableFormat(Item.Item, custom, txt),
|
|
66
|
+
|
|
67
|
+
{stack: [SharedPDFService.MainHeading(Item.Entity.CName, Item.Entity, Image, Item.AColor, null)], marginTop:15},
|
|
68
|
+
|
|
69
|
+
{stack: [this.GetHeader(Item.Entity, Item.HColor)], marginTop:15}
|
|
70
|
+
|
|
71
|
+
// this.TableCreation(Item.Item),
|
|
72
|
+
// this.CheckListTable(CheckListData.Sections)
|
|
73
|
+
],
|
|
74
|
+
styles: SharedPDFService.GetStyles()
|
|
75
|
+
};
|
|
76
|
+
// return dd;
|
|
77
|
+
pdfMake.createPdf(dd).open();
|
|
78
|
+
// this.PrintFile = TrUtils.Stringify(dd);
|
|
79
|
+
// pdfMake.createPdf(dd).getDataUrl((DataURL: any) => {
|
|
80
|
+
// document.getElementById('pdf').setAttribute('src', DataURL);
|
|
81
|
+
// });
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
static GetHeader(Entity: any, HColor: string) {
|
|
85
|
+
let headerstyle: string;
|
|
86
|
+
if (Entity.Header === 1) {
|
|
87
|
+
headerstyle = 'ws_adrs_center';
|
|
88
|
+
} else {
|
|
89
|
+
headerstyle = 'ws_adrs_left';
|
|
90
|
+
}
|
|
91
|
+
let SubHeader: any = [
|
|
92
|
+
{ text: '' + Entity.Adrs1 + '', style: [headerstyle], fontSize:10 },
|
|
93
|
+
{ text: '' + Entity.City + SharedPDFService.getPinCode(Entity.PIN) + ', ' + 'Ph: ' + Entity.Phone, style: headerstyle, fontSize:10 },
|
|
94
|
+
{ text: '' + SharedPDFService.GetEmail(Entity.Email) + '', style: headerstyle, fontSize:10 },
|
|
95
|
+
// { text: 'GSTIN:' + Entity.GSTIN + ', ' + 'PAN: ' + Entity.PAN, style: headerstyle },
|
|
96
|
+
|
|
97
|
+
];
|
|
98
|
+
if (!TrUtils.IsEmpty(Entity.Adrs2)) {
|
|
99
|
+
SubHeader.splice(1, 0, { text: '' + Entity.Adrs2 + '', style: [headerstyle], fontSize:10 });
|
|
100
|
+
}
|
|
101
|
+
// if (!TrUtils.IsEmpty(Entity.TLine)) {
|
|
102
|
+
// SubHeader.unshift({ text: this.GetTagLine(Entity.TLine), fontSize: 10, bold: true, color: HColor, margin: [0, 0, 0, 2] });
|
|
103
|
+
// }
|
|
104
|
+
|
|
105
|
+
// if (!TrUtils.IsEmpty(Entity.GSTIN) || !TrUtils.IsEmpty(Entity.PAN)) {
|
|
106
|
+
// let Data: any = '';
|
|
107
|
+
// if (!TrUtils.IsEmpty(Entity.GSTIN)) {
|
|
108
|
+
// Data = 'GSTIN:' + Entity.GSTIN;
|
|
109
|
+
// }
|
|
110
|
+
// if (!TrUtils.IsEmpty(Entity.GSTIN) && !TrUtils.IsEmpty(Entity.PAN)) {
|
|
111
|
+
// Data = Data + ', ';
|
|
112
|
+
// }
|
|
113
|
+
// if (!TrUtils.IsEmpty(Entity.PAN)) {
|
|
114
|
+
// Data = Data + 'PAN:' + Entity.PAN;
|
|
115
|
+
// }
|
|
116
|
+
// SubHeader.push({ text: Data, style: headerstyle, fontSize: this.TermsandCond });
|
|
117
|
+
// }
|
|
118
|
+
// if (Entity.GSTType === 2) {
|
|
119
|
+
// SubHeader.push({ text: '* under composition scheme', fontSize: this.TermsandCond });
|
|
120
|
+
// }
|
|
121
|
+
return SubHeader;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
static ChangeTableFormat(Item: any, custom: boolean, txt: string) {
|
|
125
|
+
if (txt === 'New') {
|
|
126
|
+
return [{ svg: this.textToSvgBarcode(Item.MPN).svg, alignment: 'center' },
|
|
127
|
+
{
|
|
128
|
+
alignment: 'center',
|
|
129
|
+
marginTop: 10,
|
|
130
|
+
columns: [{ text: 'GSM : ' + Item.GSM, bold: true, marginTop: 25 }, { stack: [{ text: 'QC : Ok', bold: true, lineHeight: 1.7 }, { text: 'Mil : ' + Item.Mil, bold: true }] }]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
alignment: 'center',
|
|
134
|
+
marginTop: 10,
|
|
135
|
+
stack: [{ text: 'SIZE(mm) : ' + Item.Size, bold: true, lineHeight: 1.7 },
|
|
136
|
+
{ text: 'GROSS Wt(kg) : ' + Item.GWt, bold: true, lineHeight: 1.7 },
|
|
137
|
+
{ text: 'Net Wt(kg) : ' + Item.NWt, bold: true, lineHeight: 1.7 },
|
|
138
|
+
{ text: 'No.of Joins : 2', bold: true, lineHeight: 1.7 }
|
|
139
|
+
]
|
|
140
|
+
}]
|
|
141
|
+
} else {
|
|
142
|
+
return {
|
|
143
|
+
stack: [{ svg: this.textToSvgBarcode(Item.MPN).svg, alignment: 'center', marginTop: 20}, {
|
|
144
|
+
style: 'tableExample',
|
|
145
|
+
marginLeft: custom ? 180 : 238,
|
|
146
|
+
marginTop: 20,
|
|
147
|
+
fontSize:10,
|
|
148
|
+
table: {
|
|
149
|
+
marginTop: 15,
|
|
150
|
+
widths: [50, 50],
|
|
151
|
+
body: [[{ text: 'QC', marginTop:7, marginBottom:7 }, { text: '' , marginTop:7, marginBottom:7}]]
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
this.TableCreation(Item)
|
|
155
|
+
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
static TableCreation(Item: any) {
|
|
162
|
+
return {
|
|
163
|
+
style: 'tableExample',
|
|
164
|
+
// marginRight: 5,
|
|
165
|
+
fontSize:10,
|
|
166
|
+
table: {
|
|
167
|
+
widths: ['auto', '*', '*', '*'],
|
|
168
|
+
body: [
|
|
169
|
+
[{ text: 'GSM', marginTop:7, marginBottom:7}, { text: Item.GSM, marginTop:7, marginBottom:7 }, { text: 'Mil',marginTop:7, marginBottom:7 }, { text: Item.Mil,marginTop:7, marginBottom:7 }],
|
|
170
|
+
[{ text: 'Item Desc', marginTop:7, marginBottom:7 }, { text: Item.Desc, colSpan: 3,marginTop:7, marginBottom:7 }, {}, {}],
|
|
171
|
+
// [{ text: 'Bar Code' }, { image: this.textToBase64Barcode(Item.MPN), colSpan: 3 }, {}, {}],
|
|
172
|
+
[{ text: 'SIZE(mm)', marginTop:7, marginBottom:7 }, { text: Item.Size, colSpan: 3,marginTop:7, marginBottom:7 }, {}, {}],
|
|
173
|
+
[{ text: 'Gross Wt(Kg)', marginTop:7, marginBottom:7 }, { text: Item.GWt, colSpan: 3 ,marginTop:7, marginBottom:7}, {}, {}],
|
|
174
|
+
[{ text: 'Net Wt (Kg)', marginTop:7, marginBottom:7}, { text: Item.NWt, colSpan: 3,marginTop:7, marginBottom:7 }, {}, {}],
|
|
175
|
+
[{ text: 'No.of Joints', marginTop:7, marginBottom:7 }, { text: Item.Join, colSpan: 3,marginTop:7, marginBottom:7 }, {}, {}],
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
static textToSvgBarcode(text: string): any {
|
|
182
|
+
const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
183
|
+
JsBarcode(svgElement, text, { format: "CODE128", width:1.25, height:80 });
|
|
184
|
+
|
|
185
|
+
return { svg: svgElement.outerHTML };
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
static textToBase64Barcode(text: any, custom: boolean) {
|
|
189
|
+
var canvas = document.createElement("canvas");
|
|
190
|
+
JsBarcode(canvas, text, { displayValue: true, height: 80, width: 1 });
|
|
191
|
+
return canvas.toDataURL("image/svg");
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
|
|
2
|
+
import JsBarcode from 'jsbarcode';
|
|
3
|
+
import { SharedPDFService } from '../../shared/shared-pdf.service';
|
|
4
|
+
declare var pdfMake: any;
|
|
5
|
+
|
|
6
|
+
export class ItemDetaisPdf {
|
|
7
|
+
static PrintFile: any;
|
|
8
|
+
|
|
9
|
+
static ItemDetailsPrint(Item: any, win: any, custom: boolean, txt: string) {
|
|
10
|
+
let dd = {
|
|
11
|
+
background: function (currentPage:any, pageSize:any) {
|
|
12
|
+
if (custom) {
|
|
13
|
+
return [
|
|
14
|
+
{
|
|
15
|
+
canvas: [
|
|
16
|
+
{ type: 'line', x1: 5, y1: 5, x2: 385, y2: 5, lineWidth: 1 }, //Up line
|
|
17
|
+
{ type: 'line', x1: 5, y1: 5, x2: 5, y2: 560, lineWidth: 1 }, //Left line
|
|
18
|
+
{ type: 'line', x1: 5, y1: 560, x2: 385, y2: 560, lineWidth: 1 }, //Bottom line
|
|
19
|
+
{ type: 'line', x1: 385, y1: 5, x2: 385, y2: 560, lineWidth: 1 }, //Rigth line
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
} else {
|
|
26
|
+
return [
|
|
27
|
+
{
|
|
28
|
+
canvas: [
|
|
29
|
+
{ type: 'line', x1: 5, y1: 5, x2: 272, y2: 5, lineWidth: 1 }, //Up line
|
|
30
|
+
{ type: 'line', x1: 5, y1: 5, x2: 5, y2: 420, lineWidth: 1 }, //Left line
|
|
31
|
+
{ type: 'line', x1: 5, y1: 420, x2: 272, y2: 420, lineWidth: 1 }, //Bottom line
|
|
32
|
+
{ type: 'line', x1: 272, y1: 5, x2: 272, y2: 420, lineWidth: 1 }, //Rigth line
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
},
|
|
40
|
+
info: {
|
|
41
|
+
title: 'ItemDetails',
|
|
42
|
+
},
|
|
43
|
+
header: function (currentPage: any, pageCount: any) {
|
|
44
|
+
return { text: currentPage.toString() + ' of ' + pageCount, alignment: 'right', marginRight: 7, fontSize: 8, marginTop: 2 };
|
|
45
|
+
},
|
|
46
|
+
footer: {
|
|
47
|
+
columns: [
|
|
48
|
+
{
|
|
49
|
+
text: Item.Entity.CName, bold: 'true'
|
|
50
|
+
},
|
|
51
|
+
{ text: Item.Entity.CName, alignment: 'right' }
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
// pageMargins: [10, 15, 10, 15],
|
|
55
|
+
pageMargins: [10, 10, 10, 10],
|
|
56
|
+
pageSize: custom ? 'B7' : {
|
|
57
|
+
width: 277,
|
|
58
|
+
height: 435
|
|
59
|
+
},
|
|
60
|
+
content: [
|
|
61
|
+
// SharedPDFService.MainHeading(CheckListData.Entity.CName, CheckListData.Entity.Header, CheckListData.Image, CheckListData.HColor, null),
|
|
62
|
+
SharedPDFService.MainHeading(Item.Entity.CName, Item.Entity, Image, Item.AColor, null),
|
|
63
|
+
SharedPDFService.GetHeader(Item.Entity, Item.HColor),
|
|
64
|
+
// SharedPDFService.GetPrintType('INSPECTION'),
|
|
65
|
+
// SharedPDFService.HeaderAfterLine(),
|
|
66
|
+
this.ChangeTableFormat(Item.Item, custom, txt),
|
|
67
|
+
// this.TableCreation(Item.Item),
|
|
68
|
+
// this.CheckListTable(CheckListData.Sections)
|
|
69
|
+
],
|
|
70
|
+
styles: SharedPDFService.GetStyles()
|
|
71
|
+
};
|
|
72
|
+
// return dd;
|
|
73
|
+
pdfMake.createPdf(dd).open();
|
|
74
|
+
// this.PrintFile = TrUtils.Stringify(dd);
|
|
75
|
+
// pdfMake.createPdf(dd).getDataUrl((DataURL: any) => {
|
|
76
|
+
// document.getElementById('pdf').setAttribute('src', DataURL);
|
|
77
|
+
// });
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static ChangeTableFormat(Item: any, custom: boolean, txt: string) {
|
|
81
|
+
if (txt === 'New') {
|
|
82
|
+
return [{ image: this.textToBase64Barcode(Item.MPN, custom), alignment: 'center' },
|
|
83
|
+
{
|
|
84
|
+
alignment: 'center',
|
|
85
|
+
marginTop: 10,
|
|
86
|
+
columns: [{ text: 'GSM : ' + Item.GSM, bold: true, marginTop: 25 }, { stack: [{ text: 'QC : Ok', bold: true, lineHeight: 1.7 }, { text: 'Mil : ' + Item.Mil, bold: true }] }]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
alignment: 'center',
|
|
90
|
+
marginTop: 10,
|
|
91
|
+
stack: [{ text: 'SIZE(mm) : ' + Item.Size, bold: true, lineHeight: 1.7 },
|
|
92
|
+
{ text: 'GROSS Wt(kg) : ' + Item.GWt, bold: true, lineHeight: 1.7 },
|
|
93
|
+
{ text: 'Net Wt(kg) : ' + Item.NWt, bold: true, lineHeight: 1.7 },
|
|
94
|
+
{ text: 'No.of Joins : 2', bold: true, lineHeight: 1.7 }
|
|
95
|
+
]
|
|
96
|
+
}]
|
|
97
|
+
} else {
|
|
98
|
+
return {
|
|
99
|
+
stack: [{ image: this.textToBase64Barcode(Item.MPN, custom), alignment: 'center' }, {
|
|
100
|
+
style: 'tableExample',
|
|
101
|
+
marginLeft: custom ? 110 : 137,
|
|
102
|
+
marginTop: 20,
|
|
103
|
+
table: {
|
|
104
|
+
marginTop: 10,
|
|
105
|
+
widths: [50, 50],
|
|
106
|
+
body: [[{ text: 'QC', lineHeight: 2 }, { text: '' }]]
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
this.TableCreation(Item)
|
|
110
|
+
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
static TableCreation(Item: any) {
|
|
117
|
+
return {
|
|
118
|
+
style: 'tableExample',
|
|
119
|
+
// marginRight: 5,
|
|
120
|
+
table: {
|
|
121
|
+
widths: ['auto', '*', '*', '*'],
|
|
122
|
+
body: [
|
|
123
|
+
[{ text: 'GSM', lineHeight: 2 }, { text: Item.GSM }, { text: 'Mil' }, { text: Item.Mil }],
|
|
124
|
+
[{ text: 'Item Desc', lineHeight: 2 }, { text: Item.Desc, colSpan: 3 }, {}, {}],
|
|
125
|
+
// [{ text: 'Bar Code' }, { image: this.textToBase64Barcode(Item.MPN), colSpan: 3 }, {}, {}],
|
|
126
|
+
[{ text: 'SIZE(mm)', lineHeight: 2 }, { text: Item.Size, colSpan: 3 }, {}, {}],
|
|
127
|
+
[{ text: 'Gross Wt(Kg)', lineHeight: 2 }, { text: Item.GWt, colSpan: 3 }, {}, {}],
|
|
128
|
+
[{ text: 'Net Wt (Kg)', lineHeight: 2 }, { text: Item.NWt, colSpan: 3 }, {}, {}],
|
|
129
|
+
[{ text: 'No.of Joints', lineHeight: 2 }, { text: '', colSpan: 3 }, {}, {}],
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
static textToBase64Barcode(text: any, custom: boolean) {
|
|
136
|
+
var canvas = document.createElement("canvas");
|
|
137
|
+
JsBarcode(canvas, text, { displayValue: true, height: 40, width: 1 });
|
|
138
|
+
return canvas.toDataURL("image/png");
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
}
|