@colijnit/transaction 12.1.62 → 12.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/colijnit-transaction.umd.js +465 -510
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +248 -249
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +249 -250
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +31 -30
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +13 -7
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.js +5 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.js +89 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +4 -4
- package/esm2015/lib/service/pending-reason.service.js +3 -1
- package/esm2015/lib/service/transaction.service.js +19 -55
- package/esm2015/public_api.js +2 -1
- package/fesm2015/colijnit-transaction.js +171 -191
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +29 -11
- package/lib/component/transaction-line/transaction-overview-line/style/_layout.scss +8 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_layout.scss +14 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_theme.scss +4 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/material.scss +4 -0
- package/lib/component/transaction-line-fields/{transaction-line-price.component.d.ts → transaction-line-price/transaction-line-price.component.d.ts} +3 -2
- package/lib/component/transaction-line-fields/{transaction-line-price.module.d.ts → transaction-line-price/transaction-line-price.module.d.ts} +0 -0
- package/lib/component/transaction-lines/style/material.scss +1 -0
- package/package.json +4 -1
- package/public_api.d.ts +1 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price.component.js +0 -83
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price.module.js +0 -23
|
@@ -5806,7 +5806,9 @@
|
|
|
5806
5806
|
case 4:
|
|
5807
5807
|
i++;
|
|
5808
5808
|
return [3 /*break*/, 1];
|
|
5809
|
-
case 5:
|
|
5809
|
+
case 5:
|
|
5810
|
+
this.rememberCurrentTransaction(response);
|
|
5811
|
+
return [2 /*return*/, success];
|
|
5810
5812
|
}
|
|
5811
5813
|
});
|
|
5812
5814
|
});
|
|
@@ -5879,7 +5881,9 @@
|
|
|
5879
5881
|
case 3:
|
|
5880
5882
|
i++;
|
|
5881
5883
|
return [3 /*break*/, 1];
|
|
5882
|
-
case 4:
|
|
5884
|
+
case 4:
|
|
5885
|
+
this.rememberCurrentTransaction(response);
|
|
5886
|
+
return [2 /*return*/, success];
|
|
5883
5887
|
}
|
|
5884
5888
|
});
|
|
5885
5889
|
});
|
|
@@ -6194,323 +6198,272 @@
|
|
|
6194
6198
|
};
|
|
6195
6199
|
TransactionService.prototype.updateHeaderTransactionDefinitive = function (uuid, definitive) {
|
|
6196
6200
|
return __awaiter(this, void 0, void 0, function () {
|
|
6197
|
-
var response
|
|
6201
|
+
var response;
|
|
6198
6202
|
return __generator(this, function (_a) {
|
|
6199
6203
|
switch (_a.label) {
|
|
6200
6204
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionDefinitive(uuid, definitive)];
|
|
6201
6205
|
case 1:
|
|
6202
6206
|
response = _a.sent();
|
|
6203
|
-
if (
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
this.rememberCurrentTransaction(response);
|
|
6208
|
-
return [2 /*return*/, success];
|
|
6209
|
-
case 3: return [2 /*return*/, false];
|
|
6207
|
+
if (response) {
|
|
6208
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6209
|
+
}
|
|
6210
|
+
return [2 /*return*/, false];
|
|
6210
6211
|
}
|
|
6211
6212
|
});
|
|
6212
6213
|
});
|
|
6213
6214
|
};
|
|
6214
6215
|
TransactionService.prototype.updateHeaderDeliveryAddress = function (uuid, newNawNr) {
|
|
6215
6216
|
return __awaiter(this, void 0, void 0, function () {
|
|
6216
|
-
var response
|
|
6217
|
+
var response;
|
|
6217
6218
|
return __generator(this, function (_a) {
|
|
6218
6219
|
switch (_a.label) {
|
|
6219
6220
|
case 0: return [4 /*yield*/, this.connector.changeHeaderDeliveryAddress(uuid, newNawNr)];
|
|
6220
6221
|
case 1:
|
|
6221
6222
|
response = _a.sent();
|
|
6222
|
-
if (
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
this.rememberCurrentTransaction(response);
|
|
6227
|
-
return [2 /*return*/, success];
|
|
6228
|
-
case 3: return [2 /*return*/, false];
|
|
6223
|
+
if (response) {
|
|
6224
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6225
|
+
}
|
|
6226
|
+
return [2 /*return*/, false];
|
|
6229
6227
|
}
|
|
6230
6228
|
});
|
|
6231
6229
|
});
|
|
6232
6230
|
};
|
|
6233
6231
|
TransactionService.prototype.updateHeaderInvoiceAddress = function (uuid, newNawNr) {
|
|
6234
6232
|
return __awaiter(this, void 0, void 0, function () {
|
|
6235
|
-
var response
|
|
6233
|
+
var response;
|
|
6236
6234
|
return __generator(this, function (_a) {
|
|
6237
6235
|
switch (_a.label) {
|
|
6238
6236
|
case 0: return [4 /*yield*/, this.connector.changeHeaderInvoiceAddress(uuid, newNawNr)];
|
|
6239
6237
|
case 1:
|
|
6240
6238
|
response = _a.sent();
|
|
6241
|
-
if (
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
this.rememberCurrentTransaction(response);
|
|
6246
|
-
return [2 /*return*/, success];
|
|
6247
|
-
case 3: return [2 /*return*/, false];
|
|
6239
|
+
if (response) {
|
|
6240
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6241
|
+
}
|
|
6242
|
+
return [2 /*return*/, false];
|
|
6248
6243
|
}
|
|
6249
6244
|
});
|
|
6250
6245
|
});
|
|
6251
6246
|
};
|
|
6252
6247
|
TransactionService.prototype.updateHeaderTransactionDeliveryDate = function (uuid, date) {
|
|
6253
6248
|
return __awaiter(this, void 0, void 0, function () {
|
|
6254
|
-
var response
|
|
6249
|
+
var response;
|
|
6255
6250
|
return __generator(this, function (_a) {
|
|
6256
6251
|
switch (_a.label) {
|
|
6257
6252
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionDeliveryDate(uuid, date)];
|
|
6258
6253
|
case 1:
|
|
6259
6254
|
response = _a.sent();
|
|
6260
|
-
if (
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
|
|
6264
|
-
this.rememberCurrentTransaction(response);
|
|
6265
|
-
return [2 /*return*/, success];
|
|
6266
|
-
case 3: return [2 /*return*/, false];
|
|
6255
|
+
if (response) {
|
|
6256
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6257
|
+
}
|
|
6258
|
+
return [2 /*return*/, false];
|
|
6267
6259
|
}
|
|
6268
6260
|
});
|
|
6269
6261
|
});
|
|
6270
6262
|
};
|
|
6271
6263
|
TransactionService.prototype.updateHeaderTransactionRemark = function (uuid, remark) {
|
|
6272
6264
|
return __awaiter(this, void 0, void 0, function () {
|
|
6273
|
-
var response
|
|
6265
|
+
var response;
|
|
6274
6266
|
return __generator(this, function (_a) {
|
|
6275
6267
|
switch (_a.label) {
|
|
6276
6268
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionRemark(uuid, remark)];
|
|
6277
6269
|
case 1:
|
|
6278
6270
|
response = _a.sent();
|
|
6279
|
-
if (
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
this.rememberCurrentTransaction(response);
|
|
6284
|
-
return [2 /*return*/, success];
|
|
6285
|
-
case 3: return [2 /*return*/, false];
|
|
6271
|
+
if (response) {
|
|
6272
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6273
|
+
}
|
|
6274
|
+
return [2 /*return*/, false];
|
|
6286
6275
|
}
|
|
6287
6276
|
});
|
|
6288
6277
|
});
|
|
6289
6278
|
};
|
|
6290
6279
|
TransactionService.prototype.updateHeaderTransactionReference = function (uuid, reference) {
|
|
6291
6280
|
return __awaiter(this, void 0, void 0, function () {
|
|
6292
|
-
var response
|
|
6281
|
+
var response;
|
|
6293
6282
|
return __generator(this, function (_a) {
|
|
6294
6283
|
switch (_a.label) {
|
|
6295
6284
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionReference(uuid, reference)];
|
|
6296
6285
|
case 1:
|
|
6297
6286
|
response = _a.sent();
|
|
6298
|
-
if (
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6302
|
-
this.rememberCurrentTransaction(response);
|
|
6303
|
-
return [2 /*return*/, success];
|
|
6304
|
-
case 3: return [2 /*return*/, false];
|
|
6287
|
+
if (response) {
|
|
6288
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6289
|
+
}
|
|
6290
|
+
return [2 /*return*/, false];
|
|
6305
6291
|
}
|
|
6306
6292
|
});
|
|
6307
6293
|
});
|
|
6308
6294
|
};
|
|
6309
6295
|
TransactionService.prototype.updateHeaderTransactionRelationReference = function (uuid, reference) {
|
|
6310
6296
|
return __awaiter(this, void 0, void 0, function () {
|
|
6311
|
-
var response
|
|
6297
|
+
var response;
|
|
6312
6298
|
return __generator(this, function (_a) {
|
|
6313
6299
|
switch (_a.label) {
|
|
6314
6300
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionRelationReference(uuid, reference)];
|
|
6315
6301
|
case 1:
|
|
6316
6302
|
response = _a.sent();
|
|
6317
|
-
if (
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
this.rememberCurrentTransaction(response);
|
|
6322
|
-
return [2 /*return*/, success];
|
|
6323
|
-
case 3: return [2 /*return*/, false];
|
|
6303
|
+
if (response) {
|
|
6304
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6305
|
+
}
|
|
6306
|
+
return [2 /*return*/, false];
|
|
6324
6307
|
}
|
|
6325
6308
|
});
|
|
6326
6309
|
});
|
|
6327
6310
|
};
|
|
6328
6311
|
TransactionService.prototype.updateHeaderTransactionDownpaymentAmount = function (uuid, amount) {
|
|
6329
6312
|
return __awaiter(this, void 0, void 0, function () {
|
|
6330
|
-
var response
|
|
6313
|
+
var response;
|
|
6331
6314
|
return __generator(this, function (_a) {
|
|
6332
6315
|
switch (_a.label) {
|
|
6333
6316
|
case 0: return [4 /*yield*/, this.connector.changeHeaderToDownPayAmount(uuid, amount)];
|
|
6334
6317
|
case 1:
|
|
6335
6318
|
response = _a.sent();
|
|
6336
|
-
if (
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
this.rememberCurrentTransaction(response);
|
|
6341
|
-
return [2 /*return*/, success];
|
|
6342
|
-
case 3: return [2 /*return*/, false];
|
|
6319
|
+
if (response) {
|
|
6320
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6321
|
+
}
|
|
6322
|
+
return [2 /*return*/, false];
|
|
6343
6323
|
}
|
|
6344
6324
|
});
|
|
6345
6325
|
});
|
|
6346
6326
|
};
|
|
6347
6327
|
TransactionService.prototype.updateHeaderTransactionDownpaymentPercentage = function (uuid, amount) {
|
|
6348
6328
|
return __awaiter(this, void 0, void 0, function () {
|
|
6349
|
-
var response
|
|
6329
|
+
var response;
|
|
6350
6330
|
return __generator(this, function (_a) {
|
|
6351
6331
|
switch (_a.label) {
|
|
6352
6332
|
case 0: return [4 /*yield*/, this.connector.changeHeaderToDownPayPercentage(uuid, amount)];
|
|
6353
6333
|
case 1:
|
|
6354
6334
|
response = _a.sent();
|
|
6355
|
-
if (
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
this.rememberCurrentTransaction(response);
|
|
6360
|
-
return [2 /*return*/, success];
|
|
6361
|
-
case 3: return [2 /*return*/, false];
|
|
6335
|
+
if (response) {
|
|
6336
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6337
|
+
}
|
|
6338
|
+
return [2 /*return*/, false];
|
|
6362
6339
|
}
|
|
6363
6340
|
});
|
|
6364
6341
|
});
|
|
6365
6342
|
};
|
|
6366
6343
|
TransactionService.prototype.updateHeaderTransactionPreferredDeliveryDate = function (uuid, date) {
|
|
6367
6344
|
return __awaiter(this, void 0, void 0, function () {
|
|
6368
|
-
var response
|
|
6345
|
+
var response;
|
|
6369
6346
|
return __generator(this, function (_a) {
|
|
6370
6347
|
switch (_a.label) {
|
|
6371
6348
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionPreferredDeliveryDate(uuid, date)];
|
|
6372
6349
|
case 1:
|
|
6373
6350
|
response = _a.sent();
|
|
6374
|
-
if (
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
this.rememberCurrentTransaction(response);
|
|
6379
|
-
return [2 /*return*/, success];
|
|
6380
|
-
case 3: return [2 /*return*/, false];
|
|
6351
|
+
if (response) {
|
|
6352
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6353
|
+
}
|
|
6354
|
+
return [2 /*return*/, false];
|
|
6381
6355
|
}
|
|
6382
6356
|
});
|
|
6383
6357
|
});
|
|
6384
6358
|
};
|
|
6385
6359
|
TransactionService.prototype.updateHeaderTransactionDeliveryMethod = function (uuid, method) {
|
|
6386
6360
|
return __awaiter(this, void 0, void 0, function () {
|
|
6387
|
-
var response
|
|
6361
|
+
var response;
|
|
6388
6362
|
return __generator(this, function (_a) {
|
|
6389
6363
|
switch (_a.label) {
|
|
6390
6364
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionDeliveryMethod(uuid, method)];
|
|
6391
6365
|
case 1:
|
|
6392
6366
|
response = _a.sent();
|
|
6393
|
-
if (
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
this.rememberCurrentTransaction(response);
|
|
6398
|
-
return [2 /*return*/, success];
|
|
6399
|
-
case 3: return [2 /*return*/, false];
|
|
6367
|
+
if (response) {
|
|
6368
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6369
|
+
}
|
|
6370
|
+
return [2 /*return*/, false];
|
|
6400
6371
|
}
|
|
6401
6372
|
});
|
|
6402
6373
|
});
|
|
6403
6374
|
};
|
|
6404
6375
|
TransactionService.prototype.updateHeaderTransactionDeliveryOptions = function (uuid, options) {
|
|
6405
6376
|
return __awaiter(this, void 0, void 0, function () {
|
|
6406
|
-
var response
|
|
6377
|
+
var response;
|
|
6407
6378
|
return __generator(this, function (_a) {
|
|
6408
6379
|
switch (_a.label) {
|
|
6409
6380
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionDeliveryOptions(uuid, options)];
|
|
6410
6381
|
case 1:
|
|
6411
6382
|
response = _a.sent();
|
|
6412
|
-
if (
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
this.rememberCurrentTransaction(response);
|
|
6417
|
-
return [2 /*return*/, success];
|
|
6418
|
-
case 3: return [2 /*return*/, false];
|
|
6383
|
+
if (response) {
|
|
6384
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6385
|
+
}
|
|
6386
|
+
return [2 /*return*/, false];
|
|
6419
6387
|
}
|
|
6420
6388
|
});
|
|
6421
6389
|
});
|
|
6422
6390
|
};
|
|
6423
6391
|
TransactionService.prototype.updateHeaderTransactionPartialDelivery = function (uuid, allowPartial) {
|
|
6424
6392
|
return __awaiter(this, void 0, void 0, function () {
|
|
6425
|
-
var response
|
|
6393
|
+
var response;
|
|
6426
6394
|
return __generator(this, function (_a) {
|
|
6427
6395
|
switch (_a.label) {
|
|
6428
6396
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionPartialDelivery(uuid, allowPartial)];
|
|
6429
6397
|
case 1:
|
|
6430
6398
|
response = _a.sent();
|
|
6431
|
-
if (
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
this.rememberCurrentTransaction(response);
|
|
6436
|
-
return [2 /*return*/, success];
|
|
6437
|
-
case 3: return [2 /*return*/, false];
|
|
6399
|
+
if (response) {
|
|
6400
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6401
|
+
}
|
|
6402
|
+
return [2 /*return*/, false];
|
|
6438
6403
|
}
|
|
6439
6404
|
});
|
|
6440
6405
|
});
|
|
6441
6406
|
};
|
|
6442
6407
|
TransactionService.prototype.updateHeaderTransactionBranch = function (uuid, branch) {
|
|
6443
6408
|
return __awaiter(this, void 0, void 0, function () {
|
|
6444
|
-
var response
|
|
6409
|
+
var response;
|
|
6445
6410
|
return __generator(this, function (_a) {
|
|
6446
6411
|
switch (_a.label) {
|
|
6447
6412
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionBranch(uuid, branch)];
|
|
6448
6413
|
case 1:
|
|
6449
6414
|
response = _a.sent();
|
|
6450
|
-
if (
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
this.rememberCurrentTransaction(response);
|
|
6455
|
-
return [2 /*return*/, success];
|
|
6456
|
-
case 3: return [2 /*return*/, false];
|
|
6415
|
+
if (response) {
|
|
6416
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6417
|
+
}
|
|
6418
|
+
return [2 /*return*/, false];
|
|
6457
6419
|
}
|
|
6458
6420
|
});
|
|
6459
6421
|
});
|
|
6460
6422
|
};
|
|
6461
6423
|
TransactionService.prototype.updateHeaderTransactionAdmCoordinator = function (uuid, relation) {
|
|
6462
6424
|
return __awaiter(this, void 0, void 0, function () {
|
|
6463
|
-
var response
|
|
6425
|
+
var response;
|
|
6464
6426
|
return __generator(this, function (_a) {
|
|
6465
6427
|
switch (_a.label) {
|
|
6466
6428
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionAdmCoordinator(uuid, relation)];
|
|
6467
6429
|
case 1:
|
|
6468
6430
|
response = _a.sent();
|
|
6469
|
-
if (
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
this.rememberCurrentTransaction(response);
|
|
6474
|
-
return [2 /*return*/, success];
|
|
6475
|
-
case 3: return [2 /*return*/, false];
|
|
6431
|
+
if (response) {
|
|
6432
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6433
|
+
}
|
|
6434
|
+
return [2 /*return*/, false];
|
|
6476
6435
|
}
|
|
6477
6436
|
});
|
|
6478
6437
|
});
|
|
6479
6438
|
};
|
|
6480
6439
|
TransactionService.prototype.updateHeaderTransactionMarketing = function (uuid, code) {
|
|
6481
6440
|
return __awaiter(this, void 0, void 0, function () {
|
|
6482
|
-
var response
|
|
6441
|
+
var response;
|
|
6483
6442
|
return __generator(this, function (_a) {
|
|
6484
6443
|
switch (_a.label) {
|
|
6485
6444
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionMarketing(uuid, code)];
|
|
6486
6445
|
case 1:
|
|
6487
6446
|
response = _a.sent();
|
|
6488
|
-
if (
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
this.rememberCurrentTransaction(response);
|
|
6493
|
-
return [2 /*return*/, success];
|
|
6494
|
-
case 3: return [2 /*return*/, false];
|
|
6447
|
+
if (response) {
|
|
6448
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6449
|
+
}
|
|
6450
|
+
return [2 /*return*/, false];
|
|
6495
6451
|
}
|
|
6496
6452
|
});
|
|
6497
6453
|
});
|
|
6498
6454
|
};
|
|
6499
6455
|
TransactionService.prototype.updateHeaderTransactionDiscount = function (uuid, type, amount) {
|
|
6500
6456
|
return __awaiter(this, void 0, void 0, function () {
|
|
6501
|
-
var response
|
|
6457
|
+
var response;
|
|
6502
6458
|
return __generator(this, function (_a) {
|
|
6503
6459
|
switch (_a.label) {
|
|
6504
6460
|
case 0: return [4 /*yield*/, this.connector.changeHeaderTransactionDiscount(uuid, type, amount)];
|
|
6505
6461
|
case 1:
|
|
6506
6462
|
response = _a.sent();
|
|
6507
|
-
if (
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
this.rememberCurrentTransaction(response);
|
|
6512
|
-
return [2 /*return*/, success];
|
|
6513
|
-
case 3: return [2 /*return*/, false];
|
|
6463
|
+
if (response) {
|
|
6464
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6465
|
+
}
|
|
6466
|
+
return [2 /*return*/, false];
|
|
6514
6467
|
}
|
|
6515
6468
|
});
|
|
6516
6469
|
});
|
|
@@ -6809,7 +6762,7 @@
|
|
|
6809
6762
|
};
|
|
6810
6763
|
TransactionService.prototype.addRelationToTransaction = function (relationId) {
|
|
6811
6764
|
return __awaiter(this, void 0, void 0, function () {
|
|
6812
|
-
var response
|
|
6765
|
+
var response;
|
|
6813
6766
|
return __generator(this, function (_a) {
|
|
6814
6767
|
switch (_a.label) {
|
|
6815
6768
|
case 0: return [4 /*yield*/, this._checkAndCreateTransaction()];
|
|
@@ -6818,13 +6771,10 @@
|
|
|
6818
6771
|
return [4 /*yield*/, this.connector.addRelationToTransaction(this.currentTransaction.transactionInfo.uuid, relationId)];
|
|
6819
6772
|
case 2:
|
|
6820
6773
|
response = _a.sent();
|
|
6821
|
-
if (
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
this.rememberCurrentTransaction(response);
|
|
6826
|
-
return [2 /*return*/, success];
|
|
6827
|
-
case 4: return [2 /*return*/, false];
|
|
6774
|
+
if (response) {
|
|
6775
|
+
return [2 /*return*/, this.handleHeaderOperationStatuses(response)];
|
|
6776
|
+
}
|
|
6777
|
+
return [2 /*return*/, false];
|
|
6828
6778
|
}
|
|
6829
6779
|
});
|
|
6830
6780
|
});
|
|
@@ -11145,7 +11095,7 @@
|
|
|
11145
11095
|
TransactionOverviewLineComponent.decorators = [
|
|
11146
11096
|
{ type: i0.Component, args: [{
|
|
11147
11097
|
selector: "co-transaction-overview-line",
|
|
11148
|
-
template: "\n <co-transaction-base-line [line]=\"line\" [preview]=\"preview\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div *ngIf=!preview class=\"transaction-line-
|
|
11098
|
+
template: "\n <co-transaction-base-line [line]=\"line\" [preview]=\"preview\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <div class=\"column1\">\n <co-transaction-line-commission-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-commission-button>\n <co-transaction-line-warehouse-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-warehouse-button>\n <co-transaction-line-delivery-date-button [transactionLine]=\"line\" class=\"two-column\"></co-transaction-line-delivery-date-button>\n </div>\n <div class=\"column2\">\n <co-transaction-line-delivery-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-delivery-button>\n <co-transaction-line-statusbar [transaction]=\"line\" [transactionKind]=\"transactionKind\"></co-transaction-line-statusbar>\n </div>\n </div>\n <div class=\"transaction-line-section\">\n <div *ngIf=\"!preview\" class=\"transaction-line-button vat-button\" (click)=\"showDialogVat = true\">\n <span class=\"co-transaction-overflow-ellipsis\" [textContent]=\"line.vatDescription\"></span>\n </div>\n <div class=\"transaction-line-totals\">\n <co-transaction-line-price class=\"transaction-line-totals-price price\"\n [transactionLine]=\"line\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-price>\n <div class=\"transaction-line-button custom-width transaction-line-totals-discount\" (click)=\"showDialogDiscount = true\">\n <span class=\"co-transaction-overflow-ellipsis\" [class.transaction-negative-value]=\"line.lineTotalDiscountAmount < 0\"\n [textContent]=\"(line.lineTotalDiscountAmount | coCurrency) || ('DISCOUNT' | localize)\"></span>\n </div>\n <div *ngIf=!preview class=\"transaction-line-totals-amount\">\n <co-transaction-line-amount class=\"amount-number-picker\" [transactionLine]=\"line\"></co-transaction-line-amount>\n </div>\n <co-editable-label class=\"transaction-line-totals-total price\"\n [model]=\"line.displayNetLineTotal | coCurrency\"\n [editModel]=\"line.displayNetLineTotal\"\n [readonly]=\"true\"\n [commit]=\"!readonly\"\n ></co-editable-label>\n </div>\n </div>\n </div>\n </ng-container>\n </co-transaction-base-line>\n <co-dialog-transaction-line-vat *ngIf=\"showDialogVat\"\n [autoClose]=\"true\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogVat = false\">\n </co-dialog-transaction-line-vat>\n <co-dialog-transaction-line-discount *ngIf=\"showDialogDiscount\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogDiscount = false\"\n ></co-dialog-transaction-line-discount>\n ",
|
|
11149
11099
|
encapsulation: i0.ViewEncapsulation.None
|
|
11150
11100
|
},] }
|
|
11151
11101
|
];
|
|
@@ -11416,7 +11366,7 @@
|
|
|
11416
11366
|
TransactionPurchaseLineComponent.decorators = [
|
|
11417
11367
|
{ type: i0.Component, args: [{
|
|
11418
11368
|
selector: "co-transaction-purchase-line",
|
|
11419
|
-
template: "\n <co-transaction-base-line [line]=\"line\" [preview]=\"preview\" [checkbox]=\"showCheckboxForLine\" [checkboxValue]=\"selected\" (checkboxValueChanged)=\"selected = $event\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <co-transaction-line-
|
|
11369
|
+
template: "\n <co-transaction-base-line [line]=\"line\" [preview]=\"preview\" [checkbox]=\"showCheckboxForLine\" [checkboxValue]=\"selected\" (checkboxValueChanged)=\"selected = $event\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-line-wrapper\">\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\n <div class=\"column1\">\n <co-transaction-line-commission-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-commission-button>\n <co-transaction-line-warehouse-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-warehouse-button>\n <co-transaction-line-delivery-date-button [transactionLine]=\"line\" class=\"two-column\"></co-transaction-line-delivery-date-button>\n </div>\n <div class=\"column2\">\n <co-transaction-line-delivery-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-delivery-button>\n <co-transaction-line-statusbar [transaction]=\"line\" [transactionKind]=\"service.currentTransaction.transactionInfo.transactionKind\"></co-transaction-line-statusbar>\n </div>\n <div class=\"column3\">\n <co-transaction-line-supplier-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-supplier-button>\n </div>\n </div>\n <div class=\"transaction-line-totals\">\n <co-transaction-line-price class=\"transaction-line-totals-price price\"\n [transactionLine]=\"line\"\n [showLabel]=\"false\"\n [defaultEditMode]=\"false\"\n ></co-transaction-line-price>\n <div class=\"transaction-line-button custom-width transaction-line-totals-discount\" (click)=\"showDialogDiscount = true\">\n <span class=\"co-transaction-overflow-ellipsis\" [class.transaction-negative-value]=\"line.lineTotalDiscountAmount < 0\"\n [textContent]=\"(line.lineTotalDiscountAmount | coCurrency) || ('DISCOUNT' | localize)\"></span>\n </div>\n <div *ngIf=!preview class=\"transaction-line-totals-amount\">\n <co-transaction-line-amount class=\"amount-number-picker\" [transactionLine]=\"line\"></co-transaction-line-amount>\n </div>\n <co-editable-label class=\"transaction-line-totals-total price\"\n [model]=\"line.displayNetLineTotal | coCurrency\"\n [editModel]=\"line.displayNetLineTotal\"\n [readonly]=\"readonly\"\n [commit]=\"!readonly\"\n ></co-editable-label>\n </div>\n </div>\n </ng-container>\n </co-transaction-base-line>\n <co-dialog-transaction-line-discount *ngIf=\"showDialogDiscount\"\n [transactionInfo]=\"service.currentTransaction.transactionInfo\"\n [transactionLine]=\"line\"\n (close)=\"showDialogDiscount = false\"\n ></co-dialog-transaction-line-discount>\n ",
|
|
11420
11370
|
encapsulation: i0.ViewEncapsulation.None
|
|
11421
11371
|
},] }
|
|
11422
11372
|
];
|
|
@@ -16411,114 +16361,6 @@
|
|
|
16411
16361
|
},] }
|
|
16412
16362
|
];
|
|
16413
16363
|
|
|
16414
|
-
var TransactionLinePriceComponent = /** @class */ (function (_super) {
|
|
16415
|
-
__extends(TransactionLinePriceComponent, _super);
|
|
16416
|
-
function TransactionLinePriceComponent(_transactionService) {
|
|
16417
|
-
var _this = _super.call(this) || this;
|
|
16418
|
-
_this._transactionService = _transactionService;
|
|
16419
|
-
_this.showLabel = true;
|
|
16420
|
-
_this.defaultEditMode = true;
|
|
16421
|
-
_this._editMode = false;
|
|
16422
|
-
return _this;
|
|
16423
|
-
}
|
|
16424
|
-
Object.defineProperty(TransactionLinePriceComponent.prototype, "child", {
|
|
16425
|
-
set: function (content) {
|
|
16426
|
-
var _this = this;
|
|
16427
|
-
if (content) {
|
|
16428
|
-
this.input = content;
|
|
16429
|
-
this.input.commit = function (price) { return _this.commit(price); };
|
|
16430
|
-
if (this._editMode) {
|
|
16431
|
-
this.input.requestFocus();
|
|
16432
|
-
}
|
|
16433
|
-
}
|
|
16434
|
-
},
|
|
16435
|
-
enumerable: false,
|
|
16436
|
-
configurable: true
|
|
16437
|
-
});
|
|
16438
|
-
Object.defineProperty(TransactionLinePriceComponent.prototype, "editMode", {
|
|
16439
|
-
get: function () {
|
|
16440
|
-
return this._editMode;
|
|
16441
|
-
},
|
|
16442
|
-
set: function (value) {
|
|
16443
|
-
this._editMode = value;
|
|
16444
|
-
if (this._editMode && this.input) {
|
|
16445
|
-
this.input.doFocus();
|
|
16446
|
-
}
|
|
16447
|
-
},
|
|
16448
|
-
enumerable: false,
|
|
16449
|
-
configurable: true
|
|
16450
|
-
});
|
|
16451
|
-
TransactionLinePriceComponent.prototype.handleClick = function (event) {
|
|
16452
|
-
event.preventDefault();
|
|
16453
|
-
event.stopPropagation();
|
|
16454
|
-
if (!this.readonly) {
|
|
16455
|
-
this.editMode = true;
|
|
16456
|
-
}
|
|
16457
|
-
};
|
|
16458
|
-
TransactionLinePriceComponent.prototype.commit = function (price) {
|
|
16459
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16460
|
-
var oldPrice, success;
|
|
16461
|
-
return __generator(this, function (_a) {
|
|
16462
|
-
switch (_a.label) {
|
|
16463
|
-
case 0:
|
|
16464
|
-
if (!(this.transactionLine.price !== price)) return [3 /*break*/, 2];
|
|
16465
|
-
oldPrice = this.transactionLine.price;
|
|
16466
|
-
return [4 /*yield*/, this._transactionService.updatePriceTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, price)];
|
|
16467
|
-
case 1:
|
|
16468
|
-
success = _a.sent();
|
|
16469
|
-
if (!success) {
|
|
16470
|
-
this.input.model = oldPrice;
|
|
16471
|
-
}
|
|
16472
|
-
return [2 /*return*/, success];
|
|
16473
|
-
case 2: return [2 /*return*/, true];
|
|
16474
|
-
}
|
|
16475
|
-
});
|
|
16476
|
-
});
|
|
16477
|
-
};
|
|
16478
|
-
TransactionLinePriceComponent.prototype.transactionLineSet = function () {
|
|
16479
|
-
this.readonly = this.readonly || !this.transactionLine.articleFreePrice;
|
|
16480
|
-
};
|
|
16481
|
-
return TransactionLinePriceComponent;
|
|
16482
|
-
}(TransactionLineBaseComponent));
|
|
16483
|
-
TransactionLinePriceComponent.decorators = [
|
|
16484
|
-
{ type: i0.Component, args: [{
|
|
16485
|
-
selector: "co-transaction-line-price",
|
|
16486
|
-
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionLine.price | coCurrency\"></span>\n <co-input-text #input *ngIf=\"editMode || defaultEditMode\"\n [placeholder]=\"showLabel ? ('PRICE' | localize) : ''\"\n [type]=\"'number'\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionLine.price\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
|
|
16487
|
-
encapsulation: i0.ViewEncapsulation.None
|
|
16488
|
-
},] }
|
|
16489
|
-
];
|
|
16490
|
-
TransactionLinePriceComponent.ctorParameters = function () { return [
|
|
16491
|
-
{ type: TransactionService }
|
|
16492
|
-
]; };
|
|
16493
|
-
TransactionLinePriceComponent.propDecorators = {
|
|
16494
|
-
child: [{ type: i0.ViewChild, args: ['input', { read: corecomponents_v12.InputTextComponent },] }],
|
|
16495
|
-
showLabel: [{ type: i0.Input }],
|
|
16496
|
-
defaultEditMode: [{ type: i0.Input }],
|
|
16497
|
-
editMode: [{ type: i0.Input }],
|
|
16498
|
-
handleClick: [{ type: i0.HostListener, args: ["click", ["$event"],] }]
|
|
16499
|
-
};
|
|
16500
|
-
|
|
16501
|
-
var TransactionLinePriceModule = /** @class */ (function () {
|
|
16502
|
-
function TransactionLinePriceModule() {
|
|
16503
|
-
}
|
|
16504
|
-
return TransactionLinePriceModule;
|
|
16505
|
-
}());
|
|
16506
|
-
TransactionLinePriceModule.decorators = [
|
|
16507
|
-
{ type: i0.NgModule, args: [{
|
|
16508
|
-
imports: [
|
|
16509
|
-
common.CommonModule,
|
|
16510
|
-
corecomponents_v12.InputTextModule,
|
|
16511
|
-
PipeModule
|
|
16512
|
-
],
|
|
16513
|
-
declarations: [
|
|
16514
|
-
TransactionLinePriceComponent
|
|
16515
|
-
],
|
|
16516
|
-
exports: [
|
|
16517
|
-
TransactionLinePriceComponent
|
|
16518
|
-
]
|
|
16519
|
-
},] }
|
|
16520
|
-
];
|
|
16521
|
-
|
|
16522
16364
|
var TransactionFilterPopupBaseComponent = /** @class */ (function (_super) {
|
|
16523
16365
|
__extends(TransactionFilterPopupBaseComponent, _super);
|
|
16524
16366
|
function TransactionFilterPopupBaseComponent() {
|
|
@@ -17519,6 +17361,118 @@
|
|
|
17519
17361
|
},] }
|
|
17520
17362
|
];
|
|
17521
17363
|
|
|
17364
|
+
var TransactionLinePriceComponent = /** @class */ (function (_super) {
|
|
17365
|
+
__extends(TransactionLinePriceComponent, _super);
|
|
17366
|
+
function TransactionLinePriceComponent(_transactionService) {
|
|
17367
|
+
var _this = _super.call(this) || this;
|
|
17368
|
+
_this._transactionService = _transactionService;
|
|
17369
|
+
_this.showLabel = true;
|
|
17370
|
+
_this.defaultEditMode = true;
|
|
17371
|
+
_this.showClass = true;
|
|
17372
|
+
_this._editMode = false;
|
|
17373
|
+
return _this;
|
|
17374
|
+
}
|
|
17375
|
+
Object.defineProperty(TransactionLinePriceComponent.prototype, "child", {
|
|
17376
|
+
set: function (content) {
|
|
17377
|
+
var _this = this;
|
|
17378
|
+
if (content) {
|
|
17379
|
+
this.input = content;
|
|
17380
|
+
this.input.commit = function (price) { return _this.commit(price); };
|
|
17381
|
+
if (this._editMode) {
|
|
17382
|
+
this.input.requestFocus();
|
|
17383
|
+
this.input.input.select();
|
|
17384
|
+
}
|
|
17385
|
+
}
|
|
17386
|
+
},
|
|
17387
|
+
enumerable: false,
|
|
17388
|
+
configurable: true
|
|
17389
|
+
});
|
|
17390
|
+
Object.defineProperty(TransactionLinePriceComponent.prototype, "editMode", {
|
|
17391
|
+
get: function () {
|
|
17392
|
+
return this._editMode;
|
|
17393
|
+
},
|
|
17394
|
+
set: function (value) {
|
|
17395
|
+
this._editMode = value;
|
|
17396
|
+
if (this._editMode && this.input) {
|
|
17397
|
+
this.input.doFocus();
|
|
17398
|
+
this.input.input.select();
|
|
17399
|
+
}
|
|
17400
|
+
},
|
|
17401
|
+
enumerable: false,
|
|
17402
|
+
configurable: true
|
|
17403
|
+
});
|
|
17404
|
+
TransactionLinePriceComponent.prototype.handleClick = function (event) {
|
|
17405
|
+
event.preventDefault();
|
|
17406
|
+
event.stopPropagation();
|
|
17407
|
+
if (!this.readonly) {
|
|
17408
|
+
this.editMode = true;
|
|
17409
|
+
}
|
|
17410
|
+
};
|
|
17411
|
+
TransactionLinePriceComponent.prototype.commit = function (price) {
|
|
17412
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17413
|
+
var oldPrice, success;
|
|
17414
|
+
return __generator(this, function (_a) {
|
|
17415
|
+
switch (_a.label) {
|
|
17416
|
+
case 0:
|
|
17417
|
+
if (!(this.transactionLine.price !== price)) return [3 /*break*/, 2];
|
|
17418
|
+
oldPrice = this.transactionLine.price;
|
|
17419
|
+
return [4 /*yield*/, this._transactionService.updatePriceTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, price)];
|
|
17420
|
+
case 1:
|
|
17421
|
+
success = _a.sent();
|
|
17422
|
+
if (!success) {
|
|
17423
|
+
this.input.model = oldPrice;
|
|
17424
|
+
}
|
|
17425
|
+
return [2 /*return*/, success];
|
|
17426
|
+
case 2: return [2 /*return*/, true];
|
|
17427
|
+
}
|
|
17428
|
+
});
|
|
17429
|
+
});
|
|
17430
|
+
};
|
|
17431
|
+
TransactionLinePriceComponent.prototype.transactionLineSet = function () {
|
|
17432
|
+
this.readonly = this.readonly || !this.transactionLine.articleFreePrice;
|
|
17433
|
+
};
|
|
17434
|
+
return TransactionLinePriceComponent;
|
|
17435
|
+
}(TransactionLineBaseComponent));
|
|
17436
|
+
TransactionLinePriceComponent.decorators = [
|
|
17437
|
+
{ type: i0.Component, args: [{
|
|
17438
|
+
selector: "co-transaction-line-price",
|
|
17439
|
+
template: "\n <span *ngIf=\"(!editMode || readonly) && !defaultEditMode\" [textContent]=\"transactionLine.price | coCurrency\"></span>\n <co-input-text #input *ngIf=\"editMode || defaultEditMode\"\n [noStyle]=\"true\"\n [hideArrowButtons]=\"true\"\n [placeholder]=\"showLabel ? ('PRICE' | localize) : ''\"\n [type]=\"'number'\"\n [showSaveCancel]=\"!readonly\"\n [readonly]=\"readonly\"\n [model]=\"transactionLine.price\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
|
|
17440
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
17441
|
+
},] }
|
|
17442
|
+
];
|
|
17443
|
+
TransactionLinePriceComponent.ctorParameters = function () { return [
|
|
17444
|
+
{ type: TransactionService }
|
|
17445
|
+
]; };
|
|
17446
|
+
TransactionLinePriceComponent.propDecorators = {
|
|
17447
|
+
child: [{ type: i0.ViewChild, args: ['input', { read: corecomponents_v12.InputTextComponent },] }],
|
|
17448
|
+
showLabel: [{ type: i0.Input }],
|
|
17449
|
+
defaultEditMode: [{ type: i0.Input }],
|
|
17450
|
+
editMode: [{ type: i0.Input }],
|
|
17451
|
+
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-line-price",] }],
|
|
17452
|
+
handleClick: [{ type: i0.HostListener, args: ["click", ["$event"],] }]
|
|
17453
|
+
};
|
|
17454
|
+
|
|
17455
|
+
var TransactionLinePriceModule = /** @class */ (function () {
|
|
17456
|
+
function TransactionLinePriceModule() {
|
|
17457
|
+
}
|
|
17458
|
+
return TransactionLinePriceModule;
|
|
17459
|
+
}());
|
|
17460
|
+
TransactionLinePriceModule.decorators = [
|
|
17461
|
+
{ type: i0.NgModule, args: [{
|
|
17462
|
+
imports: [
|
|
17463
|
+
common.CommonModule,
|
|
17464
|
+
corecomponents_v12.InputTextModule,
|
|
17465
|
+
PipeModule
|
|
17466
|
+
],
|
|
17467
|
+
declarations: [
|
|
17468
|
+
TransactionLinePriceComponent
|
|
17469
|
+
],
|
|
17470
|
+
exports: [
|
|
17471
|
+
TransactionLinePriceComponent
|
|
17472
|
+
]
|
|
17473
|
+
},] }
|
|
17474
|
+
];
|
|
17475
|
+
|
|
17522
17476
|
var TransactionLineSidePanelDefaultModule = /** @class */ (function () {
|
|
17523
17477
|
function TransactionLineSidePanelDefaultModule() {
|
|
17524
17478
|
}
|
|
@@ -17536,7 +17490,6 @@
|
|
|
17536
17490
|
corecomponents_v12.InputComboBoxModule,
|
|
17537
17491
|
corecomponents_v12.InputDatePickerModule,
|
|
17538
17492
|
corecomponents_v12.InputNumberPickerModule,
|
|
17539
|
-
TransactionLinePriceModule,
|
|
17540
17493
|
TransactionLinePriceListModule,
|
|
17541
17494
|
TransactionLineVatModule,
|
|
17542
17495
|
TransactionLineQuantityModule,
|
|
@@ -17550,7 +17503,8 @@
|
|
|
17550
17503
|
TransactionLineQuantumDiscountModule,
|
|
17551
17504
|
TransactionLineSpecialDiscountModule,
|
|
17552
17505
|
TransactionLineSupplierModule,
|
|
17553
|
-
TransactionLineDescriptionModule
|
|
17506
|
+
TransactionLineDescriptionModule,
|
|
17507
|
+
TransactionLinePriceModule
|
|
17554
17508
|
],
|
|
17555
17509
|
declarations: [
|
|
17556
17510
|
TransactionLineSidePanelDefaultComponent
|
|
@@ -20154,7 +20108,7 @@
|
|
|
20154
20108
|
TransactionBaseLineComponent.decorators = [
|
|
20155
20109
|
{ type: i0.Component, args: [{
|
|
20156
20110
|
selector: "co-transaction-base-line",
|
|
20157
|
-
template: "\n <div class=\"transaction-base-line-wrapper\" data-action=\"openSidePanel\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-base-line-section\">\n <co-input-checkbox *ngIf=\"checkbox\" class=\"transaction-line-checkbox\" [class.hidden]=\"hideCheckbox\"\n [model]=\"checkboxValue\"\n (modelChange)=\"checkboxValueChanged.emit($event)\"\n ></co-input-checkbox>\n <co-transaction-line-image-and-description\n *ngIf=\"line.isArticle\" class=\"transaction-line-image-and-description-wrapper\"\n [preview]=\"preview\"\n [line]=\"line\"\n (handleDeleteLine)=\"deleteTransactionLineClick()\"\n ></co-transaction-line-image-and-description>\n </div>\n <div class=\"transaction-base-line-section\">\n <ng-content></ng-content>\n <div *ngIf=\"!preview && actionButtons\" class=\"transaction-line-buttons\">\n <co-transaction-line-action-buttons\n [transactionLine]=\"line\"\n (waitingForUserAction)=\"waitingForUserAction.next($event)\"\n (sidePanelButtonClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-line-action-buttons>\n </div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"line.isText\">\n <div [textContent]=\"line.text\"></div>\n <div class=\"transaction-line-delete\" *ngIf=\"!preview\">\n <co-icon class=\"delete-icon\" [iconData]=\"iconCacheService.getIcon(icons.TrashCanLight)\" (click)=\"deleteTransactionLineClick()\"></co-icon>\n </div>\n </ng-container>\n </div>\n ",
|
|
20111
|
+
template: "\n <div class=\"transaction-base-line-wrapper\" data-action=\"openSidePanel\">\n <ng-container *ngIf=\"line.isArticle\">\n <div class=\"transaction-base-line-section line-start\">\n <co-input-checkbox *ngIf=\"checkbox\" class=\"transaction-line-checkbox\" [class.hidden]=\"hideCheckbox\"\n [model]=\"checkboxValue\"\n (modelChange)=\"checkboxValueChanged.emit($event)\"\n ></co-input-checkbox>\n <co-transaction-line-image-and-description\n *ngIf=\"line.isArticle\" class=\"transaction-line-image-and-description-wrapper\"\n [preview]=\"preview\"\n [line]=\"line\"\n (handleDeleteLine)=\"deleteTransactionLineClick()\"\n ></co-transaction-line-image-and-description>\n </div>\n <div class=\"transaction-base-line-section\">\n <ng-content></ng-content>\n <div *ngIf=\"!preview && actionButtons\" class=\"transaction-line-buttons\">\n <co-transaction-line-action-buttons\n [transactionLine]=\"line\"\n (waitingForUserAction)=\"waitingForUserAction.next($event)\"\n (sidePanelButtonClicked)=\"handleShowSidePanel($event)\"\n ></co-transaction-line-action-buttons>\n </div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"line.isText\">\n <div [textContent]=\"line.text\"></div>\n <div class=\"transaction-line-delete\" *ngIf=\"!preview\">\n <co-icon class=\"delete-icon\" [iconData]=\"iconCacheService.getIcon(icons.TrashCanLight)\" (click)=\"deleteTransactionLineClick()\"></co-icon>\n </div>\n </ng-container>\n </div>\n ",
|
|
20158
20112
|
encapsulation: i0.ViewEncapsulation.None
|
|
20159
20113
|
},] }
|
|
20160
20114
|
];
|
|
@@ -20725,14 +20679,15 @@
|
|
|
20725
20679
|
TransactionLineDeliveryButtonModule,
|
|
20726
20680
|
TransactionLineDeliveryDateButtonModule,
|
|
20727
20681
|
TransactionLineStatusbarModule,
|
|
20728
|
-
TransactionLinePriceModule,
|
|
20729
20682
|
PipeModule,
|
|
20730
20683
|
corecomponents_v12.InputNumberPickerModule,
|
|
20731
20684
|
EditableLabelModule,
|
|
20732
20685
|
DialogTransactionLineDiscountModule,
|
|
20733
20686
|
TransactionLineAmountModule,
|
|
20734
20687
|
TransactionLineCommissionButtonModule,
|
|
20735
|
-
TransactionLineSupplierButtonModule
|
|
20688
|
+
TransactionLineSupplierButtonModule,
|
|
20689
|
+
TransactionLinePriceModule,
|
|
20690
|
+
TransactionLinePriceModule
|
|
20736
20691
|
],
|
|
20737
20692
|
declarations: [
|
|
20738
20693
|
TransactionPurchaseLineComponent
|
|
@@ -22888,6 +22843,7 @@
|
|
|
22888
22843
|
exports.CheckoutModule = CheckoutModule;
|
|
22889
22844
|
exports.LoaderComponent = LoaderComponent;
|
|
22890
22845
|
exports.LoaderModule = LoaderModule;
|
|
22846
|
+
exports.RelationService = RelationService;
|
|
22891
22847
|
exports.ShoppingCartComponent = ShoppingCartComponent;
|
|
22892
22848
|
exports.ShoppingCartModule = ShoppingCartModule;
|
|
22893
22849
|
exports.ShoppingCartPreviewComponent = ShoppingCartPreviewComponent;
|
|
@@ -22982,264 +22938,263 @@
|
|
|
22982
22938
|
exports["ɵcy"] = SharedService;
|
|
22983
22939
|
exports["ɵcz"] = SharedConnectorService;
|
|
22984
22940
|
exports["ɵd"] = OptionsService;
|
|
22985
|
-
exports["ɵda"] =
|
|
22986
|
-
exports["ɵdb"] =
|
|
22987
|
-
exports["ɵdc"] =
|
|
22988
|
-
exports["ɵdd"] =
|
|
22989
|
-
exports["ɵde"] =
|
|
22990
|
-
exports["ɵdf"] =
|
|
22991
|
-
exports["ɵdg"] =
|
|
22992
|
-
exports["ɵdh"] =
|
|
22993
|
-
exports["ɵdi"] =
|
|
22994
|
-
exports["ɵdj"] =
|
|
22995
|
-
exports["ɵdk"] =
|
|
22996
|
-
exports["ɵdl"] =
|
|
22997
|
-
exports["ɵdm"] =
|
|
22998
|
-
exports["ɵdn"] =
|
|
22999
|
-
exports["ɵdo"] =
|
|
23000
|
-
exports["ɵdp"] =
|
|
23001
|
-
exports["ɵdq"] =
|
|
23002
|
-
exports["ɵdr"] =
|
|
23003
|
-
exports["ɵds"] =
|
|
23004
|
-
exports["ɵdt"] =
|
|
23005
|
-
exports["ɵdu"] =
|
|
23006
|
-
exports["ɵdv"] =
|
|
23007
|
-
exports["ɵdw"] =
|
|
23008
|
-
exports["ɵdx"] =
|
|
23009
|
-
exports["ɵdy"] =
|
|
23010
|
-
exports["ɵdz"] =
|
|
22941
|
+
exports["ɵda"] = DeliveryTypeTileModule;
|
|
22942
|
+
exports["ɵdb"] = DeliveryTypeTileComponent;
|
|
22943
|
+
exports["ɵdc"] = PaymentModule;
|
|
22944
|
+
exports["ɵdd"] = PaymentTileModule;
|
|
22945
|
+
exports["ɵde"] = PaymentTileComponent;
|
|
22946
|
+
exports["ɵdf"] = PaymentQrCodeModule;
|
|
22947
|
+
exports["ɵdg"] = PaymentQrCodeComponent;
|
|
22948
|
+
exports["ɵdh"] = DownPaymentModule;
|
|
22949
|
+
exports["ɵdi"] = DownPaymentComponent;
|
|
22950
|
+
exports["ɵdj"] = PaymentService;
|
|
22951
|
+
exports["ɵdk"] = PaymentComponent;
|
|
22952
|
+
exports["ɵdl"] = RelationTypeModule;
|
|
22953
|
+
exports["ɵdm"] = RelationTypeComponent;
|
|
22954
|
+
exports["ɵdn"] = RelationGeneralModule;
|
|
22955
|
+
exports["ɵdo"] = RelationSuggestionsListModule;
|
|
22956
|
+
exports["ɵdp"] = RelationSuggestionsListItemModule;
|
|
22957
|
+
exports["ɵdq"] = RelationSuggestionsListItemComponent;
|
|
22958
|
+
exports["ɵdr"] = RelationSuggestionsListComponent;
|
|
22959
|
+
exports["ɵds"] = RelationGeneralComponent;
|
|
22960
|
+
exports["ɵdt"] = RelationAddressesModule;
|
|
22961
|
+
exports["ɵdu"] = RelationAddressesComponent;
|
|
22962
|
+
exports["ɵdv"] = RelationContactDetailsModule;
|
|
22963
|
+
exports["ɵdw"] = RelationContactDetailsComponent;
|
|
22964
|
+
exports["ɵdx"] = RelationPreferencesModule;
|
|
22965
|
+
exports["ɵdy"] = RelationPreferencesComponent;
|
|
22966
|
+
exports["ɵdz"] = TransactionHeaderBlockModule;
|
|
23011
22967
|
exports["ɵe"] = DictionaryService;
|
|
23012
|
-
exports["ɵea"] =
|
|
23013
|
-
exports["ɵeb"] =
|
|
23014
|
-
exports["ɵec"] =
|
|
23015
|
-
exports["ɵed"] =
|
|
23016
|
-
exports["ɵee"] =
|
|
23017
|
-
exports["ɵef"] =
|
|
23018
|
-
exports["ɵeg"] =
|
|
23019
|
-
exports["ɵeh"] =
|
|
23020
|
-
exports["ɵei"] =
|
|
23021
|
-
exports["ɵej"] =
|
|
23022
|
-
exports["ɵek"] =
|
|
23023
|
-
exports["ɵel"] =
|
|
23024
|
-
exports["ɵem"] =
|
|
23025
|
-
exports["ɵen"] =
|
|
23026
|
-
exports["ɵeo"] =
|
|
23027
|
-
exports["ɵep"] =
|
|
23028
|
-
exports["ɵeq"] =
|
|
23029
|
-
exports["ɵer"] =
|
|
23030
|
-
exports["ɵes"] =
|
|
23031
|
-
exports["ɵet"] =
|
|
23032
|
-
exports["ɵeu"] =
|
|
23033
|
-
exports["ɵev"] =
|
|
23034
|
-
exports["ɵew"] =
|
|
23035
|
-
exports["ɵex"] =
|
|
23036
|
-
exports["ɵey"] =
|
|
23037
|
-
exports["ɵez"] =
|
|
22968
|
+
exports["ɵea"] = TransactionHeaderBlockComponent;
|
|
22969
|
+
exports["ɵeb"] = TransactionHeaderDeliveryDateModule;
|
|
22970
|
+
exports["ɵec"] = TransactionHeaderDeliveryDateComponent;
|
|
22971
|
+
exports["ɵed"] = TransactionHeaderDeliveryOptionsModule;
|
|
22972
|
+
exports["ɵee"] = TransactionHeaderDeliveryOptionsComponent;
|
|
22973
|
+
exports["ɵef"] = TransactionHeaderRemarksModule;
|
|
22974
|
+
exports["ɵeg"] = TransactionHeaderRemarksComponent;
|
|
22975
|
+
exports["ɵeh"] = TransactionHeaderReferenceModule;
|
|
22976
|
+
exports["ɵei"] = TransactionHeaderReferenceComponent;
|
|
22977
|
+
exports["ɵej"] = TransactionHeaderRelationReferenceModule;
|
|
22978
|
+
exports["ɵek"] = TransactionHeaderRelationReferenceComponent;
|
|
22979
|
+
exports["ɵel"] = TransactionHeaderDeliveryMethodModule;
|
|
22980
|
+
exports["ɵem"] = TransactionLineCheckboxModule;
|
|
22981
|
+
exports["ɵen"] = TransactionLineCheckboxListComponent;
|
|
22982
|
+
exports["ɵeo"] = TransactionHeaderDeliveryMethodComponent;
|
|
22983
|
+
exports["ɵep"] = TransactionHeaderPreferredDeliveryDateModule;
|
|
22984
|
+
exports["ɵeq"] = TransactionHeaderPreferredDeliveryDateComponent;
|
|
22985
|
+
exports["ɵer"] = DialogTransactionHeaderDeliveryMethodModule;
|
|
22986
|
+
exports["ɵes"] = DialogHeaderSearchModule;
|
|
22987
|
+
exports["ɵet"] = DialogHeaderSearchComponent;
|
|
22988
|
+
exports["ɵeu"] = DialogTransactionHeaderDeliveryMethodComponent;
|
|
22989
|
+
exports["ɵev"] = TransactionHeaderPartialDeliveryModule;
|
|
22990
|
+
exports["ɵew"] = TransactionHeaderPartialDeliveryComponent;
|
|
22991
|
+
exports["ɵex"] = TransactionBaseComponent;
|
|
22992
|
+
exports["ɵey"] = TransactionHeaderDownpaymentPercentageModule;
|
|
22993
|
+
exports["ɵez"] = TransactionHeaderDownpaymentPercentageComponent;
|
|
23038
22994
|
exports["ɵf"] = TransactionConnectorService;
|
|
23039
|
-
exports["ɵfa"] =
|
|
23040
|
-
exports["ɵfb"] =
|
|
23041
|
-
exports["ɵfc"] =
|
|
23042
|
-
exports["ɵfd"] =
|
|
23043
|
-
exports["ɵfe"] =
|
|
23044
|
-
exports["ɵff"] =
|
|
23045
|
-
exports["ɵfg"] =
|
|
23046
|
-
exports["ɵfh"] =
|
|
23047
|
-
exports["ɵfi"] =
|
|
23048
|
-
exports["ɵfj"] =
|
|
23049
|
-
exports["ɵfk"] =
|
|
23050
|
-
exports["ɵfl"] =
|
|
23051
|
-
exports["ɵfm"] =
|
|
23052
|
-
exports["ɵfn"] =
|
|
23053
|
-
exports["ɵfo"] =
|
|
23054
|
-
exports["ɵfp"] =
|
|
23055
|
-
exports["ɵfq"] =
|
|
23056
|
-
exports["ɵfr"] =
|
|
23057
|
-
exports["ɵfs"] =
|
|
23058
|
-
exports["ɵft"] =
|
|
23059
|
-
exports["ɵfu"] =
|
|
23060
|
-
exports["ɵfv"] =
|
|
23061
|
-
exports["ɵfw"] =
|
|
23062
|
-
exports["ɵfx"] =
|
|
23063
|
-
exports["ɵfy"] =
|
|
23064
|
-
exports["ɵfz"] =
|
|
22995
|
+
exports["ɵfa"] = TransactionHeaderDownpaymentAmountModule;
|
|
22996
|
+
exports["ɵfb"] = TransactionHeaderDownpaymentAmountComponent;
|
|
22997
|
+
exports["ɵfc"] = TransactionHeaderDefinitiveModule;
|
|
22998
|
+
exports["ɵfd"] = TransactionHeaderDefinitiveComponent;
|
|
22999
|
+
exports["ɵfe"] = TransactionHeaderBranchModule;
|
|
23000
|
+
exports["ɵff"] = TransactionHeaderBranchComponent;
|
|
23001
|
+
exports["ɵfg"] = TransactionHeaderAdministrativeRelationModule;
|
|
23002
|
+
exports["ɵfh"] = TransactionHeaderAdministrativeRelationComponent;
|
|
23003
|
+
exports["ɵfi"] = TransactionHeaderMarketingModule;
|
|
23004
|
+
exports["ɵfj"] = TransactionHeaderMarketingComponent;
|
|
23005
|
+
exports["ɵfk"] = CheckoutOverviewRelationEditComponent;
|
|
23006
|
+
exports["ɵfl"] = CheckoutOverviewDeliveryEditComponent;
|
|
23007
|
+
exports["ɵfm"] = CheckoutOverviewDeliveryAddressComponent;
|
|
23008
|
+
exports["ɵfn"] = CheckoutOverviewPaymentComponent;
|
|
23009
|
+
exports["ɵfo"] = CheckoutLoginComponent;
|
|
23010
|
+
exports["ɵfp"] = TransactionFilterCategoriesModule;
|
|
23011
|
+
exports["ɵfq"] = TransactionFilterCategoriesComponent;
|
|
23012
|
+
exports["ɵfr"] = TransactionHeaderPaymentModule;
|
|
23013
|
+
exports["ɵfs"] = TransactionHeaderPaymentComponent;
|
|
23014
|
+
exports["ɵft"] = TransactionLinesGridModule;
|
|
23015
|
+
exports["ɵfu"] = TransactionBaseGridModule;
|
|
23016
|
+
exports["ɵfv"] = TransactionLineSidePanelModule;
|
|
23017
|
+
exports["ɵfw"] = TransactionLineSidePanelDefaultModule;
|
|
23018
|
+
exports["ɵfx"] = TransactionLinePriceListModule;
|
|
23019
|
+
exports["ɵfy"] = TransactionLinePriceListComponent;
|
|
23020
|
+
exports["ɵfz"] = TransactionFilterPopupBaseComponent;
|
|
23065
23021
|
exports["ɵg"] = TransactionConnectorAdapterService;
|
|
23066
|
-
exports["ɵga"] =
|
|
23067
|
-
exports["ɵgb"] =
|
|
23068
|
-
exports["ɵgc"] =
|
|
23069
|
-
exports["ɵgd"] =
|
|
23070
|
-
exports["ɵge"] =
|
|
23071
|
-
exports["ɵgf"] =
|
|
23072
|
-
exports["ɵgg"] =
|
|
23073
|
-
exports["ɵgh"] =
|
|
23074
|
-
exports["ɵgi"] =
|
|
23075
|
-
exports["ɵgj"] =
|
|
23076
|
-
exports["ɵgk"] =
|
|
23077
|
-
exports["ɵgl"] =
|
|
23078
|
-
exports["ɵgm"] =
|
|
23079
|
-
exports["ɵgn"] =
|
|
23080
|
-
exports["ɵgo"] =
|
|
23081
|
-
exports["ɵgp"] =
|
|
23082
|
-
exports["ɵgq"] =
|
|
23083
|
-
exports["ɵgr"] =
|
|
23084
|
-
exports["ɵgs"] =
|
|
23085
|
-
exports["ɵgt"] =
|
|
23086
|
-
exports["ɵgu"] =
|
|
23087
|
-
exports["ɵgv"] =
|
|
23088
|
-
exports["ɵgw"] =
|
|
23089
|
-
exports["ɵgx"] =
|
|
23090
|
-
exports["ɵgy"] =
|
|
23091
|
-
exports["ɵgz"] =
|
|
23022
|
+
exports["ɵga"] = TransactionLineVatModule;
|
|
23023
|
+
exports["ɵgb"] = TransactionLineVatComponent;
|
|
23024
|
+
exports["ɵgc"] = TransactionLineQuantityModule;
|
|
23025
|
+
exports["ɵgd"] = TransactionLineQuantityComponent;
|
|
23026
|
+
exports["ɵge"] = TransactionLineLineDiscountModule;
|
|
23027
|
+
exports["ɵgf"] = TransactionLineLineDiscountComponent;
|
|
23028
|
+
exports["ɵgg"] = TransactionLineDeliveryMethodModule;
|
|
23029
|
+
exports["ɵgh"] = TransactionLineDeliveryMethodComponent;
|
|
23030
|
+
exports["ɵgi"] = TransactionLineDeliveryDateModule;
|
|
23031
|
+
exports["ɵgj"] = TransactionLineDeliveryDateComponent;
|
|
23032
|
+
exports["ɵgk"] = TransactionLineReferenceModule;
|
|
23033
|
+
exports["ɵgl"] = TransactionLineReferenceComponent;
|
|
23034
|
+
exports["ɵgm"] = TransactionLineCommissionCodeModule;
|
|
23035
|
+
exports["ɵgn"] = TransactionLineCommissionCodeComponent;
|
|
23036
|
+
exports["ɵgo"] = TransactionLineWarehouseModule;
|
|
23037
|
+
exports["ɵgp"] = TransactionLineWarehouseComponent;
|
|
23038
|
+
exports["ɵgq"] = TransactionLineDiscountAmountModule;
|
|
23039
|
+
exports["ɵgr"] = TransactionLineDiscountAmountComponent;
|
|
23040
|
+
exports["ɵgs"] = TransactionLineQuantumDiscountModule;
|
|
23041
|
+
exports["ɵgt"] = TransactionLineQuantumDiscountComponent;
|
|
23042
|
+
exports["ɵgu"] = TransactionLineSpecialDiscountModule;
|
|
23043
|
+
exports["ɵgv"] = TransactionLineSpecialDiscountComponent;
|
|
23044
|
+
exports["ɵgw"] = TransactionLineSupplierModule;
|
|
23045
|
+
exports["ɵgx"] = TransactionLineSupplierComponent;
|
|
23046
|
+
exports["ɵgy"] = TransactionLinePriceModule;
|
|
23047
|
+
exports["ɵgz"] = TransactionLinePriceComponent;
|
|
23092
23048
|
exports["ɵh"] = SelectMultipleCacheService;
|
|
23093
|
-
exports["ɵha"] =
|
|
23094
|
-
exports["ɵhb"] =
|
|
23095
|
-
exports["ɵhc"] =
|
|
23096
|
-
exports["ɵhd"] =
|
|
23097
|
-
exports["ɵhe"] =
|
|
23098
|
-
exports["ɵhf"] =
|
|
23099
|
-
exports["ɵhg"] =
|
|
23100
|
-
exports["ɵhh"] =
|
|
23101
|
-
exports["ɵhi"] =
|
|
23102
|
-
exports["ɵhj"] =
|
|
23103
|
-
exports["ɵhk"] =
|
|
23104
|
-
exports["ɵhl"] =
|
|
23105
|
-
exports["ɵhm"] =
|
|
23106
|
-
exports["ɵhn"] =
|
|
23107
|
-
exports["ɵho"] =
|
|
23108
|
-
exports["ɵhp"] =
|
|
23109
|
-
exports["ɵhq"] =
|
|
23110
|
-
exports["ɵhr"] =
|
|
23111
|
-
exports["ɵhs"] =
|
|
23112
|
-
exports["ɵht"] =
|
|
23113
|
-
exports["ɵhu"] =
|
|
23114
|
-
exports["ɵhv"] =
|
|
23115
|
-
exports["ɵhw"] =
|
|
23116
|
-
exports["ɵhx"] =
|
|
23117
|
-
exports["ɵhy"] =
|
|
23118
|
-
exports["ɵhz"] =
|
|
23049
|
+
exports["ɵha"] = TransactionLineSidePanelDefaultComponent;
|
|
23050
|
+
exports["ɵhb"] = TransactionReceivingGoodsHistoryModule;
|
|
23051
|
+
exports["ɵhc"] = TransactionHistoryGridModule;
|
|
23052
|
+
exports["ɵhd"] = TransactionHistoryGridStatusModule;
|
|
23053
|
+
exports["ɵhe"] = TransactionHistoryGridStatusComponent;
|
|
23054
|
+
exports["ɵhf"] = TransactionHistoryGridComponent;
|
|
23055
|
+
exports["ɵhg"] = TransactionReceivingGoodsHistoryComponent;
|
|
23056
|
+
exports["ɵhh"] = TransactionReceivingGoodsDetailsModule;
|
|
23057
|
+
exports["ɵhi"] = TransactionReceivingGoodsDetailsComponent;
|
|
23058
|
+
exports["ɵhj"] = ArticleService;
|
|
23059
|
+
exports["ɵhk"] = TransactionButtonBarModule;
|
|
23060
|
+
exports["ɵhl"] = AnimatedCheckboxModule;
|
|
23061
|
+
exports["ɵhm"] = AnimatedCheckboxComponent;
|
|
23062
|
+
exports["ɵhn"] = TransactionButtonBarComponent;
|
|
23063
|
+
exports["ɵho"] = TransactionButtonBarButtonComponent;
|
|
23064
|
+
exports["ɵhp"] = TransactionButtonBarButtonBaseComponent;
|
|
23065
|
+
exports["ɵhq"] = TransactionSalesPurchaseButtonBarButtonComponent;
|
|
23066
|
+
exports["ɵhr"] = TransactionLineSidePanelPurchaseModule;
|
|
23067
|
+
exports["ɵhs"] = DefaultOkCancelButtonsModule;
|
|
23068
|
+
exports["ɵht"] = DefaultOkCancelButtonsComponent;
|
|
23069
|
+
exports["ɵhu"] = TransactionLineSidePanelPurchaseComponent;
|
|
23070
|
+
exports["ɵhv"] = TransactionLineSidePanelComponent;
|
|
23071
|
+
exports["ɵhw"] = DynamicBaseComponent;
|
|
23072
|
+
exports["ɵhx"] = TransactionLineActionButtonsModule;
|
|
23073
|
+
exports["ɵhy"] = TransactionArticleTextOverviewModule;
|
|
23074
|
+
exports["ɵhz"] = TransactionArticleTextOverviewComponent;
|
|
23119
23075
|
exports["ɵi"] = BusinessObjectCacheManagerService;
|
|
23120
|
-
exports["ɵia"] =
|
|
23121
|
-
exports["ɵib"] =
|
|
23122
|
-
exports["ɵic"] =
|
|
23123
|
-
exports["ɵid"] =
|
|
23124
|
-
exports["ɵie"] =
|
|
23125
|
-
exports["ɵif"] =
|
|
23126
|
-
exports["ɵig"] =
|
|
23127
|
-
exports["ɵih"] =
|
|
23128
|
-
exports["ɵii"] =
|
|
23129
|
-
exports["ɵij"] =
|
|
23130
|
-
exports["ɵik"] =
|
|
23131
|
-
exports["ɵil"] =
|
|
23132
|
-
exports["ɵim"] =
|
|
23133
|
-
exports["ɵin"] =
|
|
23134
|
-
exports["ɵio"] =
|
|
23135
|
-
exports["ɵip"] =
|
|
23136
|
-
exports["ɵiq"] =
|
|
23137
|
-
exports["ɵir"] =
|
|
23138
|
-
exports["ɵis"] =
|
|
23139
|
-
exports["ɵit"] =
|
|
23140
|
-
exports["ɵiu"] =
|
|
23141
|
-
exports["ɵiv"] =
|
|
23142
|
-
exports["ɵiw"] =
|
|
23143
|
-
exports["ɵix"] =
|
|
23144
|
-
exports["ɵiy"] =
|
|
23145
|
-
exports["ɵiz"] =
|
|
23076
|
+
exports["ɵia"] = TransactionLineActionButtonsComponent;
|
|
23077
|
+
exports["ɵib"] = TransactionBaseGridComponent;
|
|
23078
|
+
exports["ɵic"] = TransactionGridBaseComponent;
|
|
23079
|
+
exports["ɵid"] = DialogTransactionLineCommissionCodeModule;
|
|
23080
|
+
exports["ɵie"] = DialogTransactionLineCommissionCodeComponent;
|
|
23081
|
+
exports["ɵif"] = DialogTransactionLineBaseComponent;
|
|
23082
|
+
exports["ɵig"] = DialogTransactionLineWarehouseModule;
|
|
23083
|
+
exports["ɵih"] = DialogTransactionLineWarehouseComponent;
|
|
23084
|
+
exports["ɵii"] = DialogTransactionLineWarehouseCcModule;
|
|
23085
|
+
exports["ɵij"] = DialogTransactionLineWarehouseCcComponent;
|
|
23086
|
+
exports["ɵik"] = DialogTransactionLineDeliveryMethodModule;
|
|
23087
|
+
exports["ɵil"] = DialogTransactionLineDeliveryMethodComponent;
|
|
23088
|
+
exports["ɵim"] = DialogTransactionLineVatModule;
|
|
23089
|
+
exports["ɵin"] = DialogTransactionLineVatComponent;
|
|
23090
|
+
exports["ɵio"] = DialogTransactionLineDiscountModule;
|
|
23091
|
+
exports["ɵip"] = DialogTransactionLinePriceListModule;
|
|
23092
|
+
exports["ɵiq"] = DialogTransactionLinePriceListComponent;
|
|
23093
|
+
exports["ɵir"] = DialogTransactionLineDiscountComponent;
|
|
23094
|
+
exports["ɵis"] = TransactionLinesGridComponent;
|
|
23095
|
+
exports["ɵit"] = DiscountModule;
|
|
23096
|
+
exports["ɵiu"] = DiscountComponent;
|
|
23097
|
+
exports["ɵiv"] = TransactionQuickAccessOverviewModule;
|
|
23098
|
+
exports["ɵiw"] = TransactionQuickAccessOverviewComponent;
|
|
23099
|
+
exports["ɵix"] = TransactionQuickAccessOrderDeliveryModule;
|
|
23100
|
+
exports["ɵiy"] = TransactionSendButtonDialogModule;
|
|
23101
|
+
exports["ɵiz"] = TransactionSendButtonDialogComponent;
|
|
23146
23102
|
exports["ɵj"] = CacheField;
|
|
23147
|
-
exports["ɵja"] =
|
|
23148
|
-
exports["ɵjb"] =
|
|
23149
|
-
exports["ɵjc"] =
|
|
23150
|
-
exports["ɵjd"] =
|
|
23151
|
-
exports["ɵje"] =
|
|
23152
|
-
exports["ɵjf"] =
|
|
23153
|
-
exports["ɵjg"] =
|
|
23154
|
-
exports["ɵjh"] =
|
|
23155
|
-
exports["ɵji"] =
|
|
23156
|
-
exports["ɵjj"] =
|
|
23157
|
-
exports["ɵjk"] =
|
|
23158
|
-
exports["ɵjl"] =
|
|
23159
|
-
exports["ɵjm"] =
|
|
23160
|
-
exports["ɵjn"] =
|
|
23161
|
-
exports["ɵjo"] =
|
|
23162
|
-
exports["ɵjp"] =
|
|
23163
|
-
exports["ɵjq"] =
|
|
23164
|
-
exports["ɵjr"] =
|
|
23165
|
-
exports["ɵjs"] =
|
|
23166
|
-
exports["ɵjt"] =
|
|
23167
|
-
exports["ɵju"] =
|
|
23168
|
-
exports["ɵjv"] =
|
|
23169
|
-
exports["ɵjw"] =
|
|
23170
|
-
exports["ɵjx"] =
|
|
23171
|
-
exports["ɵjy"] =
|
|
23172
|
-
exports["ɵjz"] =
|
|
23103
|
+
exports["ɵja"] = TransactionQuickAccessOrderDeliveryComponent;
|
|
23104
|
+
exports["ɵjb"] = TransactionOrderDeliveryService;
|
|
23105
|
+
exports["ɵjc"] = TransactionQuickAccessOrderPurchaseModule;
|
|
23106
|
+
exports["ɵjd"] = TransactionQuickAccessOrderPurchaseComponent;
|
|
23107
|
+
exports["ɵje"] = TransactionOrderConfirmationGridModule;
|
|
23108
|
+
exports["ɵjf"] = TransactionOrderConfirmationGridComponent;
|
|
23109
|
+
exports["ɵjg"] = TransactionReceivedGoodsGridModule;
|
|
23110
|
+
exports["ɵjh"] = DialogTransactionLineWarehouseLocationModule;
|
|
23111
|
+
exports["ɵji"] = TransactionLineWarehouseLocationModule;
|
|
23112
|
+
exports["ɵjj"] = TransactionLineWarehouseLocationComponent;
|
|
23113
|
+
exports["ɵjk"] = DialogTransactionLineWarehouseLocationComponent;
|
|
23114
|
+
exports["ɵjl"] = TransactionLineWarehouseLocationButtonModule;
|
|
23115
|
+
exports["ɵjm"] = TransactionLineWarehouseLocationButtonComponent;
|
|
23116
|
+
exports["ɵjn"] = TransactionReceivedGoodsGridComponent;
|
|
23117
|
+
exports["ɵjo"] = ViewModeButtonsModule;
|
|
23118
|
+
exports["ɵjp"] = ViewModeButtonsComponent;
|
|
23119
|
+
exports["ɵjq"] = TransactionGridModule;
|
|
23120
|
+
exports["ɵjr"] = TransactionGridComponent;
|
|
23121
|
+
exports["ɵjs"] = TransactionTileModule;
|
|
23122
|
+
exports["ɵjt"] = TransactionTileComponent;
|
|
23123
|
+
exports["ɵju"] = TransactionOverviewLineModule;
|
|
23124
|
+
exports["ɵjv"] = EditableLabelModule;
|
|
23125
|
+
exports["ɵjw"] = EditableLabelComponent;
|
|
23126
|
+
exports["ɵjx"] = TransactionBaseLineModule;
|
|
23127
|
+
exports["ɵjy"] = TransactionBaseLineComponent;
|
|
23128
|
+
exports["ɵjz"] = TransactionLinesLineBaseComponent;
|
|
23173
23129
|
exports["ɵk"] = SelectMultipleParameterizedCacheService;
|
|
23174
|
-
exports["ɵka"] =
|
|
23175
|
-
exports["ɵkb"] =
|
|
23176
|
-
exports["ɵkc"] =
|
|
23177
|
-
exports["ɵkd"] =
|
|
23178
|
-
exports["ɵke"] =
|
|
23179
|
-
exports["ɵkf"] =
|
|
23180
|
-
exports["ɵkg"] =
|
|
23181
|
-
exports["ɵkh"] =
|
|
23182
|
-
exports["ɵki"] =
|
|
23183
|
-
exports["ɵkj"] =
|
|
23184
|
-
exports["ɵkk"] =
|
|
23185
|
-
exports["ɵkl"] =
|
|
23186
|
-
exports["ɵkm"] =
|
|
23187
|
-
exports["ɵkn"] =
|
|
23188
|
-
exports["ɵko"] =
|
|
23189
|
-
exports["ɵkp"] =
|
|
23190
|
-
exports["ɵkq"] =
|
|
23191
|
-
exports["ɵkr"] =
|
|
23192
|
-
exports["ɵks"] =
|
|
23193
|
-
exports["ɵkt"] =
|
|
23194
|
-
exports["ɵku"] =
|
|
23195
|
-
exports["ɵkv"] =
|
|
23196
|
-
exports["ɵkw"] =
|
|
23197
|
-
exports["ɵkx"] =
|
|
23198
|
-
exports["ɵky"] =
|
|
23199
|
-
exports["ɵkz"] =
|
|
23130
|
+
exports["ɵka"] = TransactionLineCommissionButtonModule;
|
|
23131
|
+
exports["ɵkb"] = TransactionLineCommissionButtonComponent;
|
|
23132
|
+
exports["ɵkc"] = TransactionLineWarehouseButtonModule;
|
|
23133
|
+
exports["ɵkd"] = TransactionLineWarehouseButtonComponent;
|
|
23134
|
+
exports["ɵke"] = TransactionLineDeliveryButtonModule;
|
|
23135
|
+
exports["ɵkf"] = TransactionLineDeliveryButtonComponent;
|
|
23136
|
+
exports["ɵkg"] = TransactionLineDeliveryDateButtonModule;
|
|
23137
|
+
exports["ɵkh"] = TransactionLineDeliveryDateButtonComponent;
|
|
23138
|
+
exports["ɵki"] = TransactionLineAmountModule;
|
|
23139
|
+
exports["ɵkj"] = TransactionLineAmountComponent;
|
|
23140
|
+
exports["ɵkk"] = TransactionOverviewLineComponent;
|
|
23141
|
+
exports["ɵkl"] = TransactionOrderDeliveryLineModule;
|
|
23142
|
+
exports["ɵkm"] = TransactionOrderDeliveryLineComponent;
|
|
23143
|
+
exports["ɵkn"] = TransactionReceiveGoodsLineModule;
|
|
23144
|
+
exports["ɵko"] = TransactionReceiveGoodsLineComponent;
|
|
23145
|
+
exports["ɵkp"] = TransactionPurchaseLineModule;
|
|
23146
|
+
exports["ɵkq"] = TransactionLineSupplierButtonModule;
|
|
23147
|
+
exports["ɵkr"] = DialogTransactionLineSupplierModule;
|
|
23148
|
+
exports["ɵks"] = DialogTransactionLineSupplierComponent;
|
|
23149
|
+
exports["ɵkt"] = TransactionLineSupplierButtonComponent;
|
|
23150
|
+
exports["ɵku"] = TransactionPurchaseLineComponent;
|
|
23151
|
+
exports["ɵkv"] = QuickSendButtonModule;
|
|
23152
|
+
exports["ɵkw"] = QuickSendButtonComponent;
|
|
23153
|
+
exports["ɵkx"] = TransactionSearchResultModule;
|
|
23154
|
+
exports["ɵky"] = TransactionSearchSalesOrderTileModule;
|
|
23155
|
+
exports["ɵkz"] = TransactionSearchSalesOrderTileComponent;
|
|
23200
23156
|
exports["ɵl"] = ErrorService;
|
|
23201
|
-
exports["ɵla"] =
|
|
23202
|
-
exports["ɵlb"] =
|
|
23203
|
-
exports["ɵlc"] =
|
|
23204
|
-
exports["ɵld"] =
|
|
23205
|
-
exports["ɵle"] =
|
|
23206
|
-
exports["ɵlf"] =
|
|
23207
|
-
exports["ɵlg"] =
|
|
23208
|
-
exports["ɵlh"] =
|
|
23209
|
-
exports["ɵli"] =
|
|
23210
|
-
exports["ɵlj"] =
|
|
23211
|
-
exports["ɵlk"] =
|
|
23212
|
-
exports["ɵll"] =
|
|
23213
|
-
exports["ɵlm"] =
|
|
23214
|
-
exports["ɵln"] =
|
|
23215
|
-
exports["ɵlo"] =
|
|
23216
|
-
exports["ɵlp"] =
|
|
23217
|
-
exports["ɵlq"] =
|
|
23218
|
-
exports["ɵlr"] =
|
|
23219
|
-
exports["ɵls"] =
|
|
23220
|
-
exports["ɵlt"] =
|
|
23221
|
-
exports["ɵlu"] =
|
|
23222
|
-
exports["ɵlv"] =
|
|
23223
|
-
exports["ɵlw"] =
|
|
23224
|
-
exports["ɵlx"] =
|
|
23225
|
-
exports["ɵly"] =
|
|
23226
|
-
exports["ɵlz"] =
|
|
23157
|
+
exports["ɵla"] = TransactionSearchTileBaseComponent;
|
|
23158
|
+
exports["ɵlb"] = TransactionSearchPurchaseOrderTileModule;
|
|
23159
|
+
exports["ɵlc"] = TransactionSearchPurchaseOrderTileComponent;
|
|
23160
|
+
exports["ɵld"] = TransactionSearchSalesOrderGridModule;
|
|
23161
|
+
exports["ɵle"] = TransactionSearchSalesOrderGridComponent;
|
|
23162
|
+
exports["ɵlf"] = TransactionSearchGridBaseComponent;
|
|
23163
|
+
exports["ɵlg"] = TransactionSearchPurchaseOrderGridModule;
|
|
23164
|
+
exports["ɵlh"] = TransactionSearchPurchaseOrderGridComponent;
|
|
23165
|
+
exports["ɵli"] = TransactionSearchHeaderModule;
|
|
23166
|
+
exports["ɵlj"] = TransactionSearchHeaderComponent;
|
|
23167
|
+
exports["ɵlk"] = TransactionSearchGridModule;
|
|
23168
|
+
exports["ɵll"] = TransactionSearchGridComponent;
|
|
23169
|
+
exports["ɵlm"] = TransactionSearchTileModule;
|
|
23170
|
+
exports["ɵln"] = TransactionSearchTileComponent;
|
|
23171
|
+
exports["ɵlo"] = TransactionSearchResultComponent;
|
|
23172
|
+
exports["ɵlp"] = TransactionSalesOrderFilterModule;
|
|
23173
|
+
exports["ɵlq"] = TransactionSalesOrderFilterContentOrderModule;
|
|
23174
|
+
exports["ɵlr"] = TransactionFilterItemModule;
|
|
23175
|
+
exports["ɵls"] = TransactionFilterItemComponent;
|
|
23176
|
+
exports["ɵlt"] = TransactionSalesOrderFilterContentOrderComponent;
|
|
23177
|
+
exports["ɵlu"] = TransactionFilterContentBaseComponent;
|
|
23178
|
+
exports["ɵlv"] = FilterRequestService;
|
|
23179
|
+
exports["ɵlw"] = TransactionSalesOrderFilterContentLogisticsModule;
|
|
23180
|
+
exports["ɵlx"] = TransactionFilterHistoricStateModule;
|
|
23181
|
+
exports["ɵly"] = TransactionFilterHistoricStateComponent;
|
|
23182
|
+
exports["ɵlz"] = TransactionSalesOrderFilterContentLogisticsComponent;
|
|
23227
23183
|
exports["ɵm"] = SelectSingleCacheService;
|
|
23228
|
-
exports["ɵma"] =
|
|
23229
|
-
exports["ɵmb"] =
|
|
23230
|
-
exports["ɵmc"] =
|
|
23231
|
-
exports["ɵmd"] =
|
|
23232
|
-
exports["ɵme"] =
|
|
23233
|
-
exports["ɵmf"] =
|
|
23234
|
-
exports["ɵmg"] =
|
|
23235
|
-
exports["ɵmh"] =
|
|
23236
|
-
exports["ɵmi"] =
|
|
23237
|
-
exports["ɵmj"] =
|
|
23238
|
-
exports["ɵmk"] =
|
|
23239
|
-
exports["ɵml"] =
|
|
23240
|
-
exports["ɵmm"] =
|
|
23241
|
-
exports["ɵmn"] =
|
|
23242
|
-
exports["ɵmo"] = TransactionFilterComponent;
|
|
23184
|
+
exports["ɵma"] = TransactionSalesOrderFilterContentArticleModule;
|
|
23185
|
+
exports["ɵmb"] = TransactionSalesOrderFilterContentArticleComponent;
|
|
23186
|
+
exports["ɵmc"] = TransactionSalesOrderFilterComponent;
|
|
23187
|
+
exports["ɵmd"] = TransactionFilterBaseComponent;
|
|
23188
|
+
exports["ɵme"] = TransactionPurchaseOrderFilterModule;
|
|
23189
|
+
exports["ɵmf"] = TransactionPurchaseOrderFilterContentOrderModule;
|
|
23190
|
+
exports["ɵmg"] = TransactionPurchaseOrderFilterContentOrderComponent;
|
|
23191
|
+
exports["ɵmh"] = TransactionPurchaseOrderFilterContentLogisticsModule;
|
|
23192
|
+
exports["ɵmi"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
|
|
23193
|
+
exports["ɵmj"] = TransactionPurchaseOrderFilterContentArticleModule;
|
|
23194
|
+
exports["ɵmk"] = TransactionPurchaseOrderFilterContentArticleComponent;
|
|
23195
|
+
exports["ɵml"] = TransactionPurchaseOrderFilterComponent;
|
|
23196
|
+
exports["ɵmm"] = TransactionFilterModule;
|
|
23197
|
+
exports["ɵmn"] = TransactionFilterComponent;
|
|
23243
23198
|
exports["ɵn"] = ArticleConnectorService;
|
|
23244
23199
|
exports["ɵo"] = TransactionEventService;
|
|
23245
23200
|
exports["ɵp"] = RelationConnectorService;
|