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,417 @@
|
|
|
1
|
+
import { differenceInYears } from "date-fns";
|
|
2
|
+
import { SharedPDFService } from "../../shared/shared-pdf.service";
|
|
3
|
+
import { MyDate } from "../../utils/my-date";
|
|
4
|
+
import { TrUtils } from "../../utils/tr-utils";
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
export class ConsultationPDFService {
|
|
9
|
+
|
|
10
|
+
static GetConsultationPrint(CnstData: any, Remarks: any) {
|
|
11
|
+
let dd: any = {
|
|
12
|
+
info: {
|
|
13
|
+
title: 'Consultation',
|
|
14
|
+
},
|
|
15
|
+
footer: SharedPDFService.FooterContent(CnstData),
|
|
16
|
+
|
|
17
|
+
header: function (currentPage: any, pageCount: any, pageSize: any) {
|
|
18
|
+
return { text: currentPage.toString() + ' of ' + pageCount, alignment: 'right', marginRight: 25, fontSize: 8, marginTop: 2 };
|
|
19
|
+
},
|
|
20
|
+
pageMargins: [35, 15, 15, 80],
|
|
21
|
+
pageSize: 'A4',
|
|
22
|
+
content: [
|
|
23
|
+
// { text: CnstData.Entity.CName, style: ['headerstyle'], alignment: 'center', fontSize: 20 },
|
|
24
|
+
// { text: 'Expiring Drugs (' + this.GetDate(DatesDetails) + ')', style: ['headerstyle'], alignment: 'center', fontSize: 12 },
|
|
25
|
+
this.GetMainHeaderDetails(CnstData, CnstData.Entity, CnstData.HeaderName, CnstData.Image, CnstData.HColor, CnstData.AColor, null),
|
|
26
|
+
{
|
|
27
|
+
columns: [this.GetHeight(CnstData),
|
|
28
|
+
this.GetWeight(CnstData),
|
|
29
|
+
this.GetBP(CnstData), this.GetTemperature(CnstData)
|
|
30
|
+
, this.GetSPO2(CnstData), this.GetPulse(CnstData)], fontSize: 8, marginTop: 5
|
|
31
|
+
},
|
|
32
|
+
this.GetComplaintsTable(CnstData.Comps, 'Complaints:'),
|
|
33
|
+
this.GetDiagnosisTable(CnstData.Diags, 'Diagnosis:'),
|
|
34
|
+
this.GetRxTable(CnstData.Rx, Remarks),
|
|
35
|
+
this.GetComplaintsTable(CnstData.Tests, 'Lab Investigations:'),
|
|
36
|
+
this.GetDiagnosisTable(CnstData.Advice, 'Advices:'),
|
|
37
|
+
|
|
38
|
+
// { text: 'Complaints:', bold: true, marginTop: 5, fontSize: 12 },
|
|
39
|
+
// { text: this.GetComplaints(CnstData.Comps), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
40
|
+
// { text: 'Diagnosis:', bold: true, marginTop: 5, fontSize: 12 },
|
|
41
|
+
// { text: this.GetDiagnosis(CnstData.Diags), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
42
|
+
// { text: 'Rx:', bold: true, fontSize: 12 },
|
|
43
|
+
// this.GetItemsTable(CnstData.Rx, Remarks),
|
|
44
|
+
// { text: 'Lab Investigations:', bold: true, marginTop: 5, fontSize: 12 },
|
|
45
|
+
// { text: this.GetComplaints(CnstData.Tests), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
46
|
+
// { text: 'Advices:', bold: true, marginTop: 5, fontSize: 12 },
|
|
47
|
+
// { text: this.GetDiagnosis(CnstData.Advice), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
48
|
+
this.CustomSection(CnstData.Sections)
|
|
49
|
+
// this.GetSignatures(CnstData.Entity.CName, CnstData.Type, CnstData.For),
|
|
50
|
+
],
|
|
51
|
+
styles: {
|
|
52
|
+
temp2header: {
|
|
53
|
+
fontSize: 15,
|
|
54
|
+
bold: true,
|
|
55
|
+
alignment: 'left',
|
|
56
|
+
// margin: [0, 10, 0, 0],
|
|
57
|
+
},
|
|
58
|
+
headerstyle: {
|
|
59
|
+
fontSize: 9
|
|
60
|
+
},
|
|
61
|
+
Sign: {
|
|
62
|
+
fontSize: 8,
|
|
63
|
+
margin: [0, 30, 0, 5]
|
|
64
|
+
},
|
|
65
|
+
forCompany: {
|
|
66
|
+
marginRight: 5,
|
|
67
|
+
marginTop: 10,
|
|
68
|
+
fontSize: 9,
|
|
69
|
+
alignment: 'left'
|
|
70
|
+
},
|
|
71
|
+
tableheader: {
|
|
72
|
+
bold: true,
|
|
73
|
+
margin: [0, 1, 0, 5],
|
|
74
|
+
alignment: 'center'
|
|
75
|
+
},
|
|
76
|
+
tableheader1: {
|
|
77
|
+
bold: true,
|
|
78
|
+
margin: [0, 2, 0, 2],
|
|
79
|
+
alignment: 'center'
|
|
80
|
+
},
|
|
81
|
+
tableExample: {
|
|
82
|
+
fontSize: 9
|
|
83
|
+
},
|
|
84
|
+
ws_adrs_left: {
|
|
85
|
+
fontSize: 8,
|
|
86
|
+
alignment: 'left',
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
};
|
|
91
|
+
return dd;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
static GetRxTable(Rx: any, Remarks: any) {
|
|
96
|
+
if (!TrUtils.IsNull(Rx) && Rx.length !== 0) {
|
|
97
|
+
return {
|
|
98
|
+
stack: [
|
|
99
|
+
{ text: 'Rx:', bold: true, fontSize: 12 },
|
|
100
|
+
this.GetItemsTable(Rx, Remarks),]
|
|
101
|
+
}
|
|
102
|
+
} else {
|
|
103
|
+
return {};
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
static GetDiagnosisTable(diagnosis: any, heading: any) {
|
|
108
|
+
if (!TrUtils.IsNull(diagnosis) && diagnosis.length !== 0) {
|
|
109
|
+
return {
|
|
110
|
+
stack: [
|
|
111
|
+
{ text: heading, bold: true, marginTop: 5, fontSize: 12 },
|
|
112
|
+
{ text: this.GetDiagnosis(diagnosis), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
} else {
|
|
116
|
+
return {};
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
static GetComplaintsTable(complaints: any, heading: any) {
|
|
121
|
+
if (!TrUtils.IsNull(complaints) && complaints.length !== 0) {
|
|
122
|
+
return {
|
|
123
|
+
stack: [
|
|
124
|
+
{ text: heading, bold: true, marginTop: 5, fontSize: 12 },
|
|
125
|
+
{ text: this.GetComplaints(complaints), fontSize: 9, marginTop: 5, marginBottom: 10 },
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
} else {
|
|
129
|
+
return {};
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
static CustomSection(sections: any) {
|
|
134
|
+
let Sec: any = [];
|
|
135
|
+
sections?.forEach((sec: any) => {
|
|
136
|
+
Sec.push({ text: sec.Name + ' :', bold: true, style: 'header', marginTop: 5, marginBottom: 5 });
|
|
137
|
+
let UnOrderlist: any = [];
|
|
138
|
+
sec.Items?.forEach((item: any) => {
|
|
139
|
+
UnOrderlist.push({
|
|
140
|
+
style: 'tableExample',
|
|
141
|
+
table: {
|
|
142
|
+
body: [
|
|
143
|
+
[{ text: item.Desc, bold: true }, '-', { text: item.Notes }]
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
layout: 'noBorders'
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
Sec.push({ ul: UnOrderlist, fontSize: 10 });
|
|
151
|
+
});
|
|
152
|
+
return Sec;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
static GetWeight(CnstData: any) {
|
|
156
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.Weight) && !TrUtils.IsNull(CnstData?.Vitals?.Weight?.V)) {
|
|
157
|
+
return { text: 'Weight :' + CnstData?.Vitals?.Weight?.V + ' kg', Width: 80 };
|
|
158
|
+
} else {
|
|
159
|
+
return { text: 'Weight :', Width: 80 };
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
static GetTemperature(CnstData: any) {
|
|
164
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.Temp) && !TrUtils.IsNull(CnstData?.Vitals?.Temp?.V)) {
|
|
165
|
+
return { text: 'Temperature :' + CnstData?.Vitals?.Temp?.V + ' F', Width: 80 };
|
|
166
|
+
} else {
|
|
167
|
+
return { text: 'Temperature :', Width: 80 };
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
static GetSPO2(CnstData: any) {
|
|
172
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.SPO2) && !TrUtils.IsNull(CnstData?.Vitals?.SPO2?.V)) {
|
|
173
|
+
return { text: 'SPO2 :' + CnstData?.Vitals?.SPO2?.V + ' mmHg', Width: 80 };
|
|
174
|
+
} else {
|
|
175
|
+
return { text: 'SPO2 :', Width: 80 };
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
static GetPulse(CnstData: any) {
|
|
180
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.Pulse) && !TrUtils.IsNull(CnstData?.Vitals?.Pulse?.V)) {
|
|
181
|
+
return { text: 'Pulse :' + CnstData?.Vitals?.Pulse?.V + ' bpm', Width: 80 };
|
|
182
|
+
} else {
|
|
183
|
+
return { text: 'Pulse :', Width: 80 };
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
static GetHeight(CnstData: any) {
|
|
188
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.Height) && !TrUtils.IsNull(CnstData?.Vitals?.Height?.V)) {
|
|
189
|
+
return { text: 'Height :' + CnstData?.Vitals?.Height?.V + ' '+ CnstData?.Vitals?.Height?.U, Width: 80 };
|
|
190
|
+
} else {
|
|
191
|
+
return { text: 'Height :', Width: 80 };
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
static GetBP(CnstData: any) {
|
|
196
|
+
if (!TrUtils.IsNull(CnstData?.Vitals?.BP) && !TrUtils.IsNull(CnstData?.Vitals?.Height?.U)) {
|
|
197
|
+
return { text: 'BP :' + CnstData?.Vitals?.BP?.V + ' mmHg', Width: 80 };
|
|
198
|
+
} else {
|
|
199
|
+
return { text: 'BP :', Width: 80 };
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
static GetMainHeaderDetails(CnstData: any, Entity: any, HeaderName: any, Image: any, HColor: any, AColor: any, text: any) {
|
|
204
|
+
return [
|
|
205
|
+
this.GetHeaderBasedOnCondition(CnstData, Entity, HeaderName, Image, HColor, AColor, text),
|
|
206
|
+
SharedPDFService.HeaderAfterLine1(),
|
|
207
|
+
{
|
|
208
|
+
columns: [{
|
|
209
|
+
stack: [{ text: CnstData.Pat.Name, fontSize: 10, marginTop: 5, bold: true },
|
|
210
|
+
{ text: CnstData.Pat.Code + ' | ' + this.DifferenceInYears(CnstData.Pat.DOB, Entity.User.TZ) + ' | ' + CnstData.Pat.Sex + this.GetPhoneNumber(CnstData?.Pat?.Ph), fontSize: 10, marginBottom: 5 }]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
stack: [
|
|
214
|
+
{ text: this.GetCnsltDate(CnstData, Entity.User), style: ['headerstyle'] }], marginTop: 5, width: 120
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
// { text: CnstData.Pat.Name, fontSize: 10, marginTop: 5 },
|
|
219
|
+
// { text: CnstData.Pat.Code + ' | ' + this.DifferenceInYears(CnstData.Pat.DOB) + ' | ' + CnstData.Pat.Sex + this.GetPhoneNumber(CnstData?.Pat?.Ph), fontSize: 10, marginBottom: 5 },
|
|
220
|
+
];
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
static GetCnsltDate(CnstData: any, User: any) {
|
|
224
|
+
if (!TrUtils.IsNull(CnstData.ClDate)) {
|
|
225
|
+
return MyDate.GetWeekDateAndTime(CnstData.ClDate, User.TZ);
|
|
226
|
+
} else {
|
|
227
|
+
return MyDate.GetWeekDateAndTime(CnstData.CrDate, User.TZ);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
static GetHeaderBasedOnCondition(CnstData: any, Entity: any, HeaderName: any, Image: any, HColor: any, AColor: any, text: any) {
|
|
232
|
+
if (Entity.Header === 2) {
|
|
233
|
+
return {
|
|
234
|
+
columns: [
|
|
235
|
+
SharedPDFService.GetConsultationMainHeader(Entity, null, AColor, HColor, text),
|
|
236
|
+
{
|
|
237
|
+
stack: [{ text: CnstData?.Doc?.Sltn + ' ' + CnstData?.Doc?.Name, fontSize: 15, bold: true, alignment: 'right' },
|
|
238
|
+
{ text: CnstData?.Doc?.Intro1, fontSize: 9, alignment: 'right' },
|
|
239
|
+
{ text: CnstData?.Doc?.Intro2, fontSize: 9, alignment: 'right' },
|
|
240
|
+
{ text: CnstData?.Doc?.Intro3, fontSize: 9, alignment: 'right' },
|
|
241
|
+
{ text: 'Registration ID- ' + CnstData?.Doc?.CounReg, fontSize: 9, alignment: 'right', marginBottom: 5 }], width: '40%', marginTop: 15
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
};
|
|
245
|
+
} else {
|
|
246
|
+
return {
|
|
247
|
+
columns: [SharedPDFService.GetImage(Image, Entity.PrLogo), {
|
|
248
|
+
stack: [{ text: CnstData?.Doc?.Sltn + ' ' + CnstData?.Doc?.Name, fontSize: 15, alignment: 'right', bold: true },
|
|
249
|
+
{ text: CnstData?.Doc?.Intro1, fontSize: 9, alignment: 'right' },
|
|
250
|
+
{ text: CnstData?.Doc?.Intro2, fontSize: 9, alignment: 'right' },
|
|
251
|
+
{ text: CnstData?.Doc?.Intro3, fontSize: 9, alignment: 'right' },
|
|
252
|
+
{ text: 'Registration ID- ' + CnstData?.Doc?.CounReg, fontSize: 9, alignment: 'right', marginBottom: 5 }], marginTop: 25
|
|
253
|
+
}]
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
static GetPhoneNumber(phone: any) {
|
|
260
|
+
if (!TrUtils.IsNull(phone)) {
|
|
261
|
+
return ' | ' + phone;
|
|
262
|
+
} else {
|
|
263
|
+
return '';
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
static DifferenceInYears(DOB: any, TZ: any) {
|
|
268
|
+
if (TrUtils.IsNull(DOB)) {
|
|
269
|
+
return 'DOB Not Specified';
|
|
270
|
+
}
|
|
271
|
+
let Datei: any = MyDate.GetDateTimeNowInUTC(TZ);
|
|
272
|
+
const result = differenceInYears(Datei, new Date(DOB));
|
|
273
|
+
return result + ' Years';
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
static GetDiagnosis(Diags: any) {
|
|
277
|
+
let Diagnosis: any = '';
|
|
278
|
+
Diags?.forEach((item: any, index: any) => {
|
|
279
|
+
Diagnosis = Diagnosis + item.Desc;
|
|
280
|
+
if ((index + 1) !== Diags.length) {
|
|
281
|
+
Diagnosis = Diagnosis + ', ';
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
|
|
285
|
+
return Diagnosis;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
static GetComplaints(Comps: any) {
|
|
289
|
+
let Complaints: any = '';
|
|
290
|
+
Comps?.forEach((item: any, index: any) => {
|
|
291
|
+
Complaints = Complaints + item.Desc;
|
|
292
|
+
if ((index + 1) !== Comps.length) {
|
|
293
|
+
Complaints = Complaints + ', ';
|
|
294
|
+
}
|
|
295
|
+
});
|
|
296
|
+
|
|
297
|
+
return Complaints;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
// static GetDate(DatesDetails: any) {
|
|
301
|
+
// if (DatesDetails.Date === 'CustomRange') {
|
|
302
|
+
// return MyDate.GetWeekAndDate(DatesDetails.StDate) + ' - ' + MyDate.GetWeekAndDate(DatesDetails.EnDate);
|
|
303
|
+
// } else {
|
|
304
|
+
// return 'till ' + MyDate.GetWeekAndDate(DatesDetails.EnDate);
|
|
305
|
+
// }
|
|
306
|
+
// }
|
|
307
|
+
|
|
308
|
+
static CustomerAndVehicleDetailsAfterLine() {
|
|
309
|
+
return {
|
|
310
|
+
canvas: [
|
|
311
|
+
{
|
|
312
|
+
type: 'line',
|
|
313
|
+
lineColor: 'gray',
|
|
314
|
+
x1: 0,
|
|
315
|
+
y1: 0,
|
|
316
|
+
x2: 575,
|
|
317
|
+
y2: 0,
|
|
318
|
+
lineWidth: 1
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
static GetSignatures(CName: any, For: any, Type: any) {
|
|
325
|
+
return {
|
|
326
|
+
columns: [{
|
|
327
|
+
stack: [
|
|
328
|
+
this.CompanyName(CName),
|
|
329
|
+
]
|
|
330
|
+
}],
|
|
331
|
+
};
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
static CompanyName(CName: any) {
|
|
335
|
+
return {
|
|
336
|
+
style: 'forCompany',
|
|
337
|
+
text: ['For ', { text: CName, }],
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
static GetItemsTable(Items: any, Remarks: any) {
|
|
342
|
+
if (!TrUtils.IsNull(Items)) {
|
|
343
|
+
return {
|
|
344
|
+
style: 'tableExample',
|
|
345
|
+
marginTop: 3,
|
|
346
|
+
marginBottom: 5,
|
|
347
|
+
table: {
|
|
348
|
+
widths: [20, '*', 45, 50, 200],
|
|
349
|
+
headerRows: 1,
|
|
350
|
+
body: this.BuildTableBodyForLaborAndParts(Items, Remarks)
|
|
351
|
+
},
|
|
352
|
+
layout: {
|
|
353
|
+
hLineWidth: function (i: any, node: any) {
|
|
354
|
+
|
|
355
|
+
return (i === 0 || i === 1 || i === node.table.body.length) ? 1 : 0.5;
|
|
356
|
+
},
|
|
357
|
+
vLineWidth: function (i: any, node: any) {
|
|
358
|
+
return (i === 0 || i === node.table.widths.length) ? 1 : 0.5;
|
|
359
|
+
},
|
|
360
|
+
// hLineStyle: function (i, node) {
|
|
361
|
+
// return (i === 0 || i === 1) ? { dash: { length: 5, space: 5 } } : null;
|
|
362
|
+
// },
|
|
363
|
+
hLineColor: function (i: any, node: any) {
|
|
364
|
+
return (i === 0 || i === 1 || i === node.table.body.length) ? 'gray' : 'lightgrey';
|
|
365
|
+
},
|
|
366
|
+
vLineColor: function (i: any, node: any) {
|
|
367
|
+
return 'gray';
|
|
368
|
+
},
|
|
369
|
+
}
|
|
370
|
+
};
|
|
371
|
+
} else {
|
|
372
|
+
return {};
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
static BuildTableBodyForLaborAndParts(Items: any, Remarks: any) {
|
|
378
|
+
let body: any = this.GetHeaderNames();
|
|
379
|
+
Items?.forEach((item: any, index: any) => {
|
|
380
|
+
let dataRow: any = [];
|
|
381
|
+
dataRow.push({ text: index + 1, rowSpan: item.Dosage.length });
|
|
382
|
+
dataRow.push({ text: item.Desc, bold: true, rowSpan: item.Dosage.length });
|
|
383
|
+
|
|
384
|
+
item.Dosage.forEach((dose: any, index: any) => {
|
|
385
|
+
if (index === 0) {
|
|
386
|
+
dataRow.push({ text: dose.Dose, alignment: 'left', style: ['headerstyle'], });
|
|
387
|
+
dataRow.push({ text: dose.Dur, alignment: 'left', style: ['headerstyle'], });
|
|
388
|
+
dataRow.push({ text: Remarks[dose.Dose], alignment: 'left', style: ['headerstyle'], });
|
|
389
|
+
body.push(dataRow);
|
|
390
|
+
} else {
|
|
391
|
+
let dataRow1: any = [];
|
|
392
|
+
dataRow1.push({ text: dose.Dose, alignment: 'left', style: ['headerstyle'], });
|
|
393
|
+
dataRow1.push({ text: dose.Dur, alignment: 'left', style: ['headerstyle'], });
|
|
394
|
+
dataRow1.push({ text: dose.Dose, alignment: 'left', style: ['headerstyle'], });
|
|
395
|
+
dataRow1.push({ text: dose.Dur, alignment: 'left', style: ['headerstyle'], });
|
|
396
|
+
dataRow1.push({ text: Remarks[dose.Dose], alignment: 'left', style: ['headerstyle'], fontFamily: 'telugu' });
|
|
397
|
+
body.push(dataRow1);
|
|
398
|
+
}
|
|
399
|
+
})
|
|
400
|
+
});
|
|
401
|
+
|
|
402
|
+
return body;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
static GetHeaderNames() {
|
|
406
|
+
let HeadingNames: any;
|
|
407
|
+
HeadingNames = [[{ text: 'SNo', style: 'tableheader1', Field: 'SNo', alignment: 'left', line: true },
|
|
408
|
+
{ text: 'Medicine', style: 'tableheader1', Field: 'Name', alignment: 'left', line: true },
|
|
409
|
+
{ text: 'Dosage', style: 'tableheader1', Field: 'Dosage', alignment: 'left' },
|
|
410
|
+
{ text: 'Duration', style: 'tableheader1', Field: 'Freq', alignment: 'left' },
|
|
411
|
+
{ text: 'Remarks', style: 'tableheader1', Field: 'Freq', alignment: 'left' },
|
|
412
|
+
]];
|
|
413
|
+
|
|
414
|
+
return HeadingNames;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
}
|