shareneus 1.5.33 → 1.5.35
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.
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare class ProductWithoutOwnerXlsxFileService {
|
|
2
|
+
static wb: any;
|
|
3
|
+
static Row: any;
|
|
4
|
+
static MergeArray: any[];
|
|
5
|
+
static range: {
|
|
6
|
+
s: {
|
|
7
|
+
c: number;
|
|
8
|
+
r: number;
|
|
9
|
+
};
|
|
10
|
+
e: {
|
|
11
|
+
c: number;
|
|
12
|
+
r: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
static ws: any;
|
|
16
|
+
static GetProductWithoutOwnerExcelData(MainData: any, searchValue: any, HeaderName: any, EntitySettings: any): any;
|
|
17
|
+
static setHeadingInCell(HeaderName: any, showSearch: any): void;
|
|
18
|
+
static setInvoiceDetailsInCell(MainData: any, DecimalsNumber: number): void;
|
|
19
|
+
static SetInvoiceDataInExcel(InvoiceInfo: any, DecimalsNumber: number): void;
|
|
20
|
+
static ProductValue(InvoiceInfo: any): string;
|
|
21
|
+
static ConvertToString(Text: any, IsString: any, DecimalsNumber: number): any;
|
|
22
|
+
static SetDataInCell(Data: any, ColRange: number, RowNum: any): void;
|
|
23
|
+
static getcelltype(cell: any): any;
|
|
24
|
+
static ConvertDateToReadableFormat(DateObject: any): any;
|
|
25
|
+
}
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.ProductWithoutOwnerXlsxFileService = void 0;
|
|
27
|
+
const XLSX = __importStar(require("xlsx"));
|
|
28
|
+
const tr_utils_1 = require("../../../utils/tr-utils");
|
|
29
|
+
const my_date_1 = require("../../../utils/my-date");
|
|
30
|
+
class ProductWithoutOwnerXlsxFileService {
|
|
31
|
+
static GetProductWithoutOwnerExcelData(MainData, searchValue, HeaderName, EntitySettings) {
|
|
32
|
+
this.wb = {};
|
|
33
|
+
this.ws = {};
|
|
34
|
+
this.Row = 0;
|
|
35
|
+
this.range = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
|
|
36
|
+
this.MergeArray = [];
|
|
37
|
+
let ws_name = HeaderName;
|
|
38
|
+
this.wb.Sheets = {};
|
|
39
|
+
this.wb.Props = {};
|
|
40
|
+
this.wb.SSF = {};
|
|
41
|
+
this.wb.SheetNames = [];
|
|
42
|
+
// MainData = this.GetTotals(MainData);
|
|
43
|
+
let showSearch = [];
|
|
44
|
+
for (const key in searchValue) {
|
|
45
|
+
if (!tr_utils_1.TrUtils.IsNull(searchValue[key]) && key !== 'Date' && key !== 'CustCntrlId' && key !== 'DescCntrlId') {
|
|
46
|
+
showSearch.push([{
|
|
47
|
+
text: (key === 'StDate') ? 'Start Date' : (key === 'EnDate') ? 'End Date' : (key === 'CustCntrl') ? 'Customer' : (key === 'DescCntrl') ? 'Item' : key,
|
|
48
|
+
ColRange: 1,
|
|
49
|
+
bold: true,
|
|
50
|
+
ChildHeadings: [
|
|
51
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
52
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
53
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
54
|
+
],
|
|
55
|
+
}, {
|
|
56
|
+
text: (key === 'StDate') ? my_date_1.MyDate.ConvertUTCDateToReadable(searchValue[key]) : (key === 'EnDate') ? my_date_1.MyDate.ConvertUTCDateToReadable(searchValue[key]) : searchValue[key],
|
|
57
|
+
ColRange: 7,
|
|
58
|
+
bold: true,
|
|
59
|
+
ChildHeadings: [
|
|
60
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
61
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
62
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
63
|
+
],
|
|
64
|
+
}]);
|
|
65
|
+
}
|
|
66
|
+
// console.log(`${key}: ${searchValue[key]}`);
|
|
67
|
+
}
|
|
68
|
+
this.setHeadingInCell(HeaderName, showSearch);
|
|
69
|
+
this.setInvoiceDetailsInCell(MainData, EntitySettings.DecimalsNumber);
|
|
70
|
+
this.ws['!ref'] = XLSX.utils.encode_range(this.range);
|
|
71
|
+
this.ws['!merges'] = this.MergeArray;
|
|
72
|
+
this.ws["!cols"] = [{ wch: 15 }, { wch: 15 }, { wch: 20 }, { wch: 20 }, { wch: 20 }, { wch: 15 }, { wch: 15 }, { wch: 15 }];
|
|
73
|
+
this.wb.SheetNames.push(ws_name);
|
|
74
|
+
this.wb.Sheets[ws_name] = this.ws;
|
|
75
|
+
return this.wb;
|
|
76
|
+
}
|
|
77
|
+
static setHeadingInCell(HeaderName, showSearch) {
|
|
78
|
+
let MainHeadings = [
|
|
79
|
+
// {
|
|
80
|
+
// text: 'SNo',
|
|
81
|
+
// ColRange: 1,
|
|
82
|
+
// bold: true,
|
|
83
|
+
// ChildHeadings: []
|
|
84
|
+
// },
|
|
85
|
+
{
|
|
86
|
+
text: 'Customer Name',
|
|
87
|
+
ColRange: 1,
|
|
88
|
+
bold: true,
|
|
89
|
+
ChildHeadings: [],
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
text: 'Phone',
|
|
93
|
+
ColRange: 1,
|
|
94
|
+
bold: true,
|
|
95
|
+
ChildHeadings: [
|
|
96
|
+
// { text: 'No', ColRange: 1 },
|
|
97
|
+
// { text: 'Date', ColRange: 1 },
|
|
98
|
+
// { text: 'Invoice Total', ColRange: 1 }
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
text: 'Vehicle',
|
|
103
|
+
ColRange: 1,
|
|
104
|
+
bold: true,
|
|
105
|
+
ChildHeadings: [
|
|
106
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
107
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
108
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
109
|
+
],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
text: 'Regn No',
|
|
113
|
+
ColRange: 1,
|
|
114
|
+
bold: true,
|
|
115
|
+
ChildHeadings: [
|
|
116
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
117
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
118
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
text: 'VIN',
|
|
123
|
+
ColRange: 1,
|
|
124
|
+
bold: true,
|
|
125
|
+
ChildHeadings: [
|
|
126
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
127
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
128
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
text: 'Owner Ship Start Date',
|
|
133
|
+
ColRange: 1,
|
|
134
|
+
bold: true,
|
|
135
|
+
ChildHeadings: [
|
|
136
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
137
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
138
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
text: 'Owner Ship End Date',
|
|
143
|
+
ColRange: 1,
|
|
144
|
+
bold: true,
|
|
145
|
+
ChildHeadings: [
|
|
146
|
+
// { text: 'Central Tax', ColRange: 1 },
|
|
147
|
+
// { text: 'State Tax', ColRange: 1 },
|
|
148
|
+
// { text: 'IGST Tax', ColRange: 1 },
|
|
149
|
+
],
|
|
150
|
+
}
|
|
151
|
+
];
|
|
152
|
+
this.SetDataInCell(HeaderName, 0, this.Row);
|
|
153
|
+
this.MergeArray.push({
|
|
154
|
+
s: { r: this.Row, c: 0 },
|
|
155
|
+
e: { r: this.Row, c: 0 + 8 - 1 },
|
|
156
|
+
});
|
|
157
|
+
this.Row += 2;
|
|
158
|
+
// console.log('showSearch', showSearch);
|
|
159
|
+
showSearch.forEach((search) => {
|
|
160
|
+
let ColStart = 0;
|
|
161
|
+
// console.log('search', search, ColStart);
|
|
162
|
+
search.forEach((item) => {
|
|
163
|
+
// console.log('text', oyo.text, ColStart);
|
|
164
|
+
this.SetDataInCell(item.text, ColStart, this.Row);
|
|
165
|
+
this.MergeArray.push({
|
|
166
|
+
s: { r: this.Row, c: ColStart },
|
|
167
|
+
e: { r: this.Row, c: ColStart + item.ColRange - 1 },
|
|
168
|
+
});
|
|
169
|
+
ColStart += item.ColRange;
|
|
170
|
+
});
|
|
171
|
+
this.Row += 1;
|
|
172
|
+
});
|
|
173
|
+
this.Row += 1;
|
|
174
|
+
let MainColStart = 0;
|
|
175
|
+
MainHeadings.forEach((MainHeader) => {
|
|
176
|
+
this.SetDataInCell(MainHeader.text, MainColStart, this.Row);
|
|
177
|
+
this.MergeArray.push({
|
|
178
|
+
s: { r: this.Row, c: MainColStart },
|
|
179
|
+
e: { r: this.Row, c: MainColStart + MainHeader.ColRange - 1 },
|
|
180
|
+
});
|
|
181
|
+
MainColStart += MainHeader.ColRange;
|
|
182
|
+
});
|
|
183
|
+
this.Row += 2;
|
|
184
|
+
}
|
|
185
|
+
static setInvoiceDetailsInCell(MainData, DecimalsNumber) {
|
|
186
|
+
MainData.forEach((InvoiceList) => {
|
|
187
|
+
this.SetInvoiceDataInExcel(InvoiceList, DecimalsNumber);
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
static SetInvoiceDataInExcel(InvoiceInfo, DecimalsNumber) {
|
|
191
|
+
InvoiceInfo.OwnershipStartDate = this.ConvertDateToReadableFormat(InvoiceInfo.OwnershipStartDate || InvoiceInfo.OwnershipFrom);
|
|
192
|
+
InvoiceInfo.OwnershipEndDate = this.ConvertDateToReadableFormat(InvoiceInfo.OwnershipEndDate || InvoiceInfo.OwnershipTo);
|
|
193
|
+
let Vehicle = this.ProductValue(InvoiceInfo);
|
|
194
|
+
let InvoiceData = [
|
|
195
|
+
{ text: InvoiceInfo.LastOwnerName || InvoiceInfo.CustomerName, ColRange: 1, IsString: true },
|
|
196
|
+
{ text: InvoiceInfo.LastOwnerPhone || InvoiceInfo.Phone, ColRange: 1, IsString: true },
|
|
197
|
+
{ text: Vehicle, ColRange: 1, IsString: true },
|
|
198
|
+
{ text: InvoiceInfo.RegistrationNo, ColRange: 1, IsString: false },
|
|
199
|
+
{ text: InvoiceInfo.VIN, ColRange: 1, IsString: false },
|
|
200
|
+
{ text: InvoiceInfo.OwnershipStartDate, ColRange: 1, IsString: false },
|
|
201
|
+
{ text: InvoiceInfo.OwnershipEndDate, ColRange: 1, IsString: false },
|
|
202
|
+
// { text: TrUtils.FixPriceValue(InvoiceInfo.Items.UnAmt), ColRange: 1, IsString: false }
|
|
203
|
+
];
|
|
204
|
+
let ColStart = 0;
|
|
205
|
+
InvoiceData.forEach((InvData) => {
|
|
206
|
+
InvData.text = this.ConvertToString(InvData.text, InvData.IsString, DecimalsNumber);
|
|
207
|
+
this.SetDataInCell(InvData.text, ColStart, this.Row);
|
|
208
|
+
this.MergeArray.push({
|
|
209
|
+
s: { r: this.Row, c: ColStart },
|
|
210
|
+
e: { r: this.Row, c: ColStart + InvData.ColRange - 1 },
|
|
211
|
+
});
|
|
212
|
+
ColStart += InvData.ColRange;
|
|
213
|
+
});
|
|
214
|
+
this.Row += 1;
|
|
215
|
+
}
|
|
216
|
+
static ProductValue(InvoiceInfo) {
|
|
217
|
+
// if (!this.isOtherIndustry) {
|
|
218
|
+
let prod = '';
|
|
219
|
+
if (!tr_utils_1.TrUtils.IsNull(InvoiceInfo.Model)) {
|
|
220
|
+
prod = prod + InvoiceInfo.Model;
|
|
221
|
+
}
|
|
222
|
+
if (!tr_utils_1.TrUtils.IsNull(InvoiceInfo.Year)) {
|
|
223
|
+
prod = prod + ' ' + InvoiceInfo.Year;
|
|
224
|
+
}
|
|
225
|
+
if (!tr_utils_1.TrUtils.IsNull(InvoiceInfo.Variant)) {
|
|
226
|
+
prod = prod + ' ' + InvoiceInfo.Variant;
|
|
227
|
+
}
|
|
228
|
+
return prod;
|
|
229
|
+
// } else {
|
|
230
|
+
// return params.data.Model;
|
|
231
|
+
// }
|
|
232
|
+
}
|
|
233
|
+
static ConvertToString(Text, IsString, DecimalsNumber) {
|
|
234
|
+
if (IsString) {
|
|
235
|
+
if (Text == null) {
|
|
236
|
+
Text = '';
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
else {
|
|
240
|
+
if (Text == null) {
|
|
241
|
+
Text = 0;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
if (typeof Text === 'number') {
|
|
245
|
+
return Number(tr_utils_1.TrUtils.FixedTo(Text, DecimalsNumber));
|
|
246
|
+
}
|
|
247
|
+
else {
|
|
248
|
+
return Text;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
static SetDataInCell(Data, ColRange, RowNum) {
|
|
252
|
+
// console.log(ColRange, RowNum);
|
|
253
|
+
var cell = { v: Data, bold: true };
|
|
254
|
+
var cell_ref = XLSX.utils.encode_cell({ c: ColRange, r: RowNum });
|
|
255
|
+
if (this.range.e.c < ColRange) {
|
|
256
|
+
this.range.e.c = ColRange;
|
|
257
|
+
}
|
|
258
|
+
if (this.range.e.r < RowNum) {
|
|
259
|
+
this.range.e.r = RowNum;
|
|
260
|
+
}
|
|
261
|
+
cell = this.getcelltype(cell);
|
|
262
|
+
this.ws[cell_ref] = cell;
|
|
263
|
+
}
|
|
264
|
+
static getcelltype(cell) {
|
|
265
|
+
if (typeof cell.v === 'number')
|
|
266
|
+
cell.t = 'n';
|
|
267
|
+
else if (typeof cell.v === 'boolean')
|
|
268
|
+
cell.t = 'b';
|
|
269
|
+
else
|
|
270
|
+
cell.t = 's';
|
|
271
|
+
return cell;
|
|
272
|
+
}
|
|
273
|
+
static ConvertDateToReadableFormat(DateObject) {
|
|
274
|
+
if (!tr_utils_1.TrUtils.IsEmpty(DateObject)) {
|
|
275
|
+
let date = new Date(DateObject);
|
|
276
|
+
let Month;
|
|
277
|
+
let Day;
|
|
278
|
+
let MonthName = new Array();
|
|
279
|
+
MonthName[0] = 'Jan';
|
|
280
|
+
MonthName[1] = 'Feb';
|
|
281
|
+
MonthName[2] = 'Mar';
|
|
282
|
+
MonthName[3] = 'Apr';
|
|
283
|
+
MonthName[4] = 'May';
|
|
284
|
+
MonthName[5] = 'Jun';
|
|
285
|
+
MonthName[6] = 'Jul';
|
|
286
|
+
MonthName[7] = 'Aug';
|
|
287
|
+
MonthName[8] = 'Sept';
|
|
288
|
+
MonthName[9] = 'Oct';
|
|
289
|
+
MonthName[10] = 'Nov';
|
|
290
|
+
MonthName[11] = 'Dec';
|
|
291
|
+
Month = MonthName[date.getMonth()];
|
|
292
|
+
if (date.getDate() < 10) {
|
|
293
|
+
Day = '0' + date.getDate();
|
|
294
|
+
}
|
|
295
|
+
else {
|
|
296
|
+
Day = date.getDate();
|
|
297
|
+
}
|
|
298
|
+
date = Day + '-' + Month + '-' + date.getFullYear();
|
|
299
|
+
return date;
|
|
300
|
+
}
|
|
301
|
+
else {
|
|
302
|
+
return null;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
exports.ProductWithoutOwnerXlsxFileService = ProductWithoutOwnerXlsxFileService;
|
|
307
|
+
ProductWithoutOwnerXlsxFileService.wb = {};
|
|
308
|
+
ProductWithoutOwnerXlsxFileService.Row = 2;
|
|
309
|
+
ProductWithoutOwnerXlsxFileService.MergeArray = [];
|
|
310
|
+
ProductWithoutOwnerXlsxFileService.range = { s: { c: 0, r: 0 }, e: { c: 0, r: 0 } };
|
|
311
|
+
ProductWithoutOwnerXlsxFileService.ws = {};
|
package/dist/index.d.ts
CHANGED
|
@@ -134,3 +134,4 @@ export { GetAgeString, GetNumber } from "./shared/util";
|
|
|
134
134
|
export { SalesTotalCalculationsWithDecimals } from "./sales-receive/sales-total-calculation";
|
|
135
135
|
export { ServiceHistoryPDFService } from "./services/service-history-pdf.service";
|
|
136
136
|
export { Add, Subtract, Multiply, Divide } from "./shared/math-operations";
|
|
137
|
+
export { ProductWithoutOwnerXlsxFileService } from "./common/reports/excel/product-without-owner-excel.service";
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DebitNotePdfService = exports.DCWithoutPricePdfService = exports.DCLandscapeWithoutPricePdfService = exports.DCLandscapePdfService = exports.CustomerBalancesService = exports.SalesByCustomerPDFService = exports.CustWiseSalesDetailsService = exports.CreditNoteTotalsService = exports.CreditNotePdfService = exports.ConsultationPDFService = exports.ConsultationFullPrintService = exports.ConsultationFeeReceiptPrintService = exports.CNPrintService = exports.ChecklistsPDFService = exports.CheckListPrintService = exports.CategoryWiseItemPDFService = exports.SalesReceiptprintService = exports.AppointmentTotalsService = exports.AnalysisPDFService = exports.VenBalanceXlsxFileService = exports.TallySalesImportXlsxFileService = exports.StockXlsxFileService = exports.IssueSparesXlsxFileService = exports.ScheduledDrugXlsxFileService = exports.ScheduledDrugSummaryXlsxFileService = exports.SalesByServiceSummaryXlsxFileService = exports.SummaryXlsxFileService = exports.ServiceAdvisorWisePartXlsxFileService = exports.ServiceAdvisorWiseLaborXlsxFileService = exports.RepairOrdersXlsxFileService = exports.PaymentsMadeXlsxFileService = exports.PaymentReceiveXlsxFileService = exports.OperatorWiseSummaryXlsxFileService = exports.OperatorWiseDetailsXlsxFileService = exports.ManfWiseSalesXlsxFileService = exports.ItemsWiseSalesXlsxFileService = exports.ItemWiseMOSummaryXlsxFileService = exports.ItemWiseMODetailsXlsxFileService = exports.ItemWiseDoctorSaleXlsxFileService = exports.InvoicesWiseXlsxFileService = exports.InsuranceExpireXlsxFileService = exports.GSTR2ExcelService = exports.GSTR1ExcelService = exports.GSTROXlsxFileService = exports.ExpiringDrugsXlsxFileService = exports.SalesByCustomerXlsxFileService = exports.CustWiseSalesXlsxFileService = exports.CustBalanceXlsxFileService = exports.CategoryWiseItemXlsxFileService = exports.AnalysisXlsxFileService = void 0;
|
|
4
4
|
exports.SharedPDFService = exports.SharedInvoiceprintService = exports.WOPrintService = exports.ScheduledDrugSummaryPDFService = exports.ScheduledDrugPDFService = exports.SalesTotalsService = exports.SaleReceiptPrintService = exports.SalesReceiptpdfService = exports.SalesPrintService = exports.SalesPdfService = exports.SalesByServiceSummaryPDF = exports.ROTotalsService = exports.ROPrintService = exports.RoprintService = exports.RepairOrdersReportsPDFService = exports.ReorderPointPDFService = exports.ReceiptPrintService = exports.PurchaseOrderPDFService = exports.PurchaseOrderTotalsService = exports.PurchaseOrderPrintService = exports.PosReceiptPrintService = exports.POTotalsService = exports.PaymentsReportPDFService = exports.ReceiptPDFService = exports.PackShipPrintService = exports.PackShipPDFService = exports.OperatorWiseSalesSummaryPDF = exports.OperatorWiseSalesDetailsPDF = exports.MaterialOutprintService = exports.MeetingPdfService = exports.ManfWiseSalesService = exports.ItemWiseSalesPDFService = exports.ItemWiseMOSummaryPDF = exports.ItemWiseMODetailsPDF = exports.ItemWiseDoctorSalePDFService = exports.ItemDetaisPdf = exports.IssuePartsprintService = exports.InvoiceTotalsService = exports.InvoiceLandscapePdfService = exports.InvPrintService = exports.InvoiceprintService = exports.InsuranceExpirePDF = exports.ExpiringDrugPDFService = exports.EstPrintService = exports.EquipmentDesignPdf = exports.DeliveryChallanTotalsService = exports.DeliveryChallanPrintService = exports.DeliveryChallanPdfService = exports.DebitNoteTotalsService = exports.DebitNotePrintService = void 0;
|
|
5
|
-
exports.Divide = exports.Multiply = exports.Subtract = exports.Add = exports.ServiceHistoryPDFService = exports.SalesTotalCalculationsWithDecimals = exports.GetNumber = exports.GetAgeString = exports.IsNull = exports.IsNotNull = exports.GetServicePriceForPriceList = exports.ApplyServicePriceListToOpcode = exports.ApplyServicePriceListToProcedure = exports.CalcItemFinalSalePrice = exports.GetItemPriceForPriceList = exports.SalesReceiveTotalsService = exports.SalesReceivePrintService = exports.SalesReceivePdfService = exports.AdjustmentDrugPDFService = exports.HSNSummaryPDFService = exports.HSNSummaryExcelService = exports.ItemBarCodeLabelPdf = exports.NextServiceDatePDFService = exports.NextServiceDateXlsxFileService = exports.ConsultationLetterHeadPDFService = exports.InvoiceLetterheadPdfService = exports.HCInvoiceprintService = exports.InvoicePortraitPrintService = exports.MyDate = exports.TrUtils = exports.VendorDebitNoteTotalsService = exports.VendorDebitNotePrintService = exports.VendorDebitNotePdfService = exports.VendorCreditNoteTotalsService = exports.VendorCreditNotePrintService = exports.VendorCreditNotePDFService = exports.VendorBalancesService = exports.TransferOrderPrintService = exports.TechnicianPrintService = exports.TechnicianpdfService = exports.TaskReportsPDfService = exports.TaskPDfService = exports.PrintSharedService = void 0;
|
|
5
|
+
exports.ProductWithoutOwnerXlsxFileService = exports.Divide = exports.Multiply = exports.Subtract = exports.Add = exports.ServiceHistoryPDFService = exports.SalesTotalCalculationsWithDecimals = exports.GetNumber = exports.GetAgeString = exports.IsNull = exports.IsNotNull = exports.GetServicePriceForPriceList = exports.ApplyServicePriceListToOpcode = exports.ApplyServicePriceListToProcedure = exports.CalcItemFinalSalePrice = exports.GetItemPriceForPriceList = exports.SalesReceiveTotalsService = exports.SalesReceivePrintService = exports.SalesReceivePdfService = exports.AdjustmentDrugPDFService = exports.HSNSummaryPDFService = exports.HSNSummaryExcelService = exports.ItemBarCodeLabelPdf = exports.NextServiceDatePDFService = exports.NextServiceDateXlsxFileService = exports.ConsultationLetterHeadPDFService = exports.InvoiceLetterheadPdfService = exports.HCInvoiceprintService = exports.InvoicePortraitPrintService = exports.MyDate = exports.TrUtils = exports.VendorDebitNoteTotalsService = exports.VendorDebitNotePrintService = exports.VendorDebitNotePdfService = exports.VendorCreditNoteTotalsService = exports.VendorCreditNotePrintService = exports.VendorCreditNotePDFService = exports.VendorBalancesService = exports.TransferOrderPrintService = exports.TechnicianPrintService = exports.TechnicianpdfService = exports.TaskReportsPDfService = exports.TaskPDfService = exports.PrintSharedService = void 0;
|
|
6
6
|
var analysis_excel_service_1 = require("./accounting/invoice/reports/excel/analysis-excel.service");
|
|
7
7
|
Object.defineProperty(exports, "AnalysisXlsxFileService", { enumerable: true, get: function () { return analysis_excel_service_1.AnalysisXlsxFileService; } });
|
|
8
8
|
var category_wise_item_excel_service_1 = require("./accounting/invoice/reports/excel/category-wise-item-excel.service");
|
|
@@ -282,3 +282,5 @@ Object.defineProperty(exports, "Add", { enumerable: true, get: function () { ret
|
|
|
282
282
|
Object.defineProperty(exports, "Subtract", { enumerable: true, get: function () { return math_operations_1.Subtract; } });
|
|
283
283
|
Object.defineProperty(exports, "Multiply", { enumerable: true, get: function () { return math_operations_1.Multiply; } });
|
|
284
284
|
Object.defineProperty(exports, "Divide", { enumerable: true, get: function () { return math_operations_1.Divide; } });
|
|
285
|
+
var product_without_owner_excel_service_1 = require("./common/reports/excel/product-without-owner-excel.service");
|
|
286
|
+
Object.defineProperty(exports, "ProductWithoutOwnerXlsxFileService", { enumerable: true, get: function () { return product_without_owner_excel_service_1.ProductWithoutOwnerXlsxFileService; } });
|