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,291 @@
1
+
2
+ export class ContactPersonForEnum {
3
+ static Customer: string = 'Customer';
4
+ static Vendor: string = 'Vendor';
5
+ }
6
+
7
+ export class DropDownButtonTypesEnum {
8
+ static OnlyDefualtText: string = 'OnlyDefualtText';
9
+ static OnlyMaterialIcon: string = 'OnlyMaterialIcon';
10
+ static ArrowDownForDefualt: string = 'ArrowDownForDefualt';
11
+ static ArrowDownForList: string = 'ArrowDownForList';
12
+ static MultiAction: string = 'MultiAction';
13
+ }
14
+
15
+ export class DeleteTypeEnum {
16
+ static PartDelete: string = 'PartDelete';
17
+ static VehicleDelete: string = 'VehicleDelete';
18
+ static LaborDelete: string = 'LaborDelete';
19
+ static ComplaintDelete: string = 'ComplaintDelete';
20
+ }
21
+
22
+ export class ReceieveForEnum {
23
+ static ForRO: string = 'ForRO';
24
+ static ForPartOrder: string = 'ForPartOrder';
25
+ static ForStock: string = 'ForStock';
26
+ }
27
+
28
+ export class RecordOtherStatusEnum {
29
+ static Reopen: string = 'Reopen';
30
+ static Restart: string = 'Restart';
31
+ }
32
+
33
+ export class DescriptionForEnum {
34
+ static ForComplaint: string = 'ForComplaint';
35
+ static ForService: string = 'ForService';
36
+ static ForPart: string = 'ForPart';
37
+ }
38
+
39
+ export class ROTypeEnum {
40
+ static RepairOrder: string = 'WorkOrder';
41
+ static Estimate: string = 'Estimate';
42
+ static PartsOrder: string = 'PartsOrder';
43
+ static Invoice: string = 'Invoice';
44
+ static CreditNote: string = 'Credit Note';
45
+ static DebitNote: string = 'Debit Note';
46
+ static VenDebitNote: string = 'Vendor Debit Note';
47
+ static PurchaseOrder: string = 'PurchaseOrder';
48
+ static Bill: string = 'Bill';
49
+ static SalesOrder: string = 'SalesOrder';
50
+ static SalesEst: string = 'Sales Estimate';
51
+ static Challan: string = 'Delivery Challan';
52
+ static Appointment: string = 'Appointments';
53
+ static Tickets: string = 'Tickets';
54
+ }
55
+
56
+ export class SOTypeEnum {
57
+ static SO: string = 'SalesOrder';
58
+ static Estimate: string = 'Sales Estimate';
59
+ // static PartsOrder: string = 'PartsOrder';
60
+ // static Invoice: string = 'Invoice';
61
+ // static PurchaseOrder: string = 'PurchaseOrder';
62
+ // static Bill: string = 'Bill';
63
+ // static SalesOrder: string = 'SalesOrder';
64
+ }
65
+
66
+ export class PrintTypesEnum {
67
+ static RepairOrder: string = 'WorkOrder';
68
+ static Estimate: string = 'Estimate';
69
+ static Invoice: string = 'Invoice';
70
+ static PartsOrder: string = 'PartsOrder';
71
+ static Payments: string = 'Payments';
72
+ static Technician: string = 'Technician';
73
+ static PurOrder: string = 'PurchaseOrder';
74
+ }
75
+
76
+ export class POPartStatusEnum {
77
+ static New: string = 'New';
78
+ static Sent: string = 'Sent';
79
+ static Modified: string = 'Modified';
80
+ static Del: string = 'Del';
81
+ static Deleted: string = 'Deleted';
82
+ }
83
+
84
+ export class PermissionTypesEnum {
85
+ static New: string = 'CanCreate';
86
+ static View: string = 'CanView';
87
+ static Edit: string = 'CanEdit';
88
+ static Delete: string = 'CanDelete';
89
+ }
90
+
91
+ export class RoutePageNamesEnum {
92
+ static Chat: any = 'Chat';
93
+ static WorkOrder: any = 'Work Order';
94
+ static WOSearch: any = 'WO Search';
95
+ static WODashboard: any = 'WO Dashboard';
96
+ static SalesOrder: any = 'Sales Order';
97
+ static SODashboard: any = 'SO Dashboard';
98
+ static Estimate: any = 'Estimate';
99
+ static EstDashboard: any = 'Estimate Dashboard';
100
+ static Returns: any = 'Sales Returns';
101
+ static Packages: any = 'Packages';
102
+ static Variants: any = 'Variants';
103
+ static ItemGroups: any = 'ItemGroups';
104
+ static ServiceBillsDashboard: any = 'Service Bills Dashboard';
105
+ static ServicesBill: any = 'Services Bill';
106
+ static EstSearch: any = 'Estimate Search';
107
+ static JobsDashboard: any = 'Jobs Dashboard';
108
+ static Product: any = 'Product';
109
+ static ProductSearch: any = 'Product Search';
110
+ static Customer: any = 'Customer';
111
+ static Patient: any = 'Patient';
112
+ static CustSearch: any = 'Customer Search';
113
+ static Patients: any = 'Patients Search';
114
+ static Part: any = 'Part';
115
+ static SalesReceipt: any = 'Sales Receipt';
116
+ static SalesReceiptSearch: any = 'Sales Receipt Search';
117
+ static RRI: any = 'Return Requested Items';
118
+ static APL: any = 'Allocated Part List';
119
+ static Stock: string = 'Stock';
120
+ static RFQList: any = 'RFQ List';
121
+ static PODashboard: any = 'PO Dashboard';
122
+ static POSearch: any = 'PO Search';
123
+ static PartsSearch: any = 'Parts Order Search';
124
+ static PartsOrder: any = 'Parts Order';
125
+ static AdjustStock: any = 'Inventory Adjustments';
126
+ static IssueParts: any = 'Issue Parts';
127
+ static InsSettings: any = 'Insurance Settings';
128
+ static RecPartsSearch: any = 'Received Parts';
129
+ static Settings: any = 'Entity Settings';
130
+ static QuickItems: any = 'Quick List';
131
+ static CF: any = 'Custom Fields';
132
+ static MSettings: any = 'Module Settings';
133
+ static TU: any = 'Track User';
134
+ static SetUpLTG: any = 'Setup Labor Rates';
135
+ static SetUpLTG1: any = 'Labor Rates';
136
+ static User: any = 'User';
137
+ // static User: any = 'User';
138
+ // static Users: any = 'Users';
139
+ static Users: any = 'Users';
140
+ static Vendor: any = 'Vendor';
141
+ static VendorSearch: any = 'Vendor Search';
142
+ static QuickSrvcs: any = 'Quick Services';
143
+ static Invoices: any = 'Invoices';
144
+ static ReceivePayment: any = 'Receive Payment';
145
+ static PaymentSearch: any = 'Payment Search';
146
+ static UnAppliedPayments: any = 'Unapplied Payments';
147
+ static Reports: any = 'Reports';
148
+ static TaskSearch: string = 'Task Search';
149
+ static AdminTaskSearch: string = 'Admin Task Search';
150
+ static TaskCalendar: string = 'Task Calendar';
151
+ static ReportByAcc: any = 'Report By Accounts';
152
+ static InsuranceTieUp: any = 'Insurance Tie Up';
153
+ static Surveyors: any = 'Surveyors';
154
+ static VehicleOwnership: string = 'Vehicle Ownership';
155
+ static Invoice: any = 'Invoice';
156
+ static DebitNote: any = 'Debit Note';
157
+ static InvDashboard: any = 'Invoice Dashboard';
158
+ static CreditNotes: any = 'Credit Notes';
159
+ static CreditNote: any = 'Credit Note';
160
+ static InvSearch: any = 'Invoice Search';
161
+ static COA: any = 'Chart of Accounts';
162
+ static InvStngs: any = 'Invoice Settings';
163
+ static WhStngs: any = 'Warehouses';
164
+ static ReportByGST: any = 'GSTR1';
165
+ static VendorReport: any = 'vendor Report';
166
+ static CreateBill: string = 'Bill';
167
+ static CreateMO: string = 'Manufactur Order';
168
+ static CreateMI: string = 'Material In';
169
+ static CreateMOut: string = 'Material Out';
170
+ static CreateTrans: string = 'Transfer Order';
171
+ static PuODash: string = 'Purchase Order Dashboard';
172
+ static PuORet: string = 'Purchase Order Returns';
173
+ static PuOSea: string = 'Purchase Order Search';
174
+ static PO: string = 'Purchase Order';
175
+ static Maps: string = 'Maps';
176
+ static SalesPuODash: string = 'Purchase Order Dashboard';
177
+ static SalesPuOSea: string = 'Purchase Order Search';
178
+ static SalesPO: string = 'Purchase Order';
179
+ static BillDash: string = 'Bill Dashboard';
180
+ static MODash: string = 'Manufacture Orders';
181
+ static MIDash: string = 'Material In';
182
+ static MOutDash: string = 'Material Out';
183
+ static TransferOrder: string = 'Transfer Order';
184
+ static BillSea: string = 'Bill Search';
185
+ static PaymentsMade: string = 'Payments Made';
186
+ static BillPayment: string = 'Bill Payment';
187
+ static Projects: string = 'Projects';
188
+ static Project: string = 'New Project';
189
+ static Meetings: string = 'Meetings';
190
+ static Meeting: string = 'New Meeting';
191
+ static Tasks: string = 'Tasks';
192
+ static Task: string = 'New Task';
193
+ static TaskTemplate: string = 'New Task Template';
194
+ static TaskTemplates: string = 'Task Templates';
195
+ static TaskKanban: string = 'Task KanBan';
196
+ static Tags: string = 'Tags';
197
+ static TSheet: string = 'New Time Sheet';
198
+ static Decision: string = 'Decisions';
199
+ static WorkSpace: string = 'WorkSpace';
200
+ static WspcTask: string = 'WorkSpace Tasks';
201
+ static WspcMeeting: string = 'WorkSpace Meetings';
202
+ static WspcProj: string = 'WorkSpace Projects';
203
+ static Make: string = 'Make';
204
+ static Makes: string = 'MakesList';
205
+ static Modal: string = 'Modal';
206
+ static Modals: string = 'ModalsList';
207
+ static Complaints: string = 'Complaints';
208
+ static Complaint: string = 'Complaint';
209
+ static Diagnosis: string = 'Diagnosis';
210
+ static Procedures:string='Procedures';
211
+ static LabTests:string='Lab Investigation';
212
+ static Advices:string='Advices';
213
+ static Categories: string = 'Categories';
214
+ static Desgntn: string = 'Designations';
215
+ static Dept: string = 'Departments';
216
+ static Services: string = 'Services';
217
+ static Rsn: string = 'Reasons';
218
+ static MORsn: string = 'Material Out Reasons';
219
+ static Items: string = 'Items Settings';
220
+ static Attributes: string = 'Attributes';
221
+ static Service: string = 'Service';
222
+ static Roles: string = 'Roles';
223
+ static RepBGST: string = 'Report By GST';
224
+ static RepBGST2: string = 'Report By GSTR2';
225
+ static RepDash: string = 'Reports Dashboard';
226
+ static RepPayment: string = 'Payment Receive Report';
227
+ static SalRep: string = 'Sales Report';
228
+ static DChallan: any = 'Delivery Challan';
229
+ static CNote: any = 'Credit Note';
230
+ static DNote: any = 'Debit Note';
231
+ static SalRecReport: string = 'Sales Receipt Report';
232
+ static VCNote: any = 'Vendor Credit Note';
233
+ static VDNote: any = 'Vendor Debit Note';
234
+ static VDeNDash: any = 'Vendor Debit Note Dashboard';
235
+ static CheckIn: any = 'Check In/Out';
236
+ static EmployeeAtt: any = 'Employee Attendance';
237
+ static LiveLocation: any = 'Live Location';
238
+ static TikDash: any = 'Tickets Dashboard';
239
+ static ticket: any = 'Ticket';
240
+ static serapp: any = 'Service Appointments';
241
+ static serappDash: any = 'Service Appointments Dashboard';
242
+ static expDashboard: any = 'Expenses Dashboard';
243
+ static expens: any = 'Expense';
244
+ static HospitApp: any = 'Hospital Appointment';
245
+ }
246
+
247
+ export class DialogLeaveEnums {
248
+ static Ok: string = 'Ok';
249
+ static Cancel: string = 'Cancel';
250
+ }
251
+
252
+ export class IndustryTypeEnums {
253
+ static Vehicle: string = 'Vehicle';
254
+ static Product: string = 'Equipment';
255
+ static WO: string = 'Work Order';
256
+ static RO: string = 'Repair Order';
257
+ static Part: string = 'Part';
258
+ static Item: string = 'Item';
259
+ static Customer: string = 'Customer';
260
+ static Patient: string = 'Patient';
261
+ }
262
+
263
+ export class IndustryCodeEnums {
264
+ static Vehicle: string = 'AUTO';
265
+ }
266
+
267
+ export class EventsToAppEnums {
268
+ static StartDelivery: any = 'StartDelivery';
269
+ static EndDelivery: any = 'EndDelivery';
270
+ static StartAttendance: any = 'StartAttendance';
271
+ static EndAttendance: any = 'EndAttendance';
272
+ static LoginToken: any = 'LoginToken';
273
+ static EntityData: any = 'EntityData';
274
+ static PageReload: any = 'PageReload';
275
+ static SendLogs: any = 'SendLogs';
276
+ static TrackingStatus: any = 'TrackingStatus';
277
+ static LogoutLocationInitiate: any = 'LogoutLocationInitiate';
278
+ static LoginLocationInitiate: any = 'LoginLocationInitiate';
279
+ static LogoutSuccess: any = 'LogoutSuccess';
280
+ static OpenScanner: any = 'OpenScanner';
281
+ static StopScanner: any = 'StopScanner';
282
+ }
283
+
284
+ export class EventFromAppEnums {
285
+ static LoginSuccess: any = 'LoginSuccess';
286
+ static LogoutSuccess: any = 'LogoutSuccess';
287
+ static EventSaveFail: any = 'EventSaveFail';
288
+ static TrackingInfo: any = 'TrackingInfo';
289
+ static ScanResult: any = 'ScanResult';
290
+ }
291
+
@@ -0,0 +1,9 @@
1
+ export enum CountryEnum {
2
+ India = 'IN',
3
+ Australia = 'AU',
4
+ UnitedStates = 'US',
5
+ UnitedKingdom = 'GB',
6
+ Canada = 'CA',
7
+ Japan = 'JP',
8
+ Brazil = 'BR',
9
+ }
@@ -0,0 +1,364 @@
1
+ export class CustomerTypesEnum {
2
+ static Individual: string = 'Individual';
3
+ static Company: string = 'Company';
4
+ }
5
+
6
+ export class TitlesEnum {
7
+ static Mister: string = 'Mr.';
8
+ static Miss: string = 'Ms.';
9
+ static Misses: string = 'Mrs.';
10
+ static Doctor: string = 'Dr.';
11
+ static Ms: string = 'M/s.';
12
+ }
13
+
14
+ export class InvoiceStatusEnum {
15
+ static Unpaid: string = 'Unpaid';
16
+ static Partial: string = 'Partial';
17
+ static Closed: string = 'Closed';
18
+ static Unsplit: string = 'Unsplit';
19
+ static Draft: string = 'Draft';
20
+ static Cancelled: string = 'Cancelled';
21
+ }
22
+
23
+ export class ConsultationStatusEnum {
24
+ static Scheduled: string = 'Scheduled';
25
+ static InProgress: string = 'InProgress';
26
+ static Completed: string = 'Completed';
27
+ static Cancelled: string = 'Cancelled';
28
+ }
29
+
30
+ export class AppointmentStatusEnum {
31
+ static Scheduled: string = 'Scheduled';
32
+ static Completed: string = 'Completed';
33
+ static Cancelled: string = 'Cancelled';
34
+ }
35
+
36
+ export class DCStatusEnum {
37
+ static Draft: string = 'Draft';
38
+ static New: string = 'New';
39
+ static Approved: string = 'Approved';
40
+ static Delivered: string = 'Delivered';
41
+ static Return: string = 'Return';
42
+ static Shipped: string = 'Shipped';
43
+ static Invoiced: string = 'Invoiced';
44
+ static PartialInvoice: string = 'Partially Invoiced';
45
+
46
+ }
47
+
48
+ export class CustomerCNStatusEnum {
49
+ static Draft: string = 'Draft';
50
+ static Approved: string = 'Approved';
51
+ }
52
+
53
+ export class SOStatusEnum {
54
+ static New: string = 'New';
55
+ static BeingInspected: string = 'Being Inspected';
56
+ static WtngForAppr: string = 'Waiting For Approval';
57
+ static Approved: string = 'Approved';
58
+ static Confirmed: string = 'Confirmed';
59
+ static OnHold: string = 'On Hold';
60
+ static Draft: string = 'Draft';
61
+ static InProgress: string = 'In Progress';
62
+ static WtngForParts: string = 'Waiting for Parts';
63
+ static PartsAvl: string = 'Parts Available';
64
+ static Review: string = 'Review';
65
+ static Completed: string = 'Completed';
66
+ static Closed: string = 'Closed';
67
+ static Cancelled: string = 'Cancelled';
68
+ static Declined: string = 'Declined';
69
+ static PartialInvoice: string = 'Partially Invoiced';
70
+ static Invoiced: string = 'Invoiced';
71
+ }
72
+
73
+ export class PackagesEnum {
74
+ static NotShipped: string = 'Not Shipped';
75
+ static Shipped: string = 'Shipped';
76
+ static Delivered: string = 'Delivered';
77
+
78
+ }
79
+
80
+ export class ShipmentStatusEnum {
81
+ static Fulfilled: string = 'Fulfilled';
82
+ static Shipped: string = 'Shipped';
83
+ static PartialShipped: string = 'Partially Shipped';
84
+
85
+ }
86
+
87
+ export class SalesReturnsEnum {
88
+ static Closed: string = 'Closed';
89
+ static Approved: string = 'Approved';
90
+ static Received: string = 'Received';
91
+ static PartiallyReceived: string = 'Partially Received';
92
+
93
+ }
94
+
95
+ export class GenderEnum {
96
+ static Male: string = 'Male';
97
+ static Female: string = 'Female';
98
+ }
99
+
100
+ export class PartsOrderStatusEnum {
101
+ static New: string = 'New';
102
+ static WtngForParts: string = 'Waiting for Parts';
103
+ static Received: string = 'Received';
104
+ static Cancelled: string = 'Cancelled';
105
+ static Closed: string = 'Closed';
106
+ }
107
+
108
+ export class ChallanStatusEnum {
109
+ static Draft: string = 'Draft';
110
+ static Approved: string = 'Approved';
111
+ static PartialInvoice: string = 'Partially Invoiced';
112
+ static Cancelled: string = 'Cancelled';
113
+ static Closed: string = 'Closed';
114
+ }
115
+
116
+ export class ROStatusEnum {
117
+ static New: string = 'Draft';
118
+ static BeingInspected: string = 'Being Inspected';
119
+ static WtngForAppr: string = 'Waiting For Approval';
120
+ static Approved: string = 'Approved';
121
+ static OnHold: string = 'On Hold';
122
+ static InProgress: string = 'In Progress';
123
+ static WtngForParts: string = 'Waiting for Parts';
124
+ static PartsAvl: string = 'Parts Available';
125
+ static Review: string = 'Review';
126
+ static Completed: string = 'Completed';
127
+ static Closed: string = 'Closed';
128
+ static Cancelled: string = 'Cancelled';
129
+ static Declined: string = 'Declined';
130
+ }
131
+
132
+ export class PayTypeEnum {
133
+ static Customer: string = 'Cus';
134
+ static Insurance: string = 'Ins';
135
+ static Internal: string = 'Int';
136
+ static Warranty: string = 'War';
137
+ static Shared: string = 'InCu';
138
+ }
139
+
140
+ export class LaborStatusEnum {
141
+ static New: string = 'New';
142
+ static WtngForAppr: string = 'Waiting For Approval';
143
+ static Approved: string = 'Approved';
144
+ static OnHold: string = 'On Hold';
145
+ static InProgress: string = 'In Progress';
146
+ static WtngForParts: string = 'Waiting for Parts';
147
+ static Review: string = 'Review';
148
+ static PartsAvl: string = 'Parts Available';
149
+ static Completed: string = 'Completed';
150
+ static Declined: string = 'Declined';
151
+ static Cancelled: string = 'Cancelled';
152
+ }
153
+
154
+ export class EstimateStatusEnum {
155
+ static New: string = 'Draft';
156
+ static Draft: string = 'Draft';
157
+ static WtngForAppr: string = 'Waiting For Approval';
158
+ static OnHold: string = 'On Hold';
159
+ static Approved: string = 'Approved';
160
+ static Confirmed: string = 'Confirmed';
161
+ static Declined: string = 'Declined';
162
+ static Converted: string = 'Converted';
163
+ static Cancelled: string = 'Cancelled';
164
+ static Supplementary: string = 'Supplementary';
165
+ }
166
+
167
+ export class PurchaseOrderStatusEnum {
168
+ static New: string = 'Draft';
169
+ static NeedToSend: string = 'Need To Be Sent';
170
+ static Sent: string = 'Sent';
171
+ static Approved: string = 'Approved';
172
+ static Partial: string = 'Partially Received';
173
+ static Received: string = 'Received';
174
+ static PartialBilled: string = 'Partially Billed';
175
+ static Billed: string = 'Billed';
176
+ static Cancelled: string = 'Cancelled';
177
+ static Modified: string = 'Modified';
178
+ static Deleted: string = 'Deleted';
179
+ static Closed: string = 'Closed';
180
+ }
181
+
182
+ export class PRStatusEnum {
183
+ static New: string = 'New';
184
+ static Received: string = 'Received';
185
+ static PartialBilled: string = 'Partially Billed';
186
+ static Billed: string = 'Billed';
187
+ }
188
+
189
+ export class UserRoleEnum {
190
+ static Owner: string = 'Owner';
191
+ static Admin: string = 'Admin';
192
+ static SrvcManager: string = 'Service Manager';
193
+ static SrvcAdvisor: string = 'Service Advisor';
194
+ static Cashier: string = 'Cashier';
195
+ static Technician: string = 'Technician';
196
+ static PartsManager: string = 'Parts Manager';
197
+ static PartsInvClerk: string = 'Parts Inventory Clerk';
198
+ }
199
+
200
+ export class BillStatusEnum {
201
+ static New: string = 'Draft';
202
+ static UnPaid: string = 'Unpaid';
203
+ static Partial: string = 'Partial';
204
+ static OverDue: string = 'OverDue';
205
+ static Paid: string = 'Paid';
206
+ static Closed: string = 'Closed';
207
+ static Cancelled: string = 'Cancelled';
208
+ static PenddingApproval: string = 'Pending Approval';
209
+ }
210
+
211
+ export class ModulesEnum {
212
+
213
+ static Est: string = 'Est';
214
+ static WO: string = 'WO';
215
+ static PO: string = 'PO';
216
+ static Proj: string = 'Proj';
217
+ static Wrkspc: string = 'WorkSpace';
218
+ static Meet: string = 'Meet';
219
+ static Task: string = 'Task';
220
+ static TSheet: string = 'TSheet';
221
+ static Parts: string = 'Parts';
222
+ static IssParts: string = 'IssueParts';
223
+ static Products: string = 'Products';
224
+ static ItemsModule: string = 'ItemMod';
225
+ static Stock: string = 'Stock';
226
+ static Inv: string = 'Inv';
227
+ static QuoteModule: string = 'QuoMod';
228
+ static POModule: string = 'POMod';
229
+ static Acc: string = 'Acc';
230
+ static RepModule: string = 'RepMod';
231
+ static ROModule: string = 'ROMod';
232
+ static EstModule: string = 'EstMod';
233
+ }
234
+
235
+ export class ModuleCodeEnums {
236
+ static AccCode: string = '101';
237
+ static SalesCode: string = '102';
238
+ static ServiceCode: string = '103';
239
+ static InventoryCode: string = '104';
240
+ static CommCode: string = '105';
241
+ static PayRollCode: string = '106';
242
+ static WorksCode: string = '107';
243
+ static DeskCode: string = '108';
244
+ static FinInsCode: string = '109';
245
+ }
246
+
247
+ export class ModulesHeaderTitle {
248
+
249
+ static Est: string = 'Est';
250
+ static WO: string = 'WO';
251
+ static PO: string = 'PO';
252
+ static Proj: string = 'Proj';
253
+ static Meet: string = 'Meet';
254
+ static Task: string = 'Task';
255
+ static Parts: string = 'Parts';
256
+ static Products: string = 'Products';
257
+ static ItemsModule: string = 'ParMod';
258
+ static Stock: string = 'Stock';
259
+ static Inv: string = 'Inv';
260
+ static QuoteModule: string = 'QuoMod';
261
+ static POModule: string = 'POMod';
262
+ static Acc: string = 'Acc';
263
+ static RepModule: string = 'RepMod';
264
+ static ROModule: string = 'ROMod';
265
+ static EstModule: string = 'EstMod';
266
+ }
267
+
268
+ export class ModulesNameEnum {
269
+ static Admin: string = 'Admin';
270
+ static Sales: string = 'Sales';
271
+ static Counter: string = 'Counter Sales';
272
+ static Service: string = 'Service';
273
+ static Receivables: string = 'Receivables';
274
+ static Payables:string='Payables';
275
+ static Surveyor: string = 'Surveyor';
276
+ static Inventory: string = 'Inventory';
277
+ static Acc: string = 'Accounting';
278
+ static Common: string = 'Common';
279
+ static Works: string = 'Works';
280
+ static Employee: string = 'Employee';
281
+ static Vendor: string = 'Vendor';
282
+ static Customer: string = 'Customer';
283
+ static Reports: string = 'Reports';
284
+ static Attendance: string = 'Tracking';
285
+ static Appointments: string = 'Appointments';
286
+ static HospitAppoint: string = 'Appointments'; // Hospital Appointments
287
+ static Purchase: string = 'Purchases';
288
+ static GSTRep: string = 'GST Reports';
289
+ }
290
+
291
+ export class ModulesGroupEnum {
292
+ static Settings: string = 'settings';
293
+ static Emp: string = 'employee';
294
+ static Sales: string = 'sales';
295
+ static Service: string = 'service';
296
+ static Surveyor: string = 'Surveyor';
297
+ static Appointments: string = 'Appointments';
298
+ static HospitAppoint: string = 'H Appointments';
299
+ static Inventory: string = 'inventory';
300
+ static Acc: string = 'accounting';
301
+ static Common: string = 'common';
302
+ static Works: string = 'works';
303
+ static Employee: string = 'employee';
304
+ static Vendor: string = 'vendor';
305
+ static Customer: string = 'customer';
306
+ static Reports: string = 'Reports';
307
+ static Attendance: string = 'Tracking';
308
+ static Challans: string = 'Challans';
309
+ static Tickets: string = 'Tickets';
310
+ static Expenses: string = 'Expenses';
311
+ }
312
+
313
+ export class RouteModulesEnum {
314
+ static Sales: string = 'Sales';
315
+ static Service: string = 'Service';
316
+ static Surveyor: string = 'Surveyor';
317
+ static Appointments: string = 'Appointments';
318
+ static HospitAppoint: string = 'H Appointments';
319
+ static WO: string = 'Work Order';
320
+ static Est: string = 'Estimate';
321
+ static Inventory: string = 'Inventory';
322
+ static Acc: string = 'Acc';
323
+ static Challan: string = 'Challan';
324
+ static Common: string = 'Common';
325
+ static Works: string = 'Works';
326
+ static Admin: string = 'Admin';
327
+ static Emp: string = 'Employee';
328
+ static Customer: string = 'Customer';
329
+ static Patient: string = 'Patient';
330
+ static Reports: string = 'Reports';
331
+ static Vendor: string = 'Vendor';
332
+ static Task: string = 'Task';
333
+ static Meet: string = 'Meeting';
334
+ static Proj: string = 'Projects';
335
+ static Wrkspc: string = 'Workspace';
336
+ static PO: string = 'Purchase Order';
337
+ static SO: string = 'Sales Order';
338
+ static Parts: string = 'Parts';
339
+ static Products: string = 'Products';
340
+ static Bills: string = 'Bills';
341
+ static Attendance: string = 'Tracking';
342
+ static Tickets: string = 'Tickets';
343
+ static Esxpenses: string = 'Expenses';
344
+ }
345
+
346
+ export class TaskStatusEnum {
347
+ static New: string = 'New';
348
+ static InProgress: string = 'In Progress';
349
+ static InReview: string = 'In Review';
350
+ static OnHold: string = 'On Hold';
351
+ static Rejected: string = 'Rejected';
352
+ static Completed: string = 'Completed';
353
+ static Cancelled: string = 'Cancelled';
354
+ }
355
+
356
+ export class TaskRolesEnum {
357
+ static Owner: string = 'Owner';
358
+ static Admin: string = 'Admin';
359
+ static Manager: string = 'Manager';
360
+ static Assignee: string = 'Assignee';
361
+ static Contributor: string = 'Contributor';
362
+ static Observer: string = 'Observer';
363
+ static Custom: string = 'Custom';
364
+ }
@@ -0,0 +1,26 @@
1
+ export enum IndustryType {
2
+ // Healthcare
3
+ HC1 = 'HC-1', // Pharma Distributor/ Wholesaler
4
+ HC2 = 'HC-2', // Pharmacy Only - Retail
5
+ HC3 = 'HC-3', // Hospital only
6
+ HC4 = 'HC-4', // Hospital and Pharmacy
7
+
8
+ // Automobile
9
+ AUTO1 = 'AUTO-1', // Automobile Workshop
10
+ AUTO2 = 'AUTO-2', // Automobile Dealer
11
+ AUTO3 = 'AUTO-3', // Automobile Parts Distributor/ Wholesaler
12
+ AUTO4 = 'AUTO-4', // Automobile Insurance Surveyor
13
+
14
+ // Services
15
+ SVCS1 = 'SVCS-1', // Equipment Dealer
16
+ SVCS2 = 'SVCS-2', // Equipment Parts Distributor/ Wholesaler
17
+ SVCS3 = 'SVCS-3', // Equipment Service Center
18
+
19
+ // Manufacture
20
+ MAN1 = 'MAN-1', // Paper Manufacturer
21
+
22
+ OTHER = 'OTHER', // Any other business
23
+
24
+ PROJECTS = "PROJECTS", // Projects, like electical line, cable line installation,...etc
25
+ }
26
+