@colijnit/transaction 12.1.46 → 12.1.47
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 +1 -3
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +1 -3
- package/esm2015/lib/service/transaction-connector-adapter.service.js +2 -2
- package/fesm2015/colijnit-transaction.js +1 -3
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +1 -1
|
@@ -3361,7 +3361,7 @@ class TransactionConnectorAdapterService {
|
|
|
3361
3361
|
}
|
|
3362
3362
|
getPaymentMethods() {
|
|
3363
3363
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3364
|
-
const result = yield this.connector.
|
|
3364
|
+
const result = yield this.connector.getPaymentMethodsForSalesOrder();
|
|
3365
3365
|
if (result.validationResult && result.validationResult.success) {
|
|
3366
3366
|
return this._boFactory.makeBOArrayFromRawBackendDataArray(PaymentMethod, result.resultObject);
|
|
3367
3367
|
}
|
|
@@ -20447,8 +20447,6 @@ class TransactionSearchResultComponent {
|
|
|
20447
20447
|
return true;
|
|
20448
20448
|
}
|
|
20449
20449
|
ngOnInit() {
|
|
20450
|
-
this.searchService.searchRequest.general = 'test';
|
|
20451
|
-
this.searchService.searchTransactions(); //todo: weghalen
|
|
20452
20450
|
}
|
|
20453
20451
|
get fullscreen() {
|
|
20454
20452
|
return this.activeSearchViewMode === SearchViewMode.FullScreen;
|