#4922 Rename customer_name to customer_no in goods service and pickup shelf service

This commit is contained in:
Lorenz Hilpert
2024-12-05 16:43:09 +01:00
parent b6aab4f743
commit ca998c0685
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ export class DomainGoodsService {
return this.abholfachService.AbholfachWareneingang({
filter: { orderitemprocessingstatus: '16;128;8192;1048576' },
input: {
customer_name: customerNumber,
customer_no: customerNumber,
},
});
}

View File

@@ -53,7 +53,7 @@ export class PickupShelfInService extends PickupShelfIOService {
return this._abholfachService.AbholfachWareneingang({
filter: { orderitemprocessingstatus: '16;128;8192;1048576' },
input: {
customer_name: args.customerNumber,
customer_no: args.customerNumber,
},
});
}