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,128 @@
|
|
|
1
|
+
|
|
2
|
+
import { SharedPDFService } from '../../shared/shared-pdf.service';
|
|
3
|
+
import { PrintSharedService } from '../../shared/shared-print.service';
|
|
4
|
+
import { TrUtils } from '../../utils/tr-utils';
|
|
5
|
+
export class PackShipPDFService {
|
|
6
|
+
|
|
7
|
+
static FontSize: number = 8;
|
|
8
|
+
|
|
9
|
+
static GetPackagesPrint(ShipmentData: any, numberofCopies: any) {
|
|
10
|
+
// console.log(ShipmentData);
|
|
11
|
+
var contents = [];
|
|
12
|
+
if (TrUtils.IsNull(numberofCopies) || numberofCopies.length === 0) {
|
|
13
|
+
contents.push(
|
|
14
|
+
this.CommonHeaderDetails(ShipmentData, null),
|
|
15
|
+
this.GetPackageData(),
|
|
16
|
+
{ text: 'Items', alignment: 'start', fontSize: 14, bold: true },
|
|
17
|
+
this.PrepareItemsTable(ShipmentData),
|
|
18
|
+
);
|
|
19
|
+
} else {
|
|
20
|
+
numberofCopies.forEach((text: any, index: any) => {
|
|
21
|
+
contents.push(
|
|
22
|
+
this.CommonHeaderDetails(ShipmentData, text),
|
|
23
|
+
{ text: 'Items', alignment: 'start', fontSize: 14, bold: true },
|
|
24
|
+
this.PrepareItemsTable(ShipmentData));
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
var dd = {
|
|
28
|
+
info: {
|
|
29
|
+
title: this.GetFileName(ShipmentData),
|
|
30
|
+
},
|
|
31
|
+
background: function (currentPage: any, pageSize: any) {
|
|
32
|
+
return SharedPDFService.GetWatermarkImage(ShipmentData.Image, pageSize, ShipmentData.Entity.Wmark);
|
|
33
|
+
},
|
|
34
|
+
header: function (currentPage: any, pageCount: any) {
|
|
35
|
+
return { text: currentPage.toString() + ' of ' + pageCount, alignment: 'right', marginRight: 7, fontSize: 8, marginTop: 2 };
|
|
36
|
+
},
|
|
37
|
+
pageMargins: [10, 15, 10, 15],
|
|
38
|
+
content: contents,
|
|
39
|
+
defaultStyle: {
|
|
40
|
+
fontSize: 10,
|
|
41
|
+
},
|
|
42
|
+
styles: SharedPDFService.GetStyles()
|
|
43
|
+
};
|
|
44
|
+
return dd;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static GetPackageData() {
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static PrepareItemsTable(ShipmentData: any) {
|
|
52
|
+
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
style: 'tableExample',
|
|
56
|
+
// marginLeft: 20,
|
|
57
|
+
table: {
|
|
58
|
+
widths: [500, 30],
|
|
59
|
+
// headerRows: 2,
|
|
60
|
+
body: this.buildTableForCustomerLabor(ShipmentData.Items)
|
|
61
|
+
},
|
|
62
|
+
layout: PrintSharedService.LayOutStyleanother()
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
// return {
|
|
66
|
+
// style: 'textcust',
|
|
67
|
+
// marginLeft: 5,
|
|
68
|
+
// columns: [
|
|
69
|
+
// // this.GetPackageDetails()
|
|
70
|
+
// ],
|
|
71
|
+
// };
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
static buildTableForCustomerLabor(Items: any) {
|
|
75
|
+
// console.log(Items);
|
|
76
|
+
var body: any = [];
|
|
77
|
+
let Columns: any = this.GetColumns();
|
|
78
|
+
body.push(Columns);
|
|
79
|
+
// console.log('Columns', Columns);
|
|
80
|
+
Items.forEach((item: any) => {
|
|
81
|
+
body.push([{ text: item.Desc }, { text: item.Qty + ' ' + item.UoM }])
|
|
82
|
+
});
|
|
83
|
+
return body;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static GetColumns() {
|
|
87
|
+
let headersNames: any = [
|
|
88
|
+
{ text: 'Description', style: 'tableheader', Field: 'Desc' },
|
|
89
|
+
{ text: 'Qty', style: 'tableheader', Field: 'Qty' },
|
|
90
|
+
];
|
|
91
|
+
return headersNames;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
static GetPackageDetails(Packages: any) {
|
|
95
|
+
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
static CommonHeaderDetails(ROPrintData: any, text: any) {
|
|
99
|
+
return [
|
|
100
|
+
this.GetMainHeaderDetails(ROPrintData.Entity, ROPrintData.HeaderName, ROPrintData.Image, ROPrintData.HColor, ROPrintData.AColor, text),
|
|
101
|
+
SharedPDFService.GetSOCustomerAndOthDetails(ROPrintData._id, ROPrintData.CrDate, ROPrintData.PrDate,
|
|
102
|
+
ROPrintData.PrintType, ROPrintData.For, ROPrintData.SurName, ROPrintData.SurPhone, ROPrintData.Type, ROPrintData.SurEmail, ROPrintData.ShippmentTo,
|
|
103
|
+
ROPrintData.PolNo, ROPrintData.PolType, ROPrintData.Customer, ROPrintData.Settings, ROPrintData.RefNo,
|
|
104
|
+
ROPrintData.IsPackage, ROPrintData.PackId, ROPrintData.PackedDate, ROPrintData.ShipId, ROPrintData.ShippedDate),
|
|
105
|
+
SharedPDFService.GetOwnerDetails(ROPrintData.Cust, ROPrintData.Type, ROPrintData.For),
|
|
106
|
+
SharedPDFService.CustomerAndVehicleDetailsAfterLine(),
|
|
107
|
+
SharedPDFService.GetDisplayTable(),
|
|
108
|
+
];
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
static GetMainHeaderDetails(Entity: any, HeaderName: any, Image: any, HColor: any, AColor: any, text: any) {
|
|
112
|
+
return [
|
|
113
|
+
// SharedPDFService.MainHeading(Entity.CName, Entity.Header, Image, HColor, text),
|
|
114
|
+
SharedPDFService.GetMainHeader(Entity, Image, AColor, HColor, text),
|
|
115
|
+
SharedPDFService.GetPrintType(HeaderName),
|
|
116
|
+
SharedPDFService.HeaderAfterLine()
|
|
117
|
+
];
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
static GetFileName(ROPrintData: any) {
|
|
121
|
+
let fileName: string = ROPrintData.HeaderName;
|
|
122
|
+
if (!TrUtils.IsNull(ROPrintData.Product) && !TrUtils.IsEmpty(ROPrintData.Product.RegNo)) {
|
|
123
|
+
fileName = fileName + '-' + ROPrintData.Product.RegNo;
|
|
124
|
+
}
|
|
125
|
+
return fileName;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
}
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import { PrintSharedService } from "../../shared/shared-print.service";
|
|
2
|
+
import { MyDate } from "../../utils/my-date";
|
|
3
|
+
import { TrUtils } from "../../utils/tr-utils";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export class PackShipPrintService {
|
|
8
|
+
|
|
9
|
+
static GetShipmentPrintInfo(OriginalInvoiceData: any, OriginalEntityData: any, image: any, PackShipData: any, ItemsList: any, IsPackage: boolean) {
|
|
10
|
+
|
|
11
|
+
// console.log(ItemsList);
|
|
12
|
+
let ForInsurance: boolean = !TrUtils.IsNull(OriginalInvoiceData.ShipTo.InsId);
|
|
13
|
+
|
|
14
|
+
let InvoicePrintData: any = {};
|
|
15
|
+
|
|
16
|
+
let argInvoiceData = TrUtils.Stringify(OriginalInvoiceData);
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
InvoicePrintData.Entity = PrintSharedService.GetFormattedEntityDataForPrint(OriginalEntityData, OriginalInvoiceData.Type, OriginalInvoiceData);
|
|
20
|
+
|
|
21
|
+
InvoicePrintData = PrintSharedService.GetEntityHeaderStyles(InvoicePrintData, OriginalEntityData, image);
|
|
22
|
+
|
|
23
|
+
InvoicePrintData = this.GetInvoiceOtherDetailsForPrint(InvoicePrintData, argInvoiceData, PackShipData, IsPackage);
|
|
24
|
+
|
|
25
|
+
InvoicePrintData.Settings = TrUtils.Stringify(argInvoiceData.Settings);
|
|
26
|
+
|
|
27
|
+
InvoicePrintData.Items = TrUtils.Stringify(ItemsList);
|
|
28
|
+
|
|
29
|
+
InvoicePrintData = this.GetFormattedProductDataForPrint(argInvoiceData, InvoicePrintData);
|
|
30
|
+
|
|
31
|
+
InvoicePrintData = this.GetBillNameForInvoicePrint(argInvoiceData, InvoicePrintData);
|
|
32
|
+
InvoicePrintData = this.GetShipToForSOPrint(argInvoiceData, InvoicePrintData);
|
|
33
|
+
InvoicePrintData = this.GetPackShipHeading(InvoicePrintData, IsPackage);
|
|
34
|
+
|
|
35
|
+
return InvoicePrintData;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
static GetPackShipHeading(InvoicePrintData: any, IsPackage: boolean) {
|
|
39
|
+
if (IsPackage) {
|
|
40
|
+
InvoicePrintData.HeaderName = 'Package';
|
|
41
|
+
} else {
|
|
42
|
+
InvoicePrintData.HeaderName = 'Shipment';
|
|
43
|
+
}
|
|
44
|
+
return InvoicePrintData;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static GetPrintConditionsBasedOnInput(InvoicePrintData: any, IncludeGST: boolean, ConsolidateGST: boolean,
|
|
48
|
+
ForInsurance: boolean, SType: any, OriginalInvoiceData: any, IsProforma: boolean) {
|
|
49
|
+
|
|
50
|
+
InvoicePrintData.ForInsurance = ForInsurance;
|
|
51
|
+
InvoicePrintData.For = 'SO';
|
|
52
|
+
InvoicePrintData.IncludeGST = IncludeGST;
|
|
53
|
+
InvoicePrintData.ConsolidateGST = ConsolidateGST;
|
|
54
|
+
|
|
55
|
+
InvoicePrintData.ShowAccParts = false;
|
|
56
|
+
|
|
57
|
+
InvoicePrintData.ShowIGST = (TrUtils.IsNull(SType) || (SType === 'Intra')) ? false : true;
|
|
58
|
+
|
|
59
|
+
InvoicePrintData.ShowTaxColumn = (IncludeGST && !ConsolidateGST) ? true : false;
|
|
60
|
+
// InvoicePrintData.ShowDiscountColumn = (!ForInsurance && !ConsolidateGST) ? true : false;
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
InvoicePrintData.PrDate = TrUtils.IsNull(OriginalInvoiceData.PrDate) ? '' : MyDate.ConvertUTCDateToReadable(OriginalInvoiceData.PrDate);
|
|
64
|
+
|
|
65
|
+
return InvoicePrintData;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
static GetInvoiceOtherDetailsForPrint(InvoicePrintData: any, OriginalInvoiceData: any, PackShipData: any, IsPackage: boolean) {
|
|
69
|
+
InvoicePrintData.Type = OriginalInvoiceData.Type;
|
|
70
|
+
InvoicePrintData._id = OriginalInvoiceData.Code;
|
|
71
|
+
InvoicePrintData.Sts = OriginalInvoiceData.Sts;
|
|
72
|
+
InvoicePrintData.CrDate = MyDate.ConvertUTCDateToReadable(OriginalInvoiceData.CrDate);
|
|
73
|
+
InvoicePrintData.RefNo = OriginalInvoiceData.RefNo;
|
|
74
|
+
InvoicePrintData.IsPackage = IsPackage;
|
|
75
|
+
if (IsPackage) {
|
|
76
|
+
InvoicePrintData.PackId = PackShipData.Id;
|
|
77
|
+
InvoicePrintData.PackedDate = MyDate.ConvertUTCDateToReadable(PackShipData.Date);
|
|
78
|
+
} else {
|
|
79
|
+
InvoicePrintData.ShipId = PackShipData.Id;
|
|
80
|
+
InvoicePrintData.ShippedDate = MyDate.ConvertUTCDateToReadable(PackShipData.Date);
|
|
81
|
+
}
|
|
82
|
+
return InvoicePrintData;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
static GetFormattedProductDataForPrint(OriginalInvoiceData: any, InvoicePrintData: any) {
|
|
86
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.Prod)) {
|
|
87
|
+
InvoicePrintData.Product = OriginalInvoiceData.Prod;
|
|
88
|
+
if (TrUtils.IsNull(InvoicePrintData.Product.VIN)) {
|
|
89
|
+
InvoicePrintData.Product.VIN = '';
|
|
90
|
+
}
|
|
91
|
+
if (TrUtils.IsNull(InvoicePrintData.Product.RegNo)) {
|
|
92
|
+
InvoicePrintData.Product.RegNo = '';
|
|
93
|
+
}
|
|
94
|
+
if (TrUtils.IsNull(InvoicePrintData.Product.EngNo)) {
|
|
95
|
+
InvoicePrintData.Product.EngNo = '';
|
|
96
|
+
}
|
|
97
|
+
InvoicePrintData.MIn = OriginalInvoiceData.Prod.MIn;
|
|
98
|
+
InvoicePrintData.MOut = OriginalInvoiceData.Prod.MOut;
|
|
99
|
+
}
|
|
100
|
+
return InvoicePrintData;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
static GetShipToForSOPrint(OriginalInvoiceData: any, InvoicePrintData: any) {
|
|
104
|
+
let Customer: any = {};
|
|
105
|
+
Customer.Name = OriginalInvoiceData.ShipTo.Name;
|
|
106
|
+
Customer.Adrs = [];
|
|
107
|
+
Customer.Cons = [];
|
|
108
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.ShipTo.Adrs)) {
|
|
109
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.A1);
|
|
110
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Adrs.A2)) {
|
|
111
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.A2);
|
|
112
|
+
}
|
|
113
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Adrs.Ct)) {
|
|
114
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.Ct);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
Customer.GSTIN = OriginalInvoiceData.ShipTo.GSTIN;
|
|
118
|
+
|
|
119
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Ph)) {
|
|
120
|
+
Customer.Cons = [
|
|
121
|
+
{
|
|
122
|
+
Type: 'M',
|
|
123
|
+
No: OriginalInvoiceData.ShipTo.Ph
|
|
124
|
+
}
|
|
125
|
+
];
|
|
126
|
+
}
|
|
127
|
+
InvoicePrintData.ShippmentTo = Customer;
|
|
128
|
+
|
|
129
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.ShipTo.InsId)) {
|
|
130
|
+
InvoicePrintData.Cust = this.GetCustomerDetails(OriginalInvoiceData);
|
|
131
|
+
}
|
|
132
|
+
return InvoicePrintData;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
static GetBillNameForInvoicePrint(OriginalInvoiceData: any, InvoicePrintData: any) {
|
|
136
|
+
// console.log('Adress', OriginalInvoiceData);
|
|
137
|
+
let Customer: any = {};
|
|
138
|
+
Customer.Name = OriginalInvoiceData.ShipTo.Name;
|
|
139
|
+
Customer.Adrs = [];
|
|
140
|
+
Customer.Cons = [];
|
|
141
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.ShipTo.Adrs)) {
|
|
142
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.A1);
|
|
143
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Adrs.A2)) {
|
|
144
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.A2);
|
|
145
|
+
}
|
|
146
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Adrs.Ct)) {
|
|
147
|
+
Customer.Adrs.push(OriginalInvoiceData.ShipTo.Adrs.Ct);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
Customer.GSTIN = OriginalInvoiceData.ShipTo.GSTIN;
|
|
151
|
+
|
|
152
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.ShipTo.Ph)) {
|
|
153
|
+
Customer.Cons = [
|
|
154
|
+
{
|
|
155
|
+
Type: 'M',
|
|
156
|
+
No: OriginalInvoiceData.ShipTo.Ph
|
|
157
|
+
}
|
|
158
|
+
];
|
|
159
|
+
}
|
|
160
|
+
InvoicePrintData.Customer = Customer;
|
|
161
|
+
|
|
162
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.ShipTo.InsId)) {
|
|
163
|
+
InvoicePrintData.Cust = this.GetCustomerDetails(OriginalInvoiceData);
|
|
164
|
+
}
|
|
165
|
+
return InvoicePrintData;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
static GetCustomerDetails(OriginalInvoiceData: any) {
|
|
169
|
+
let Customer: any = {};
|
|
170
|
+
Customer.Name = this.GetBillToName(OriginalInvoiceData.Cust.Title, OriginalInvoiceData.Cust.Name);
|
|
171
|
+
Customer.Cons = [];
|
|
172
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.Cust.Ph)) {
|
|
173
|
+
Customer.Cons = [
|
|
174
|
+
{
|
|
175
|
+
Type: 'M',
|
|
176
|
+
No: OriginalInvoiceData.Cust.Ph
|
|
177
|
+
}
|
|
178
|
+
];
|
|
179
|
+
}
|
|
180
|
+
Customer.GSTIN = OriginalInvoiceData.Cust.GSTIN;
|
|
181
|
+
Customer.Adrs = [];
|
|
182
|
+
if (!TrUtils.IsNull(OriginalInvoiceData.Cust.Adrs)) {
|
|
183
|
+
Customer.Adrs.push(OriginalInvoiceData.Cust.Adrs.A1);
|
|
184
|
+
if (!TrUtils.IsEmpty(OriginalInvoiceData.Cust.Adrs.A2)) {
|
|
185
|
+
Customer.Adrs.push(OriginalInvoiceData.Cust.Adrs.A2);
|
|
186
|
+
}
|
|
187
|
+
Customer.Adrs.push(OriginalInvoiceData.Cust.Adrs.Ct);
|
|
188
|
+
}
|
|
189
|
+
Customer.ConName = OriginalInvoiceData.Cust.ConName;
|
|
190
|
+
Customer.ConPh = OriginalInvoiceData.Cust.ConPhone;
|
|
191
|
+
return Customer;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
static GetBillToName(Title: any, Name: string) {
|
|
195
|
+
return TrUtils.IsEmpty(Title) ? Name : Title + ' ' + Name;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
}
|