diff --git a/src/store/modules/order/actions.ts b/src/store/modules/order/actions.ts index 826a00f4e..d6e89d867 100644 --- a/src/store/modules/order/actions.ts +++ b/src/store/modules/order/actions.ts @@ -19,7 +19,7 @@ const actions: ActionTree ={ ...payload, shipmentMethodTypeId: !store.state.user.preference.showShippingOrders ? 'STOREPICKUP' : '', '-shipmentStatusId': '*', - '-fulfillmentStatus': 'Cancelled', + '-fulfillmentStatus': '(Cancelled OR Rejected)', orderStatusId: 'ORDER_APPROVED', orderTypeId: 'SALES_ORDER' }) @@ -107,7 +107,7 @@ const actions: ActionTree ={ ...payload, shipmentMethodTypeId: !store.state.user.preference.showShippingOrders ? 'STOREPICKUP' : '', '-shipmentStatusId': '*', - '-fulfillmentStatus': 'Cancelled', + '-fulfillmentStatus': '(Cancelled OR Rejected)', orderStatusId: 'ORDER_APPROVED', orderTypeId: 'SALES_ORDER' }) @@ -179,7 +179,7 @@ const actions: ActionTree ={ shipmentMethodTypeId: !store.state.user.preference.showShippingOrders ? 'STOREPICKUP' : '', shipmentStatusId: "SHIPMENT_PACKED", orderTypeId: 'SALES_ORDER', - '-fulfillmentStatus': 'Cancelled', + '-fulfillmentStatus': '(Cancelled OR Rejected)', }) try {