Added Warehouse condition
This commit is contained in:
parent
289e4744d3
commit
770a65945a
|
|
@ -36,6 +36,7 @@ import {
|
|||
encryptedValuesUrlFun,
|
||||
ExtractDateFormate,
|
||||
getSession,
|
||||
sessionStore,
|
||||
} from '../../Services/Others';
|
||||
|
||||
import {
|
||||
|
|
@ -46,6 +47,7 @@ import {
|
|||
} from '../../Features/ProductPage/ProductPage.js';
|
||||
import {
|
||||
ApplicationPreferences,
|
||||
changeWarehouse,
|
||||
checkSession,
|
||||
GenerateLogout,
|
||||
getCompBranchData,
|
||||
|
|
@ -308,6 +310,23 @@ const RetailDashboard = () => {
|
|||
isMountedRef.current = false;
|
||||
};
|
||||
}, []);
|
||||
//sri checkin warehouse condition
|
||||
useEffect(() => {
|
||||
const checkWarehouseorNot = async (e) => {
|
||||
let data = CompBranchData?.find((a) => a?.BrId == e);
|
||||
if (data?.LocationType == 'W') {
|
||||
sessionStore("Warhouse", true)
|
||||
await dispatch(changeWarehouse(true));
|
||||
}
|
||||
else {
|
||||
sessionStore("Warehouse", false)
|
||||
await dispatch(changeWarehouse(false));
|
||||
}
|
||||
}
|
||||
if (CompBranchData?.length > 0 && BranchId) {
|
||||
checkWarehouseorNot(BranchId)
|
||||
}
|
||||
}, [CompBranchData, BranchId])
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
|
|
@ -2440,13 +2459,11 @@ const RetailDashboard = () => {
|
|||
{SelectTypeName === 'OTP'
|
||||
? !FirstTimeOtp
|
||||
? `send ${SelectTypeName.toLocaleLowerCase()}`
|
||||
: `resend ${SelectTypeName.toLocaleLowerCase()}${
|
||||
seconds > 0 ? ` in ${seconds}s` : ''
|
||||
: `resend ${SelectTypeName.toLocaleLowerCase()}${seconds > 0 ? ` in ${seconds}s` : ''
|
||||
}`
|
||||
: !FirstTimePin
|
||||
? `send ${SelectTypeName.toLocaleLowerCase()}`
|
||||
: `resend ${SelectTypeName.toLocaleLowerCase()}${
|
||||
seconds > 0 ? ` in ${seconds}s` : ''
|
||||
: `resend ${SelectTypeName.toLocaleLowerCase()}${seconds > 0 ? ` in ${seconds}s` : ''
|
||||
}`}
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue