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.
Files changed (212) hide show
  1. package/README.md +1 -0
  2. package/dist/accounting/invoice/invoice-pdf/invoice-pdf.service.js +18 -45
  3. package/dist/accounting/invoice/reports/excel/analysis-excel.service.js +17 -7
  4. package/dist/accounting/invoice/reports/excel/category-wise-item-excel.service.js +17 -7
  5. package/dist/accounting/invoice/reports/excel/cust-wise-sales-details.js +17 -7
  6. package/dist/accounting/invoice/reports/excel/cust-wise-sales-summary-excel.service.js +17 -7
  7. package/dist/accounting/invoice/reports/excel/invoice-wise-excel.service.js +17 -7
  8. package/dist/accounting/invoice/reports/excel/item-wise-doctor-sale-excel.service.js +17 -7
  9. package/dist/accounting/invoice/reports/excel/items-wise-sales-excel.service.js +17 -7
  10. package/dist/accounting/invoice/reports/excel/manf-wise-sales-excel.service.js +17 -7
  11. package/dist/accounting/invoice/reports/excel/operator-wise-details.js +17 -7
  12. package/dist/accounting/invoice/reports/excel/operator-wise-summary.js +17 -7
  13. package/dist/accounting/invoice/reports/excel/sa-wise-labor-sales-excel.service.js +17 -7
  14. package/dist/accounting/invoice/reports/excel/sa-wise-part-sales-excel.service.js +17 -7
  15. package/dist/accounting/invoice/reports/excel/sale-summary-excel.service.js +17 -7
  16. package/dist/accounting/invoice/reports/excel/sales-by-service-summary-excel.service.js +17 -7
  17. package/dist/accounting/invoice/reports/excel/scheduled-drug-summary-excel.service.js +17 -7
  18. package/dist/accounting/invoice/reports/excel/scheduled-drugs-excel.service.js +17 -7
  19. package/dist/accounting/invoice/unified-invoice-pdf.service.d.ts +1 -1
  20. package/dist/accounting/payment-receive/reports/excel/cust-balance-excel.service.js +17 -7
  21. package/dist/accounting/payment-receive/reports/excel/payment-receive-excel.service.js +17 -7
  22. package/dist/common/reports/excel/product-without-owner-excel.service.js +17 -7
  23. package/dist/gst/excel/GSTR-RO-excel.service.js +17 -7
  24. package/dist/gst/excel/GSTR1-excel.service.js +17 -7
  25. package/dist/gst/excel/GSTR2-excel.service.js +17 -7
  26. package/dist/gst/excel/hsn-summary.js +17 -7
  27. package/dist/gst/excel/tally-sales-import.service.js +17 -7
  28. package/dist/index.d.ts +1 -1
  29. package/dist/index.js +6 -6
  30. package/dist/inventory/items/reports/excel/expiring-drugs-excel.service.js +17 -7
  31. package/dist/inventory/items/reports/excel/item-wise-mout-details.js +17 -7
  32. package/dist/inventory/items/reports/excel/item-wise-mout-summary.js +17 -7
  33. package/dist/inventory/items/reports/excel/spares-issue-excel.service.js +17 -7
  34. package/dist/inventory/items/reports/excel/stock-excel.service.js +17 -7
  35. package/dist/purchases/payment-made/reports/excel/payments-made-excel.service.js +17 -7
  36. package/dist/purchases/payment-made/reports/excel/ven-balance-excel.service.js +17 -7
  37. package/dist/services/reports/excel/insurance-expire-excel.service.js +17 -7
  38. package/dist/services/reports/excel/next-service-date-excel.service.js +17 -7
  39. package/dist/services/reports/excel/repair-orders-excel.service.js +17 -7
  40. package/dist/shared/table-section/pdf-table.header.d.ts +1 -1
  41. package/dist/shared/table-section/pdf-table.header.js +14 -2
  42. package/dist/shared/table-section/pdf-table.section.js +6 -13
  43. package/dist/{accounting/invoice/invoice-pdf.service.js → shared/transactions-pdf.service.js} +15 -15
  44. package/package.json +1 -1
  45. package/src/accounting/counter-sales/auto-sales-receipt-pdf.service.ts +569 -0
  46. package/src/accounting/counter-sales/pos-receipt-pdf.ts +577 -0
  47. package/src/accounting/counter-sales/sales-receipt-pdf.service.ts +628 -0
  48. package/src/accounting/counter-sales/sales-receipt-print.service.ts +506 -0
  49. package/src/accounting/credit-note/cn-print.service.ts +264 -0
  50. package/src/accounting/credit-note/credit-note-pdf.service.ts +602 -0
  51. package/src/accounting/credit-note/credit-note-totals.service.ts +424 -0
  52. package/src/accounting/debit-note/debit-note-pdf.service.ts +681 -0
  53. package/src/accounting/debit-note/debit-note-print.service.ts +276 -0
  54. package/src/accounting/debit-note/debit-note-totals.service.ts +361 -0
  55. package/src/accounting/invoice/hc-inv-pdf.service.ts +880 -0
  56. package/src/accounting/invoice/inv-pdf.service.ts +812 -0
  57. package/src/accounting/invoice/inv-print.service.ts +532 -0
  58. package/src/accounting/invoice/invoice-landscape-pdf.service.ts +947 -0
  59. package/src/accounting/invoice/invoice-letterhead-pdf.service.ts +813 -0
  60. package/src/accounting/invoice/invoice-pdf/invoice-pdf.service.ts +359 -0
  61. package/src/accounting/invoice/invoice-portrait-pdf.ts +972 -0
  62. package/src/accounting/invoice/invoice-print.service.ts +2906 -0
  63. package/src/accounting/invoice/invoice-total.service.ts +834 -0
  64. package/src/accounting/invoice/reports/excel/analysis-excel.service.ts +291 -0
  65. package/src/accounting/invoice/reports/excel/category-wise-item-excel.service.ts +267 -0
  66. package/src/accounting/invoice/reports/excel/cust-wise-sales-details.ts +321 -0
  67. package/src/accounting/invoice/reports/excel/cust-wise-sales-summary-excel.service.ts +300 -0
  68. package/src/accounting/invoice/reports/excel/invoice-wise-excel.service.ts +859 -0
  69. package/src/accounting/invoice/reports/excel/item-wise-doctor-sale-excel.service.ts +255 -0
  70. package/src/accounting/invoice/reports/excel/items-wise-sales-excel.service.ts +312 -0
  71. package/src/accounting/invoice/reports/excel/manf-wise-sales-excel.service.ts +273 -0
  72. package/src/accounting/invoice/reports/excel/operator-wise-details.ts +258 -0
  73. package/src/accounting/invoice/reports/excel/operator-wise-summary.ts +259 -0
  74. package/src/accounting/invoice/reports/excel/sa-wise-labor-sales-excel.service.ts +230 -0
  75. package/src/accounting/invoice/reports/excel/sa-wise-part-sales-excel.service.ts +231 -0
  76. package/src/accounting/invoice/reports/excel/sale-summary-excel.service.ts +326 -0
  77. package/src/accounting/invoice/reports/excel/sales-by-service-details-excel.service.ts +0 -0
  78. package/src/accounting/invoice/reports/excel/sales-by-service-summary-excel.service.ts +432 -0
  79. package/src/accounting/invoice/reports/excel/scheduled-drug-summary-excel.service.ts +373 -0
  80. package/src/accounting/invoice/reports/excel/scheduled-drugs-excel.service.ts +372 -0
  81. package/src/accounting/invoice/reports/pdf/analysis-pdf.service.ts +113 -0
  82. package/src/accounting/invoice/reports/pdf/category-wise-item-pdf.service.ts +107 -0
  83. package/src/accounting/invoice/reports/pdf/cust-wise-sales-details-pdf.service.ts +125 -0
  84. package/src/accounting/invoice/reports/pdf/cust-wise-sales-summary-pdf.service.ts +119 -0
  85. package/src/accounting/invoice/reports/pdf/item-wise-doctor-sale-pdf.service.ts +180 -0
  86. package/src/accounting/invoice/reports/pdf/item-wise-sales-pdf.service.ts +193 -0
  87. package/src/accounting/invoice/reports/pdf/manf-wise-sales-pdf.service.ts +188 -0
  88. package/src/accounting/invoice/reports/pdf/operator-wise-details-pdf.service.ts +118 -0
  89. package/src/accounting/invoice/reports/pdf/operator-wise-summary-pdf.ts +116 -0
  90. package/src/accounting/invoice/reports/pdf/sales-by-service-pdf.service.ts +132 -0
  91. package/src/accounting/invoice/reports/pdf/scheduled-drug-pdf.service.ts +191 -0
  92. package/src/accounting/invoice/reports/pdf/scheduled-drug-summary-pdf.service.ts +202 -0
  93. package/src/accounting/invoice/shared-inv-pdf.service.ts +787 -0
  94. package/src/accounting/invoice/unified-invoice-pdf.service.ts +937 -0
  95. package/src/accounting/payment-receive/payment-pdf.service.ts +410 -0
  96. package/src/accounting/payment-receive/payment-receipt-pdf/receipt-pdf.service.ts +470 -0
  97. package/src/accounting/payment-receive/receipt-print.service.ts +71 -0
  98. package/src/accounting/payment-receive/reports/excel/cust-balance-excel.service.ts +298 -0
  99. package/src/accounting/payment-receive/reports/excel/payment-receive-excel.service.ts +221 -0
  100. package/src/accounting/payment-receive/reports/pdf/customer-balances-pdf.service.ts +182 -0
  101. package/src/accounting/payment-receive/reports/pdf/payment-report-pdf.service.ts +116 -0
  102. package/src/aggregation/aggregation.ts +58 -0
  103. package/src/appointments/appointments/appointment-total.service.ts +298 -0
  104. package/src/appointments/consultations/consultation-fee-receipt.service.ts +407 -0
  105. package/src/appointments/consultations/consultation-full-pdf.service.ts +238 -0
  106. package/src/appointments/consultations/consultation-letterhead-pdf.service.ts +430 -0
  107. package/src/appointments/consultations/consultation-pdf.service.ts +417 -0
  108. package/src/common/reports/excel/product-without-owner-excel.service.ts +308 -0
  109. package/src/common/reports/pdf/product-without-owner-pdf.service.ts +146 -0
  110. package/src/enums/cache-enums.ts +33 -0
  111. package/src/enums/code-enums.ts +291 -0
  112. package/src/enums/country-enums.ts +9 -0
  113. package/src/enums/enums.ts +364 -0
  114. package/src/enums/industry-enums.ts +26 -0
  115. package/src/enums/treatment-enums.ts +9 -0
  116. package/src/gst/excel/GSTR-RO-excel.service.ts +926 -0
  117. package/src/gst/excel/GSTR1-excel.service.ts +313 -0
  118. package/src/gst/excel/GSTR2-excel.service.ts +314 -0
  119. package/src/gst/excel/hsn-summary.ts +314 -0
  120. package/src/gst/excel/tally-sales-import.service.ts +767 -0
  121. package/src/gst/pdf/hsn-summary-pdf.ts +176 -0
  122. package/src/index.ts +194 -0
  123. package/src/inventory/items/adjustment-pdf.service.ts +177 -0
  124. package/src/inventory/items/issue-parts-pdf.service.ts +795 -0
  125. package/src/inventory/items/item-bar-code-label-pdf.ts +194 -0
  126. package/src/inventory/items/item-detais-pdf.ts +141 -0
  127. package/src/inventory/items/item-price-for-pricelist.ts +368 -0
  128. package/src/inventory/items/reports/excel/expiring-drugs-excel.service.ts +290 -0
  129. package/src/inventory/items/reports/excel/item-wise-mout-details.ts +284 -0
  130. package/src/inventory/items/reports/excel/item-wise-mout-summary.ts +279 -0
  131. package/src/inventory/items/reports/excel/spares-issue-excel.service.ts +494 -0
  132. package/src/inventory/items/reports/excel/stock-excel.service.ts +319 -0
  133. package/src/inventory/items/reports/pdf/expiring-drugs-pdf.service.ts +172 -0
  134. package/src/inventory/items/reports/pdf/item-wise-mout-details-pdf.ts +122 -0
  135. package/src/inventory/items/reports/pdf/item-wise-mout-summary-pdf.ts +115 -0
  136. package/src/inventory/items/reports/pdf/reorder-point-pdf.service.ts +163 -0
  137. package/src/inventory/material-out/mout-pdf.service.ts +545 -0
  138. package/src/inventory/transfer-order/transfer-order-pdf.service.ts +154 -0
  139. package/src/purchases/bills/bill-pdf/bill-pdf.service.ts +211 -0
  140. package/src/purchases/bills/bill-pdf.service.ts +21 -0
  141. package/src/purchases/payment-made/reports/excel/payments-made-excel.service.ts +313 -0
  142. package/src/purchases/payment-made/reports/excel/ven-balance-excel.service.ts +307 -0
  143. package/src/purchases/payment-made/reports/pdf/vendor-balances-pdf.service.ts +114 -0
  144. package/src/purchases/purchase-order/po-totals.service.ts +343 -0
  145. package/src/purchases/purchase-order/purchase-order-pdf.service.ts +1016 -0
  146. package/src/purchases/purchase-order/purchase-order-print.service.ts +279 -0
  147. package/src/purchases/purchase-order/purchase-order-totals.service.ts +637 -0
  148. package/src/purchases/vendor-credit-note/vendor-credit-note-pdf.service.ts +1055 -0
  149. package/src/purchases/vendor-credit-note/vendor-credit-note-print.service.ts +145 -0
  150. package/src/purchases/vendor-credit-note/vendor-credit-note-totals.service.ts +399 -0
  151. package/src/purchases/vendor-debit-note/vendor-debit-note-pdf.service.ts +582 -0
  152. package/src/purchases/vendor-debit-note/vendor-debit-note-print.service.ts +295 -0
  153. package/src/purchases/vendor-debit-note/vendor-debit-note-totals.service.ts +377 -0
  154. package/src/sales/delivery-challan/dc-landscape-pdf.service.ts +922 -0
  155. package/src/sales/delivery-challan/dc-landscape-without-price-pdf.service.ts +869 -0
  156. package/src/sales/delivery-challan/dc-without-price-pdf.service.ts +505 -0
  157. package/src/sales/delivery-challan/delivery-challan-pdf.service.ts +461 -0
  158. package/src/sales/delivery-challan/delivery-challan-print.service.ts +229 -0
  159. package/src/sales/delivery-challan/delivery-challan-totals.ts +466 -0
  160. package/src/sales/sales/equipment-design-pdf.service.ts +153 -0
  161. package/src/sales/sales/pack-ship-pdf.service.ts +128 -0
  162. package/src/sales/sales/pack-ship-print.service.ts +198 -0
  163. package/src/sales/sales/sales-pdf.service.ts +658 -0
  164. package/src/sales/sales/sales-print.service.ts +376 -0
  165. package/src/sales/sales/sales-totals.service.ts +500 -0
  166. package/src/sales-receive/sales-receive-pdf.service.ts +602 -0
  167. package/src/sales-receive/sales-receive-print.service.ts +242 -0
  168. package/src/sales-receive/sales-receive-totals.service.ts +651 -0
  169. package/src/services/checklist-pdf.ts +151 -0
  170. package/src/services/checklists-pdf.ts +133 -0
  171. package/src/services/est.print-service.ts +1155 -0
  172. package/src/services/reports/excel/insurance-expire-excel.service.ts +292 -0
  173. package/src/services/reports/excel/next-service-date-excel.service.ts +317 -0
  174. package/src/services/reports/excel/repair-orders-excel.service.ts +249 -0
  175. package/src/services/reports/pdf/insurance-expire-pdf.service.ts +115 -0
  176. package/src/services/reports/pdf/next-service-date-pdf.service.ts +198 -0
  177. package/src/services/reports/pdf/repair-orders-pdf.service.ts +184 -0
  178. package/src/services/ro-pdf.service.ts +1917 -0
  179. package/src/services/ro-print-service.ts +881 -0
  180. package/src/services/ro-totals.service.ts +1314 -0
  181. package/src/services/separate-wo-print.service.ts +396 -0
  182. package/src/services/service-history-pdf.service.ts +145 -0
  183. package/src/services/service-price-for-pricelist.ts +649 -0
  184. package/src/services/technician-pdf.service.ts +234 -0
  185. package/src/services/technician-print.service.ts +95 -0
  186. package/src/shared/header-footer-section/pdf-header-footer.section.ts +519 -0
  187. package/src/shared/header-footer-section/pdf-shared.utils.ts +46 -0
  188. package/src/shared/math-operations.ts +208 -0
  189. package/src/shared/party-details-section/pdf-party-details.section.ts +602 -0
  190. package/src/shared/shared-pdf.service.ts +3042 -0
  191. package/src/shared/shared-print.service.ts +879 -0
  192. package/src/shared/table-section/pdf-table.config.ts +8 -0
  193. package/src/shared/table-section/pdf-table.header.ts +396 -0
  194. package/src/shared/table-section/pdf-table.row.ts +248 -0
  195. package/src/shared/table-section/pdf-table.section.ts +447 -0
  196. package/src/shared/totals-section/pdf-totals.section.ts +921 -0
  197. package/src/shared/transactions-pdf.service.ts +191 -0
  198. package/src/shared/util.ts +101 -0
  199. package/src/tasks/meetings/meeting-pdf.ts +410 -0
  200. package/src/tasks/tasks/task-pdf.service.ts +238 -0
  201. package/src/tasks/tasks/task-reports-pdf.service.ts +313 -0
  202. package/src/tax/index.ts +86 -0
  203. package/src/tax/tax-calculator.ts +1025 -0
  204. package/src/tax/tax.types.ts +535 -0
  205. package/src/transaction-calculations/discounts-distribution.ts +343 -0
  206. package/src/transaction-calculations/index.ts +3 -0
  207. package/src/transaction-calculations/total-calculation.ts +443 -0
  208. package/src/transaction-calculations/transaction-calculation-engine.ts +903 -0
  209. package/src/utils/my-date.ts +111 -0
  210. package/src/utils/tr-utils.ts +104 -0
  211. package/tsconfig.json +2 -2
  212. /package/dist/{accounting/invoice/invoice-pdf.service.d.ts → shared/transactions-pdf.service.d.ts} +0 -0
@@ -0,0 +1,313 @@
1
+ import * as XLSX from 'xlsx';
2
+ import { TrUtils } from '../../utils/tr-utils';
3
+
4
+ export class GSTR1ExcelService {
5
+
6
+ static wb: any = {};
7
+ static Row: any = 0;
8
+ static MergeArray: any[] = [];
9
+ static range:any = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
10
+ static ws:any = {};
11
+
12
+ static GetGSTR1ExcelData(MainData: any, EntitySettings:any) {
13
+ this.wb={};
14
+ this.ws = {};
15
+ this.Row=0;
16
+ this.range = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
17
+ this.MergeArray=[];
18
+ let ws_name = 'GSTR1';
19
+ this.wb.Sheets = {};
20
+ this.wb.Props = {};
21
+ this.wb.SSF = {};
22
+ this.wb.SheetNames = [];
23
+
24
+
25
+ MainData = this.GetTotals(MainData);
26
+
27
+ this.setHeadingInCell();
28
+
29
+ this.setInvoiceDetailsInCell(MainData, EntitySettings.DecimalsNumber);
30
+
31
+ this.ws['!ref'] = XLSX.utils.encode_range(this.range);
32
+
33
+ this.ws['!merges'] = this.MergeArray;
34
+
35
+ this.wb.SheetNames.push(ws_name);
36
+
37
+ this.wb.Sheets[ws_name] = this.ws;
38
+
39
+ return this.wb;
40
+ }
41
+
42
+ static GetTotals(MainData: any) {
43
+ MainData.forEach((InvoicesList: any) => {
44
+ InvoicesList.Invoices.forEach((InvoiceInfo: any) => {
45
+ // if (InvoiceInfo.Inv.InsTotal != null) {
46
+ // InvoiceInfo.Inv.Amount = InvoiceInfo.Inv.InsTotal;
47
+ // }
48
+ // if (InvoiceInfo.Inv.Total != null) {
49
+ // InvoiceInfo.Inv.Amount = InvoiceInfo.Inv.Total;
50
+ // }
51
+
52
+ if (InvoiceInfo.Total != null) {
53
+ InvoiceInfo.Amount = InvoiceInfo.Total;
54
+ }
55
+ });
56
+ });
57
+ return MainData;
58
+ }
59
+
60
+ static setHeadingInCell() {
61
+ let MainHeadings: any[] = [
62
+ {
63
+ text: 'GSTIN/UIN',
64
+ ColRange: 1,
65
+ bold: true,
66
+ ChildHeadings: []
67
+ },
68
+ {
69
+ text: 'Name',
70
+ ColRange: 1,
71
+ bold: true,
72
+ ChildHeadings: []
73
+ },
74
+ {
75
+ text: 'Invoice Details',
76
+ ColRange: 4,
77
+ bold: true,
78
+ ChildHeadings: [
79
+ { text: 'No', ColRange: 1 },
80
+ { text: 'Date', ColRange: 1 },
81
+ { text: 'Total', ColRange: 1 }
82
+ ]
83
+ },
84
+ {
85
+ text: 'Rate',
86
+ ColRange: 1,
87
+ bold: true,
88
+ ChildHeadings: []
89
+ },
90
+ {
91
+ text: 'Taxable Value',
92
+ ColRange: 1,
93
+ bold: true,
94
+ ChildHeadings: []
95
+ },
96
+ {
97
+ text: 'Amount',
98
+ ColRange: 3,
99
+ bold: true,
100
+ ChildHeadings: [
101
+ { text: 'Central Tax', ColRange: 1 },
102
+ { text: 'State Tax', ColRange: 1 },
103
+ { text: 'IGST Tax', ColRange: 1 },
104
+ ]
105
+ }
106
+ ]
107
+
108
+ let MainColStart: any = 0;
109
+ MainHeadings.forEach((MainHeader: any) => {
110
+ let ChildColStart: any = MainColStart;
111
+ this.SetDataInCell(MainHeader.text, MainColStart, this.Row);
112
+ this.MergeArray.push({ s: { r: this.Row, c: MainColStart }, e: { r: this.Row, c: MainColStart + MainHeader.ColRange - 1 } });
113
+ MainColStart += MainHeader.ColRange;
114
+
115
+ MainHeader.ChildHeadings.forEach((ChildHeaderInfo: any) => {
116
+ this.SetDataInCell(ChildHeaderInfo.text, ChildColStart, this.Row + 1);
117
+ this.MergeArray.push({ s: { r: this.Row + 1, c: ChildColStart }, e: { r: this.Row + 1, c: ChildColStart + ChildHeaderInfo.ColRange - 1 } });
118
+ ChildColStart += ChildHeaderInfo.ColRange;
119
+ });
120
+ });
121
+
122
+
123
+ this.Row += 2;
124
+ }
125
+
126
+ static setInvoiceDetailsInCell(MainData: any, DecimalsNumber: number) {
127
+ MainData.forEach((InvoiceList: any) => {
128
+ this.SetInvoiceDataInExcel(InvoiceList, DecimalsNumber);
129
+ });
130
+ }
131
+
132
+ static SetInvoiceDataInExcel(InvoiceList: any, DecimalsNumber: number) {
133
+ InvoiceList.Invoices.forEach((InvoiceInfo: any, index: any) => {
134
+ // let InvoiceInfo = InvoiceInfoData.Inv;
135
+ InvoiceInfo.CrDate = this.ConvertDateToReadableFormat(InvoiceInfo.CrDate);
136
+ let GSTIN: any;
137
+ let Name: any;
138
+ if (index === 0) {
139
+ if (InvoiceList._id == 'Unspecified') {
140
+ GSTIN = 'No GST';
141
+ Name = InvoiceInfo.Name;
142
+ } else {
143
+ GSTIN = InvoiceList._id;
144
+ Name = InvoiceInfo.Name;
145
+ }
146
+ } else {
147
+ if (InvoiceList._id == 'Unspecified') {
148
+ GSTIN = 'No GST';
149
+ Name = InvoiceInfo.Name;
150
+ }
151
+ }
152
+ let InvoiceData: any = [
153
+ { text: GSTIN, ColRange: 1, IsString: true },
154
+ { text: Name, ColRange: 1, IsString: true },
155
+ { text: InvoiceInfo.Code, ColRange: 1, IsString: true },
156
+ { text: InvoiceInfo.CrDate, ColRange: 1, IsString: true },
157
+ { text: InvoiceInfo.Amount, ColRange: 1, IsString: false }
158
+ ];
159
+ let ColStart: any = 0;
160
+ InvoiceData.forEach((InvData: any) => {
161
+ InvData.text = this.ConvertToString(InvData.text, InvData.IsString, DecimalsNumber);
162
+ this.SetDataInCell(InvData.text, ColStart, this.Row);
163
+ this.MergeArray.push({ s: { r: this.Row, c: ColStart }, e: { r: this.Row, c: ColStart + InvData.ColRange - 1 } });
164
+ ColStart += InvData.ColRange;
165
+ });
166
+ let TotalsColStart: any = ColStart;
167
+
168
+ if (!TrUtils.IsNull(InvoiceInfo.ItemsArray) && InvoiceInfo.ItemsArray.length !== 0) {
169
+ let PartsHeading: any = { text: 'Parts', ColRange: 1 };
170
+ this.SetDataInCell(PartsHeading.text, TotalsColStart, this.Row);
171
+ this.MergeArray.push({ s: { r: this.Row, c: TotalsColStart }, e: { r: this.Row, c: TotalsColStart + PartsHeading.ColRange - 1 } });
172
+
173
+
174
+ InvoiceInfo.ItemsArray.forEach((Part: any) => {
175
+
176
+ let PartData: any = [
177
+ { text: Part.Rate, ColRange: 1, IsString: false },
178
+ { text: Part.Taxable, ColRange: 1, IsString: false },
179
+ { text: Part.CGST, ColRange: 1, IsString: false },
180
+ { text: Part.SGST, ColRange: 1, IsString: false },
181
+ { text: Part.IGST, ColRange: 1, IsString: false }
182
+ ];
183
+
184
+ let PartColStart: any = TotalsColStart + 1;
185
+ PartData.forEach((PartInfo: any) => {
186
+ PartInfo.text = this.ConvertToString(PartInfo.text, PartInfo.IsString, DecimalsNumber);
187
+ this.SetDataInCell(PartInfo.text, PartColStart, this.Row);
188
+ this.MergeArray.push({ s: { r: this.Row, c: PartColStart }, e: { r: this.Row, c: PartColStart + PartInfo.ColRange - 1 } });
189
+ PartColStart += PartInfo.ColRange;
190
+ });
191
+
192
+ this.Row += 1;
193
+
194
+ });
195
+ this.Row += 1;
196
+ }
197
+
198
+ if (!TrUtils.IsNull(InvoiceInfo.LaborArray) && InvoiceInfo.LaborArray.length !== 0) {
199
+ let LaborHeading: any = { text: 'Labor', ColRange: 1 };
200
+ this.SetDataInCell(LaborHeading.text, TotalsColStart, this.Row);
201
+ this.MergeArray.push({ s: { r: this.Row, c: TotalsColStart }, e: { r: this.Row, c: TotalsColStart + LaborHeading.ColRange - 1 } });
202
+ InvoiceInfo.LaborArray.forEach((Service: any) => {
203
+
204
+ let ServiceData: any = [
205
+ { text: Service.Rate, ColRange: 1, IsString: false },
206
+ { text: Service.Taxable, ColRange: 1, IsString: false },
207
+ { text: Service.CGST, ColRange: 1, IsString: false },
208
+ { text: Service.SGST, ColRange: 1, IsString: false },
209
+ { text: Service.IGST, ColRange: 1, IsString: false }
210
+ ];
211
+
212
+ let LaborColStart: any = TotalsColStart + 1;
213
+ ServiceData.forEach((ServiceInfo: any) => {
214
+ ServiceInfo.text = this.ConvertToString(ServiceInfo.text, ServiceInfo.IsString, DecimalsNumber);
215
+ this.SetDataInCell(ServiceInfo.text, LaborColStart, this.Row);
216
+ this.MergeArray.push({ s: { r: this.Row, c: LaborColStart }, e: { r: this.Row, c: LaborColStart + ServiceInfo.ColRange - 1 } });
217
+ LaborColStart += ServiceInfo.ColRange;
218
+ });
219
+
220
+ this.Row += 1;
221
+
222
+ });
223
+ this.Row += 1;
224
+ }
225
+
226
+ this.Row += 1;
227
+ });
228
+ }
229
+
230
+ static ConvertToString(Text: any, IsString: any, DecimalsNumber:number) {
231
+ if (IsString) {
232
+ if (TrUtils.IsNull(Text)) {
233
+ Text = '';
234
+ }
235
+ } else {
236
+ if (TrUtils.IsNull(Text)) {
237
+ Text = 0;
238
+ }
239
+ }
240
+ if (typeof (Text) === 'number') {
241
+ return Number(TrUtils.FixedTo(Text, DecimalsNumber));
242
+ } else {
243
+ return Text;
244
+ }
245
+ }
246
+
247
+ static SetDataInCell(Data: any, ColRange: number, RowNum: any) {
248
+ var cell = { v: Data };
249
+ var cell_ref = XLSX.utils.encode_cell({ c: ColRange, r: RowNum });
250
+ if (this.range.e.c < ColRange) {
251
+ this.range.e.c = ColRange;
252
+ }
253
+ if (this.range.e.r < RowNum) {
254
+ this.range.e.r = RowNum;
255
+ }
256
+ cell = this.getcelltype(cell);
257
+ this.ws[cell_ref] = cell;
258
+ }
259
+
260
+ static getcelltype(cell: any) {
261
+ if (typeof cell.v === 'number') cell.t = 'n';
262
+ else if (typeof cell.v === 'boolean') cell.t = 'b';
263
+ else cell.t = 's';
264
+ return cell;
265
+ }
266
+
267
+ static ConvertDateToReadableFormat(DateObject: any) {
268
+ if (!TrUtils.IsEmpty(DateObject)) {
269
+ let date: any = new Date(DateObject);
270
+ let Month: any;
271
+ let Day: any;
272
+
273
+ let MonthName = new Array();
274
+ MonthName[0] = 'Jan';
275
+ MonthName[1] = 'Feb';
276
+ MonthName[2] = 'Mar';
277
+ MonthName[3] = 'Apr';
278
+ MonthName[4] = 'May';
279
+ MonthName[5] = 'Jun';
280
+ MonthName[6] = 'Jul';
281
+ MonthName[7] = 'Aug';
282
+ MonthName[8] = 'Sept';
283
+ MonthName[9] = 'Oct';
284
+ MonthName[10] = 'Nov';
285
+ MonthName[11] = 'Dec';
286
+
287
+ Month = MonthName[date.getMonth()];
288
+
289
+ if (date.getDate() < 10) {
290
+ Day = '0' + date.getDate();
291
+ } else {
292
+ Day = date.getDate();
293
+ }
294
+
295
+ date = Day + '-' + Month + '-' + date.getFullYear();
296
+ return date;
297
+ } else {
298
+ return null;
299
+ }
300
+ }
301
+
302
+ }
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
@@ -0,0 +1,314 @@
1
+
2
+ import * as XLSX from 'xlsx';
3
+ import { TrUtils } from '../../utils/tr-utils';
4
+
5
+ export class GSTR2ExcelService {
6
+
7
+ static wb: any = {};
8
+ static Row: any = 0;
9
+ static MergeArray: any[] = [];
10
+ static range:any = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
11
+ static ws:any = {};
12
+
13
+ static GetGSTR1ExcelData(MainData: any, EntitySettings: any) {
14
+ this.wb={};
15
+ this.ws = {};
16
+ this.Row=0;
17
+ this.range = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
18
+ this.MergeArray=[];
19
+ let ws_name = 'GSTR2';
20
+ this.wb.Sheets = {};
21
+ this.wb.Props = {};
22
+ this.wb.SSF = {};
23
+ this.wb.SheetNames = [];
24
+
25
+
26
+ MainData = this.GetTotals(MainData);
27
+
28
+ this.setHeadingInCell();
29
+
30
+ this.setInvoiceDetailsInCell(MainData, EntitySettings.DecimalsNumber);
31
+
32
+ this.ws['!ref'] = XLSX.utils.encode_range(this.range);
33
+
34
+ this.ws['!merges'] = this.MergeArray;
35
+
36
+ this.wb.SheetNames.push(ws_name);
37
+
38
+ this.wb.Sheets[ws_name] = this.ws;
39
+
40
+ return this.wb;
41
+ }
42
+
43
+ static GetTotals(MainData: any) {
44
+ MainData.forEach((InvoicesList: any) => {
45
+ InvoicesList.Bills.forEach((InvoiceInfo: any) => {
46
+ // if (InvoiceInfo.Inv.InsTotal != null) {
47
+ // InvoiceInfo.Inv.Amount = InvoiceInfo.Inv.InsTotal;
48
+ // }
49
+ // if (InvoiceInfo.Inv.Total != null) {
50
+ // InvoiceInfo.Inv.Amount = InvoiceInfo.Inv.Total;
51
+ // }
52
+
53
+ if (InvoiceInfo.Total != null) {
54
+ InvoiceInfo.Amount = InvoiceInfo.Total;
55
+ }
56
+ });
57
+ });
58
+ return MainData;
59
+ }
60
+
61
+ static setHeadingInCell() {
62
+ let MainHeadings: any[] = [
63
+ {
64
+ text: 'GSTIN/UIN',
65
+ ColRange: 1,
66
+ bold: true,
67
+ ChildHeadings: []
68
+ },
69
+ {
70
+ text: 'Name',
71
+ ColRange: 1,
72
+ bold: true,
73
+ ChildHeadings: []
74
+ },
75
+ {
76
+ text: 'Bill Details',
77
+ ColRange: 4,
78
+ bold: true,
79
+ ChildHeadings: [
80
+ { text: 'No', ColRange: 1 },
81
+ { text: 'Date', ColRange: 1 },
82
+ { text: 'Total', ColRange: 1 }
83
+ ]
84
+ },
85
+ {
86
+ text: 'Rate',
87
+ ColRange: 1,
88
+ bold: true,
89
+ ChildHeadings: []
90
+ },
91
+ {
92
+ text: 'Taxable Value',
93
+ ColRange: 1,
94
+ bold: true,
95
+ ChildHeadings: []
96
+ },
97
+ {
98
+ text: 'Amount',
99
+ ColRange: 3,
100
+ bold: true,
101
+ ChildHeadings: [
102
+ { text: 'Central Tax', ColRange: 1 },
103
+ { text: 'State Tax', ColRange: 1 },
104
+ { text: 'IGST Tax', ColRange: 1 },
105
+ ]
106
+ }
107
+ ]
108
+
109
+ let MainColStart: any = 0;
110
+ MainHeadings.forEach((MainHeader: any) => {
111
+ let ChildColStart: any = MainColStart;
112
+ this.SetDataInCell(MainHeader.text, MainColStart, this.Row);
113
+ this.MergeArray.push({ s: { r: this.Row, c: MainColStart }, e: { r: this.Row, c: MainColStart + MainHeader.ColRange - 1 } });
114
+ MainColStart += MainHeader.ColRange;
115
+
116
+ MainHeader.ChildHeadings.forEach((ChildHeaderInfo: any) => {
117
+ this.SetDataInCell(ChildHeaderInfo.text, ChildColStart, this.Row + 1);
118
+ this.MergeArray.push({ s: { r: this.Row + 1, c: ChildColStart }, e: { r: this.Row + 1, c: ChildColStart + ChildHeaderInfo.ColRange - 1 } });
119
+ ChildColStart += ChildHeaderInfo.ColRange;
120
+ });
121
+ });
122
+
123
+
124
+ this.Row += 2;
125
+ }
126
+
127
+ static setInvoiceDetailsInCell(MainData: any, DecimalsNumber: number) {
128
+ MainData.forEach((InvoiceList: any) => {
129
+ this.SetInvoiceDataInExcel(InvoiceList, DecimalsNumber);
130
+ });
131
+ }
132
+
133
+ static SetInvoiceDataInExcel(InvoiceList: any, DecimalsNumber: number) {
134
+ InvoiceList.Bills.forEach((InvoiceInfo: any, index: any) => {
135
+ // let InvoiceInfo = InvoiceInfoData.Inv;
136
+ InvoiceInfo.CrDate = this.ConvertDateToReadableFormat(InvoiceInfo.CrDate);
137
+ let GSTIN: any;
138
+ let Name: any;
139
+ if (index === 0) {
140
+ if (InvoiceList._id == 'Unspecified') {
141
+ GSTIN = 'No GST';
142
+ Name = InvoiceInfo.Name;
143
+ } else {
144
+ GSTIN = InvoiceList._id;
145
+ Name = InvoiceInfo.Name;
146
+ }
147
+ } else {
148
+ if (InvoiceList._id == 'Unspecified') {
149
+ GSTIN = 'No GST';
150
+ Name = InvoiceInfo.Name;
151
+ }
152
+ }
153
+ let InvoiceData: any = [
154
+ { text: GSTIN, ColRange: 1, IsString: true },
155
+ { text: Name, ColRange: 1, IsString: true },
156
+ { text: InvoiceInfo.BNo, ColRange: 1, IsString: true },
157
+ { text: InvoiceInfo.CrDate, ColRange: 1, IsString: true },
158
+ { text: InvoiceInfo.Amount, ColRange: 1, IsString: false }
159
+ ];
160
+ let ColStart: any = 0;
161
+ InvoiceData.forEach((InvData: any) => {
162
+ InvData.text = this.ConvertToString(InvData.text, InvData.IsString, DecimalsNumber);
163
+ this.SetDataInCell(InvData.text, ColStart, this.Row);
164
+ this.MergeArray.push({ s: { r: this.Row, c: ColStart }, e: { r: this.Row, c: ColStart + InvData.ColRange - 1 } });
165
+ ColStart += InvData.ColRange;
166
+ });
167
+ let TotalsColStart: any = ColStart;
168
+
169
+ if (!TrUtils.IsNull(InvoiceInfo.ItemsArray) && InvoiceInfo.ItemsArray.length !== 0) {
170
+ let PartsHeading: any = { text: 'Parts', ColRange: 1 };
171
+ this.SetDataInCell(PartsHeading.text, TotalsColStart, this.Row);
172
+ this.MergeArray.push({ s: { r: this.Row, c: TotalsColStart }, e: { r: this.Row, c: TotalsColStart + PartsHeading.ColRange - 1 } });
173
+
174
+
175
+ InvoiceInfo.ItemsArray.forEach((Part: any) => {
176
+
177
+ let PartData: any = [
178
+ { text: Part.Rate, ColRange: 1, IsString: false },
179
+ { text: Part.Taxable, ColRange: 1, IsString: false },
180
+ { text: Part.CGST, ColRange: 1, IsString: false },
181
+ { text: Part.SGST, ColRange: 1, IsString: false },
182
+ { text: Part.IGST, ColRange: 1, IsString: false }
183
+ ];
184
+
185
+ let PartColStart: any = TotalsColStart + 1;
186
+ PartData.forEach((PartInfo: any) => {
187
+ PartInfo.text = this.ConvertToString(PartInfo.text, PartInfo.IsString, DecimalsNumber);
188
+ this.SetDataInCell(PartInfo.text, PartColStart, this.Row);
189
+ this.MergeArray.push({ s: { r: this.Row, c: PartColStart }, e: { r: this.Row, c: PartColStart + PartInfo.ColRange - 1 } });
190
+ PartColStart += PartInfo.ColRange;
191
+ });
192
+
193
+ this.Row += 1;
194
+
195
+ });
196
+ this.Row += 1;
197
+ }
198
+
199
+ // if (!TrUtils.IsNull(InvoiceInfo.LaborArray) && InvoiceInfo.LaborArray.length !== 0) {
200
+ // let LaborHeading: any = { text: 'Labor', ColRange: 1 };
201
+ // this.SetDataInCell(LaborHeading.text, TotalsColStart, this.Row);
202
+ // this.MergeArray.push({ s: { r: this.Row, c: TotalsColStart }, e: { r: this.Row, c: TotalsColStart + LaborHeading.ColRange - 1 } });
203
+ // InvoiceInfo.LaborArray.forEach((Service: any) => {
204
+
205
+ // let ServiceData: any = [
206
+ // { text: Service.Rate, ColRange: 1, IsString: false },
207
+ // { text: Service.Taxable, ColRange: 1, IsString: false },
208
+ // { text: Service.CGST, ColRange: 1, IsString: false },
209
+ // { text: Service.SGST, ColRange: 1, IsString: false },
210
+ // { text: Service.IGST, ColRange: 1, IsString: false }
211
+ // ];
212
+
213
+ // let LaborColStart: any = TotalsColStart + 1;
214
+ // ServiceData.forEach((ServiceInfo: any) => {
215
+ // ServiceInfo.text = this.ConvertToString(ServiceInfo.text, ServiceInfo.IsString);
216
+ // this.SetDataInCell(ServiceInfo.text, LaborColStart, this.Row);
217
+ // this.MergeArray.push({ s: { r: this.Row, c: LaborColStart }, e: { r: this.Row, c: LaborColStart + ServiceInfo.ColRange - 1 } });
218
+ // LaborColStart += ServiceInfo.ColRange;
219
+ // });
220
+
221
+ // this.Row += 1;
222
+
223
+ // });
224
+ // this.Row += 1;
225
+ // }
226
+
227
+ this.Row += 1;
228
+ });
229
+ }
230
+
231
+ static ConvertToString(Text: any, IsString: any, DecimalsNumber: number) {
232
+ if (IsString) {
233
+ if (TrUtils.IsNull(Text)) {
234
+ Text = '';
235
+ }
236
+ } else {
237
+ if (TrUtils.IsNull(Text)) {
238
+ Text = 0;
239
+ }
240
+ }
241
+ if (typeof (Text) === 'number') {
242
+ return Number(TrUtils.FixedTo(Text, DecimalsNumber));
243
+ } else {
244
+ return Text;
245
+ }
246
+ }
247
+
248
+ static SetDataInCell(Data: any, ColRange: number, RowNum: any) {
249
+ var cell = { v: Data };
250
+ var cell_ref = XLSX.utils.encode_cell({ c: ColRange, r: RowNum });
251
+ if (this.range.e.c < ColRange) {
252
+ this.range.e.c = ColRange;
253
+ }
254
+ if (this.range.e.r < RowNum) {
255
+ this.range.e.r = RowNum;
256
+ }
257
+ cell = this.getcelltype(cell);
258
+ this.ws[cell_ref] = cell;
259
+ }
260
+
261
+ static getcelltype(cell: any) {
262
+ if (typeof cell.v === 'number') cell.t = 'n';
263
+ else if (typeof cell.v === 'boolean') cell.t = 'b';
264
+ else cell.t = 's';
265
+ return cell;
266
+ }
267
+
268
+ static ConvertDateToReadableFormat(DateObject: any) {
269
+ if (!TrUtils.IsEmpty(DateObject)) {
270
+ let date: any = new Date(DateObject);
271
+ let Month: any;
272
+ let Day: any;
273
+
274
+ let MonthName = new Array();
275
+ MonthName[0] = 'Jan';
276
+ MonthName[1] = 'Feb';
277
+ MonthName[2] = 'Mar';
278
+ MonthName[3] = 'Apr';
279
+ MonthName[4] = 'May';
280
+ MonthName[5] = 'Jun';
281
+ MonthName[6] = 'Jul';
282
+ MonthName[7] = 'Aug';
283
+ MonthName[8] = 'Sept';
284
+ MonthName[9] = 'Oct';
285
+ MonthName[10] = 'Nov';
286
+ MonthName[11] = 'Dec';
287
+
288
+ Month = MonthName[date.getMonth()];
289
+
290
+ if (date.getDate() < 10) {
291
+ Day = '0' + date.getDate();
292
+ } else {
293
+ Day = date.getDate();
294
+ }
295
+
296
+ date = Day + '-' + Month + '-' + date.getFullYear();
297
+ return date;
298
+ } else {
299
+ return null;
300
+ }
301
+ }
302
+
303
+ }
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+