|
|
|
@ -320,7 +320,7 @@ const transferRemind2Checklist = (remindstate) => {
|
|
|
|
export const setRemindStateAction = async (orderId, checkedValue) => {
|
|
|
|
export const setRemindStateAction = async (orderId, checkedValue) => {
|
|
|
|
const finalState = {
|
|
|
|
const finalState = {
|
|
|
|
'FirstRemind': checkedValue.includes('FirstRemind') ? 1 : 0,
|
|
|
|
'FirstRemind': checkedValue.includes('FirstRemind') ? 1 : 0,
|
|
|
|
'SecondRemind': checkedValue.includes('SendFirstRemind') ? 1 : 0,
|
|
|
|
'SecondRemind': checkedValue.includes('SecondRemind') ? 1 : 0,
|
|
|
|
'ThirdRemind': checkedValue.includes('ThirdRemind') ? 1 : 0,
|
|
|
|
'ThirdRemind': checkedValue.includes('ThirdRemind') ? 1 : 0,
|
|
|
|
'important': checkedValue.includes('important') ? 1 : 0,
|
|
|
|
'important': checkedValue.includes('important') ? 1 : 0,
|
|
|
|
'sendsurvey': checkedValue.includes('sendsurvey') ? 1 : 0,
|
|
|
|
'sendsurvey': checkedValue.includes('sendsurvey') ? 1 : 0,
|
|
|
|
|