@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.
Files changed (31) hide show
  1. package/bundles/colijnit-transaction.umd.js +465 -510
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction.d.ts +248 -249
  4. package/colijnit-transaction.metadata.json +1 -1
  5. package/esm2015/colijnit-transaction.js +249 -250
  6. package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +2 -2
  7. package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +31 -30
  8. package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +2 -2
  9. package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +13 -7
  10. package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.js +5 -4
  11. package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.js +89 -0
  12. package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.js +23 -0
  13. package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +4 -4
  14. package/esm2015/lib/service/pending-reason.service.js +3 -1
  15. package/esm2015/lib/service/transaction.service.js +19 -55
  16. package/esm2015/public_api.js +2 -1
  17. package/fesm2015/colijnit-transaction.js +171 -191
  18. package/fesm2015/colijnit-transaction.js.map +1 -1
  19. package/lib/component/transaction-line/transaction-line/style/_layout.scss +29 -11
  20. package/lib/component/transaction-line/transaction-overview-line/style/_layout.scss +8 -0
  21. package/lib/component/transaction-line-fields/transaction-line-price/style/_layout.scss +14 -0
  22. package/lib/component/transaction-line-fields/transaction-line-price/style/_material-definition.scss +0 -0
  23. package/lib/component/transaction-line-fields/transaction-line-price/style/_theme.scss +4 -0
  24. package/lib/component/transaction-line-fields/transaction-line-price/style/material.scss +4 -0
  25. package/lib/component/transaction-line-fields/{transaction-line-price.component.d.ts → transaction-line-price/transaction-line-price.component.d.ts} +3 -2
  26. package/lib/component/transaction-line-fields/{transaction-line-price.module.d.ts → transaction-line-price/transaction-line-price.module.d.ts} +0 -0
  27. package/lib/component/transaction-lines/style/material.scss +1 -0
  28. package/package.json +4 -1
  29. package/public_api.d.ts +1 -0
  30. package/esm2015/lib/component/transaction-line-fields/transaction-line-price.component.js +0 -83
  31. 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: return [2 /*return*/, success];
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: return [2 /*return*/, success];
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, success;
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 (!response) return [3 /*break*/, 3];
6204
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6205
- case 2:
6206
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6223
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6224
- case 2:
6225
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6242
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6243
- case 2:
6244
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6261
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6262
- case 2:
6263
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6280
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6281
- case 2:
6282
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6299
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6300
- case 2:
6301
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6318
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6319
- case 2:
6320
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6337
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6338
- case 2:
6339
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6356
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6357
- case 2:
6358
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6375
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6376
- case 2:
6377
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6394
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6395
- case 2:
6396
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6413
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6414
- case 2:
6415
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6432
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6433
- case 2:
6434
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6451
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6452
- case 2:
6453
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6470
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6471
- case 2:
6472
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6489
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6490
- case 2:
6491
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 3];
6508
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6509
- case 2:
6510
- success = _a.sent();
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, success;
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 (!response) return [3 /*break*/, 4];
6822
- return [4 /*yield*/, this.handleHeaderOperationStatuses(response)];
6823
- case 3:
6824
- success = _a.sent();
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-stock\">\n <div class=\"transaction-line-stock-wrapper\">\n <stock-status-indicator [model]=\"stock\"></stock-status-indicator>\n </div>\n </div>\n <div *ngIf=!preview class=\"transaction-line-extended-wrapper\">\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-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-delivery-button>\n <co-transaction-line-delivery-date-button [transactionLine]=\"line\" class=\"two-column\"></co-transaction-line-delivery-date-button>\n <co-transaction-line-statusbar [transaction]=\"line\" [transactionKind]=\"transactionKind\"></co-transaction-line-statusbar>\n </div>\n <div *ngIf=\"!preview\" class=\"transaction-line-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]=\"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-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 ",
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-supplier-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-supplier-button>\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-button [transactionLine]=\"line\" [transactionInfo]=\"service.currentTransaction.transactionInfo\"></co-transaction-line-delivery-button>\n <co-transaction-line-delivery-date-button [transactionLine]=\"line\" class=\"two-column\"></co-transaction-line-delivery-date-button>\n <co-transaction-line-statusbar [transaction]=\"line\" [transactionKind]=\"service.currentTransaction.transactionInfo.transactionKind\"></co-transaction-line-statusbar>\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 ",
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"] = RelationService;
22986
- exports["ɵdb"] = DeliveryTypeTileModule;
22987
- exports["ɵdc"] = DeliveryTypeTileComponent;
22988
- exports["ɵdd"] = PaymentModule;
22989
- exports["ɵde"] = PaymentTileModule;
22990
- exports["ɵdf"] = PaymentTileComponent;
22991
- exports["ɵdg"] = PaymentQrCodeModule;
22992
- exports["ɵdh"] = PaymentQrCodeComponent;
22993
- exports["ɵdi"] = DownPaymentModule;
22994
- exports["ɵdj"] = DownPaymentComponent;
22995
- exports["ɵdk"] = PaymentService;
22996
- exports["ɵdl"] = PaymentComponent;
22997
- exports["ɵdm"] = RelationTypeModule;
22998
- exports["ɵdn"] = RelationTypeComponent;
22999
- exports["ɵdo"] = RelationGeneralModule;
23000
- exports["ɵdp"] = RelationSuggestionsListModule;
23001
- exports["ɵdq"] = RelationSuggestionsListItemModule;
23002
- exports["ɵdr"] = RelationSuggestionsListItemComponent;
23003
- exports["ɵds"] = RelationSuggestionsListComponent;
23004
- exports["ɵdt"] = RelationGeneralComponent;
23005
- exports["ɵdu"] = RelationAddressesModule;
23006
- exports["ɵdv"] = RelationAddressesComponent;
23007
- exports["ɵdw"] = RelationContactDetailsModule;
23008
- exports["ɵdx"] = RelationContactDetailsComponent;
23009
- exports["ɵdy"] = RelationPreferencesModule;
23010
- exports["ɵdz"] = RelationPreferencesComponent;
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"] = TransactionHeaderBlockModule;
23013
- exports["ɵeb"] = TransactionHeaderBlockComponent;
23014
- exports["ɵec"] = TransactionHeaderDeliveryDateModule;
23015
- exports["ɵed"] = TransactionHeaderDeliveryDateComponent;
23016
- exports["ɵee"] = TransactionHeaderDeliveryOptionsModule;
23017
- exports["ɵef"] = TransactionHeaderDeliveryOptionsComponent;
23018
- exports["ɵeg"] = TransactionHeaderRemarksModule;
23019
- exports["ɵeh"] = TransactionHeaderRemarksComponent;
23020
- exports["ɵei"] = TransactionHeaderReferenceModule;
23021
- exports["ɵej"] = TransactionHeaderReferenceComponent;
23022
- exports["ɵek"] = TransactionHeaderRelationReferenceModule;
23023
- exports["ɵel"] = TransactionHeaderRelationReferenceComponent;
23024
- exports["ɵem"] = TransactionHeaderDeliveryMethodModule;
23025
- exports["ɵen"] = TransactionLineCheckboxModule;
23026
- exports["ɵeo"] = TransactionLineCheckboxListComponent;
23027
- exports["ɵep"] = TransactionHeaderDeliveryMethodComponent;
23028
- exports["ɵeq"] = TransactionHeaderPreferredDeliveryDateModule;
23029
- exports["ɵer"] = TransactionHeaderPreferredDeliveryDateComponent;
23030
- exports["ɵes"] = DialogTransactionHeaderDeliveryMethodModule;
23031
- exports["ɵet"] = DialogHeaderSearchModule;
23032
- exports["ɵeu"] = DialogHeaderSearchComponent;
23033
- exports["ɵev"] = DialogTransactionHeaderDeliveryMethodComponent;
23034
- exports["ɵew"] = TransactionHeaderPartialDeliveryModule;
23035
- exports["ɵex"] = TransactionHeaderPartialDeliveryComponent;
23036
- exports["ɵey"] = TransactionBaseComponent;
23037
- exports["ɵez"] = TransactionHeaderDownpaymentPercentageModule;
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"] = TransactionHeaderDownpaymentPercentageComponent;
23040
- exports["ɵfb"] = TransactionHeaderDownpaymentAmountModule;
23041
- exports["ɵfc"] = TransactionHeaderDownpaymentAmountComponent;
23042
- exports["ɵfd"] = TransactionHeaderDefinitiveModule;
23043
- exports["ɵfe"] = TransactionHeaderDefinitiveComponent;
23044
- exports["ɵff"] = TransactionHeaderBranchModule;
23045
- exports["ɵfg"] = TransactionHeaderBranchComponent;
23046
- exports["ɵfh"] = TransactionHeaderAdministrativeRelationModule;
23047
- exports["ɵfi"] = TransactionHeaderAdministrativeRelationComponent;
23048
- exports["ɵfj"] = TransactionHeaderMarketingModule;
23049
- exports["ɵfk"] = TransactionHeaderMarketingComponent;
23050
- exports["ɵfl"] = CheckoutOverviewRelationEditComponent;
23051
- exports["ɵfm"] = CheckoutOverviewDeliveryEditComponent;
23052
- exports["ɵfn"] = CheckoutOverviewDeliveryAddressComponent;
23053
- exports["ɵfo"] = CheckoutOverviewPaymentComponent;
23054
- exports["ɵfp"] = CheckoutLoginComponent;
23055
- exports["ɵfq"] = TransactionFilterCategoriesModule;
23056
- exports["ɵfr"] = TransactionFilterCategoriesComponent;
23057
- exports["ɵfs"] = TransactionHeaderPaymentModule;
23058
- exports["ɵft"] = TransactionHeaderPaymentComponent;
23059
- exports["ɵfu"] = TransactionLinesGridModule;
23060
- exports["ɵfv"] = TransactionBaseGridModule;
23061
- exports["ɵfw"] = TransactionLineSidePanelModule;
23062
- exports["ɵfx"] = TransactionLineSidePanelDefaultModule;
23063
- exports["ɵfy"] = TransactionLinePriceModule;
23064
- exports["ɵfz"] = TransactionLinePriceComponent;
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"] = TransactionLinePriceListModule;
23067
- exports["ɵgb"] = TransactionLinePriceListComponent;
23068
- exports["ɵgc"] = TransactionFilterPopupBaseComponent;
23069
- exports["ɵgd"] = TransactionLineVatModule;
23070
- exports["ɵge"] = TransactionLineVatComponent;
23071
- exports["ɵgf"] = TransactionLineQuantityModule;
23072
- exports["ɵgg"] = TransactionLineQuantityComponent;
23073
- exports["ɵgh"] = TransactionLineLineDiscountModule;
23074
- exports["ɵgi"] = TransactionLineLineDiscountComponent;
23075
- exports["ɵgj"] = TransactionLineDeliveryMethodModule;
23076
- exports["ɵgk"] = TransactionLineDeliveryMethodComponent;
23077
- exports["ɵgl"] = TransactionLineDeliveryDateModule;
23078
- exports["ɵgm"] = TransactionLineDeliveryDateComponent;
23079
- exports["ɵgn"] = TransactionLineReferenceModule;
23080
- exports["ɵgo"] = TransactionLineReferenceComponent;
23081
- exports["ɵgp"] = TransactionLineCommissionCodeModule;
23082
- exports["ɵgq"] = TransactionLineCommissionCodeComponent;
23083
- exports["ɵgr"] = TransactionLineWarehouseModule;
23084
- exports["ɵgs"] = TransactionLineWarehouseComponent;
23085
- exports["ɵgt"] = TransactionLineDiscountAmountModule;
23086
- exports["ɵgu"] = TransactionLineDiscountAmountComponent;
23087
- exports["ɵgv"] = TransactionLineQuantumDiscountModule;
23088
- exports["ɵgw"] = TransactionLineQuantumDiscountComponent;
23089
- exports["ɵgx"] = TransactionLineSpecialDiscountModule;
23090
- exports["ɵgy"] = TransactionLineSpecialDiscountComponent;
23091
- exports["ɵgz"] = TransactionLineSupplierModule;
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"] = TransactionLineSupplierComponent;
23094
- exports["ɵhb"] = TransactionLineSidePanelDefaultComponent;
23095
- exports["ɵhc"] = TransactionReceivingGoodsHistoryModule;
23096
- exports["ɵhd"] = TransactionHistoryGridModule;
23097
- exports["ɵhe"] = TransactionHistoryGridStatusModule;
23098
- exports["ɵhf"] = TransactionHistoryGridStatusComponent;
23099
- exports["ɵhg"] = TransactionHistoryGridComponent;
23100
- exports["ɵhh"] = TransactionReceivingGoodsHistoryComponent;
23101
- exports["ɵhi"] = TransactionReceivingGoodsDetailsModule;
23102
- exports["ɵhj"] = TransactionReceivingGoodsDetailsComponent;
23103
- exports["ɵhk"] = ArticleService;
23104
- exports["ɵhl"] = TransactionButtonBarModule;
23105
- exports["ɵhm"] = AnimatedCheckboxModule;
23106
- exports["ɵhn"] = AnimatedCheckboxComponent;
23107
- exports["ɵho"] = TransactionButtonBarComponent;
23108
- exports["ɵhp"] = TransactionButtonBarButtonComponent;
23109
- exports["ɵhq"] = TransactionButtonBarButtonBaseComponent;
23110
- exports["ɵhr"] = TransactionSalesPurchaseButtonBarButtonComponent;
23111
- exports["ɵhs"] = TransactionLineSidePanelPurchaseModule;
23112
- exports["ɵht"] = DefaultOkCancelButtonsModule;
23113
- exports["ɵhu"] = DefaultOkCancelButtonsComponent;
23114
- exports["ɵhv"] = TransactionLineSidePanelPurchaseComponent;
23115
- exports["ɵhw"] = TransactionLineSidePanelComponent;
23116
- exports["ɵhx"] = DynamicBaseComponent;
23117
- exports["ɵhy"] = TransactionLineActionButtonsModule;
23118
- exports["ɵhz"] = TransactionArticleTextOverviewModule;
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"] = TransactionArticleTextOverviewComponent;
23121
- exports["ɵib"] = TransactionLineActionButtonsComponent;
23122
- exports["ɵic"] = TransactionBaseGridComponent;
23123
- exports["ɵid"] = TransactionGridBaseComponent;
23124
- exports["ɵie"] = DialogTransactionLineCommissionCodeModule;
23125
- exports["ɵif"] = DialogTransactionLineCommissionCodeComponent;
23126
- exports["ɵig"] = DialogTransactionLineBaseComponent;
23127
- exports["ɵih"] = DialogTransactionLineWarehouseModule;
23128
- exports["ɵii"] = DialogTransactionLineWarehouseComponent;
23129
- exports["ɵij"] = DialogTransactionLineWarehouseCcModule;
23130
- exports["ɵik"] = DialogTransactionLineWarehouseCcComponent;
23131
- exports["ɵil"] = DialogTransactionLineDeliveryMethodModule;
23132
- exports["ɵim"] = DialogTransactionLineDeliveryMethodComponent;
23133
- exports["ɵin"] = DialogTransactionLineVatModule;
23134
- exports["ɵio"] = DialogTransactionLineVatComponent;
23135
- exports["ɵip"] = DialogTransactionLineDiscountModule;
23136
- exports["ɵiq"] = DialogTransactionLinePriceListModule;
23137
- exports["ɵir"] = DialogTransactionLinePriceListComponent;
23138
- exports["ɵis"] = DialogTransactionLineDiscountComponent;
23139
- exports["ɵit"] = TransactionLinesGridComponent;
23140
- exports["ɵiu"] = DiscountModule;
23141
- exports["ɵiv"] = DiscountComponent;
23142
- exports["ɵiw"] = TransactionQuickAccessOverviewModule;
23143
- exports["ɵix"] = TransactionQuickAccessOverviewComponent;
23144
- exports["ɵiy"] = TransactionQuickAccessOrderDeliveryModule;
23145
- exports["ɵiz"] = TransactionSendButtonDialogModule;
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"] = TransactionSendButtonDialogComponent;
23148
- exports["ɵjb"] = TransactionQuickAccessOrderDeliveryComponent;
23149
- exports["ɵjc"] = TransactionOrderDeliveryService;
23150
- exports["ɵjd"] = TransactionQuickAccessOrderPurchaseModule;
23151
- exports["ɵje"] = TransactionQuickAccessOrderPurchaseComponent;
23152
- exports["ɵjf"] = TransactionOrderConfirmationGridModule;
23153
- exports["ɵjg"] = TransactionOrderConfirmationGridComponent;
23154
- exports["ɵjh"] = TransactionReceivedGoodsGridModule;
23155
- exports["ɵji"] = DialogTransactionLineWarehouseLocationModule;
23156
- exports["ɵjj"] = TransactionLineWarehouseLocationModule;
23157
- exports["ɵjk"] = TransactionLineWarehouseLocationComponent;
23158
- exports["ɵjl"] = DialogTransactionLineWarehouseLocationComponent;
23159
- exports["ɵjm"] = TransactionLineWarehouseLocationButtonModule;
23160
- exports["ɵjn"] = TransactionLineWarehouseLocationButtonComponent;
23161
- exports["ɵjo"] = TransactionReceivedGoodsGridComponent;
23162
- exports["ɵjp"] = ViewModeButtonsModule;
23163
- exports["ɵjq"] = ViewModeButtonsComponent;
23164
- exports["ɵjr"] = TransactionGridModule;
23165
- exports["ɵjs"] = TransactionGridComponent;
23166
- exports["ɵjt"] = TransactionTileModule;
23167
- exports["ɵju"] = TransactionTileComponent;
23168
- exports["ɵjv"] = TransactionOverviewLineModule;
23169
- exports["ɵjw"] = EditableLabelModule;
23170
- exports["ɵjx"] = EditableLabelComponent;
23171
- exports["ɵjy"] = TransactionBaseLineModule;
23172
- exports["ɵjz"] = TransactionBaseLineComponent;
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"] = TransactionLinesLineBaseComponent;
23175
- exports["ɵkb"] = TransactionLineCommissionButtonModule;
23176
- exports["ɵkc"] = TransactionLineCommissionButtonComponent;
23177
- exports["ɵkd"] = TransactionLineWarehouseButtonModule;
23178
- exports["ɵke"] = TransactionLineWarehouseButtonComponent;
23179
- exports["ɵkf"] = TransactionLineDeliveryButtonModule;
23180
- exports["ɵkg"] = TransactionLineDeliveryButtonComponent;
23181
- exports["ɵkh"] = TransactionLineDeliveryDateButtonModule;
23182
- exports["ɵki"] = TransactionLineDeliveryDateButtonComponent;
23183
- exports["ɵkj"] = TransactionLineAmountModule;
23184
- exports["ɵkk"] = TransactionLineAmountComponent;
23185
- exports["ɵkl"] = TransactionOverviewLineComponent;
23186
- exports["ɵkm"] = TransactionOrderDeliveryLineModule;
23187
- exports["ɵkn"] = TransactionOrderDeliveryLineComponent;
23188
- exports["ɵko"] = TransactionReceiveGoodsLineModule;
23189
- exports["ɵkp"] = TransactionReceiveGoodsLineComponent;
23190
- exports["ɵkq"] = TransactionPurchaseLineModule;
23191
- exports["ɵkr"] = TransactionLineSupplierButtonModule;
23192
- exports["ɵks"] = DialogTransactionLineSupplierModule;
23193
- exports["ɵkt"] = DialogTransactionLineSupplierComponent;
23194
- exports["ɵku"] = TransactionLineSupplierButtonComponent;
23195
- exports["ɵkv"] = TransactionPurchaseLineComponent;
23196
- exports["ɵkw"] = QuickSendButtonModule;
23197
- exports["ɵkx"] = QuickSendButtonComponent;
23198
- exports["ɵky"] = TransactionSearchResultModule;
23199
- exports["ɵkz"] = TransactionSearchSalesOrderTileModule;
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"] = TransactionSearchSalesOrderTileComponent;
23202
- exports["ɵlb"] = TransactionSearchTileBaseComponent;
23203
- exports["ɵlc"] = TransactionSearchPurchaseOrderTileModule;
23204
- exports["ɵld"] = TransactionSearchPurchaseOrderTileComponent;
23205
- exports["ɵle"] = TransactionSearchSalesOrderGridModule;
23206
- exports["ɵlf"] = TransactionSearchSalesOrderGridComponent;
23207
- exports["ɵlg"] = TransactionSearchGridBaseComponent;
23208
- exports["ɵlh"] = TransactionSearchPurchaseOrderGridModule;
23209
- exports["ɵli"] = TransactionSearchPurchaseOrderGridComponent;
23210
- exports["ɵlj"] = TransactionSearchHeaderModule;
23211
- exports["ɵlk"] = TransactionSearchHeaderComponent;
23212
- exports["ɵll"] = TransactionSearchGridModule;
23213
- exports["ɵlm"] = TransactionSearchGridComponent;
23214
- exports["ɵln"] = TransactionSearchTileModule;
23215
- exports["ɵlo"] = TransactionSearchTileComponent;
23216
- exports["ɵlp"] = TransactionSearchResultComponent;
23217
- exports["ɵlq"] = TransactionSalesOrderFilterModule;
23218
- exports["ɵlr"] = TransactionSalesOrderFilterContentOrderModule;
23219
- exports["ɵls"] = TransactionFilterItemModule;
23220
- exports["ɵlt"] = TransactionFilterItemComponent;
23221
- exports["ɵlu"] = TransactionSalesOrderFilterContentOrderComponent;
23222
- exports["ɵlv"] = TransactionFilterContentBaseComponent;
23223
- exports["ɵlw"] = FilterRequestService;
23224
- exports["ɵlx"] = TransactionSalesOrderFilterContentLogisticsModule;
23225
- exports["ɵly"] = TransactionFilterHistoricStateModule;
23226
- exports["ɵlz"] = TransactionFilterHistoricStateComponent;
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"] = TransactionSalesOrderFilterContentLogisticsComponent;
23229
- exports["ɵmb"] = TransactionSalesOrderFilterContentArticleModule;
23230
- exports["ɵmc"] = TransactionSalesOrderFilterContentArticleComponent;
23231
- exports["ɵmd"] = TransactionSalesOrderFilterComponent;
23232
- exports["ɵme"] = TransactionFilterBaseComponent;
23233
- exports["ɵmf"] = TransactionPurchaseOrderFilterModule;
23234
- exports["ɵmg"] = TransactionPurchaseOrderFilterContentOrderModule;
23235
- exports["ɵmh"] = TransactionPurchaseOrderFilterContentOrderComponent;
23236
- exports["ɵmi"] = TransactionPurchaseOrderFilterContentLogisticsModule;
23237
- exports["ɵmj"] = TransactionPurchaseOrderFilterContentLogisticsComponent;
23238
- exports["ɵmk"] = TransactionPurchaseOrderFilterContentArticleModule;
23239
- exports["ɵml"] = TransactionPurchaseOrderFilterContentArticleComponent;
23240
- exports["ɵmm"] = TransactionPurchaseOrderFilterComponent;
23241
- exports["ɵmn"] = TransactionFilterModule;
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;