getScailoClientForGoodsReceiptsService function
Get the client to access the Goods Receipts service
Implementation
GoodsReceiptsServiceClient getScailoClientForGoodsReceiptsService() {
return GoodsReceiptsServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}