add singlePc field
This commit is contained in:
parent
f1e8442872
commit
8124100aba
|
|
@ -155,16 +155,16 @@ const BSBillingTable3 = () => {
|
||||||
OrderType === 'Hold'
|
OrderType === 'Hold'
|
||||||
? tableData?.filter((a, b) => a.BookingTypeName === 'TakeAway')
|
? tableData?.filter((a, b) => a.BookingTypeName === 'TakeAway')
|
||||||
: tableData?.filter(
|
: tableData?.filter(
|
||||||
(a, b) => a.BookingTypeName === 'TakeAway' && !a?.SalesId
|
(a, b) => a.BookingTypeName === 'TakeAway' && !a?.SalesId
|
||||||
);
|
);
|
||||||
const OldtableDataDinein = tableData?.filter(
|
const OldtableDataDinein = tableData?.filter(
|
||||||
(a, b) => a.BookingTypeName === 'Dine In' && a?.SalesId
|
(a, b) => a.BookingTypeName === 'Dine In' && a?.SalesId
|
||||||
);
|
);
|
||||||
const OldtableDataTakeAway =
|
const OldtableDataTakeAway =
|
||||||
OrderType != 'Hold'
|
OrderType != 'Hold'
|
||||||
? tableData?.filter(
|
? tableData?.filter(
|
||||||
(a, b) => a.BookingTypeName === 'TakeAway' && a?.SalesId
|
(a, b) => a.BookingTypeName === 'TakeAway' && a?.SalesId
|
||||||
)
|
)
|
||||||
: [];
|
: [];
|
||||||
const [EditQuantity, setEditQuantity] = useState(false);
|
const [EditQuantity, setEditQuantity] = useState(false);
|
||||||
const [Modaldata, setModaldata] = useState([]);
|
const [Modaldata, setModaldata] = useState([]);
|
||||||
|
|
@ -1057,9 +1057,9 @@ const BSBillingTable3 = () => {
|
||||||
)?.map((item, idx) =>
|
)?.map((item, idx) =>
|
||||||
idx === 0
|
idx === 0
|
||||||
? {
|
? {
|
||||||
...item,
|
...item,
|
||||||
FreeQty,
|
FreeQty,
|
||||||
}
|
}
|
||||||
: item
|
: item
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
@ -1176,6 +1176,7 @@ const BSBillingTable3 = () => {
|
||||||
CompleteRemove: true,
|
CompleteRemove: true,
|
||||||
InwardDtlId: isPaidproduct?.InwardDtlId,
|
InwardDtlId: isPaidproduct?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
|
OrderRate: isPaidproduct?.OrderRate,
|
||||||
Offer: 0,
|
Offer: 0,
|
||||||
});
|
});
|
||||||
} else if (isPaidproduct?.OrderQty > item?.OrderQty) {
|
} else if (isPaidproduct?.OrderQty > item?.OrderQty) {
|
||||||
|
|
@ -1350,6 +1351,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: isCheckFreeProduct?.OverAllFreeQty,
|
OverAllFreeQty: isCheckFreeProduct?.OverAllFreeQty,
|
||||||
|
|
@ -1429,6 +1431,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: isCheckFreeProduct?.OverAllFreeQty,
|
OverAllFreeQty: isCheckFreeProduct?.OverAllFreeQty,
|
||||||
|
|
@ -1462,6 +1465,8 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
|
|
||||||
});
|
});
|
||||||
await ChangeOfferAppliedProdsFn({
|
await ChangeOfferAppliedProdsFn({
|
||||||
inwardDtlId: item?.InwardDtlId,
|
inwardDtlId: item?.InwardDtlId,
|
||||||
|
|
@ -1493,6 +1498,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: isPaidProductAvailableInCart?.InwardDtlId,
|
InwardDtlId: isPaidProductAvailableInCart?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: 0,
|
Offer: 0,
|
||||||
|
OrderRate: isPaidProductAvailableInCart?.OrderRate,
|
||||||
});
|
});
|
||||||
} else if (
|
} else if (
|
||||||
isPaidProductAvailableInCart?.OrderQty > item?.OrderQty
|
isPaidProductAvailableInCart?.OrderQty > item?.OrderQty
|
||||||
|
|
@ -1576,6 +1582,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: freeProdList?.OverAllFreeQty,
|
OverAllFreeQty: freeProdList?.OverAllFreeQty,
|
||||||
|
|
@ -1602,6 +1609,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: freeProdList?.OverAllFreeQty,
|
OverAllFreeQty: freeProdList?.OverAllFreeQty,
|
||||||
|
|
@ -1649,7 +1657,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: null,
|
BuyInwardDtlId: null,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
OrderRate: item?.OrderRate,
|
OrderRate: item?.OrderRate
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const isCheck = GlobalOfferAppliedProductsData?.find(
|
const isCheck = GlobalOfferAppliedProductsData?.find(
|
||||||
|
|
@ -1951,6 +1959,7 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: item?.InwardDtlId,
|
BuyInwardDtlId: item?.InwardDtlId,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: FreeProd?.OverAllFreeQty - item?.OrderQty,
|
OverAllFreeQty: FreeProd?.OverAllFreeQty - item?.OrderQty,
|
||||||
|
|
@ -1969,6 +1978,8 @@ const BSBillingTable3 = () => {
|
||||||
InwardDtlId: item?.InwardDtlId,
|
InwardDtlId: item?.InwardDtlId,
|
||||||
BuyInwardDtlId: item?.InwardDtlId,
|
BuyInwardDtlId: item?.InwardDtlId,
|
||||||
Offer: item?.Offer,
|
Offer: item?.Offer,
|
||||||
|
OrderRate: item?.OrderRate,
|
||||||
|
|
||||||
});
|
});
|
||||||
await ChangeFreeprodlistFn({
|
await ChangeFreeprodlistFn({
|
||||||
OverAllFreeQty: item?.OrderQty,
|
OverAllFreeQty: item?.OrderQty,
|
||||||
|
|
@ -2394,11 +2405,10 @@ const BSBillingTable3 = () => {
|
||||||
{OldtableDataTakeAway?.map((item, index) => (
|
{OldtableDataTakeAway?.map((item, index) => (
|
||||||
<tr
|
<tr
|
||||||
key={index}
|
key={index}
|
||||||
className={`${
|
className={`${item?.SalesId && OrderType !== 'Hold'
|
||||||
item?.SalesId && OrderType !== 'Hold'
|
? 'BSBill-Table3-content-Disabled'
|
||||||
? 'BSBill-Table3-content-Disabled'
|
: 'BSBill-Table3-content'
|
||||||
: 'BSBill-Table3-content'
|
}
|
||||||
}
|
|
||||||
|
|
||||||
`}
|
`}
|
||||||
style={{
|
style={{
|
||||||
|
|
@ -2409,15 +2419,15 @@ const BSBillingTable3 = () => {
|
||||||
? item?.SalesId && OrderType !== 'Hold'
|
? item?.SalesId && OrderType !== 'Hold'
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: triggerAnimation &&
|
: triggerAnimation &&
|
||||||
index === 0 &&
|
index === 0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataTakeAway?.length >= PreviousdataLength
|
tableDataTakeAway?.length >= PreviousdataLength
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: triggerAnimation &&
|
: triggerAnimation &&
|
||||||
index === 0 &&
|
index === 0 &&
|
||||||
tableDataTakeAway?.length >= PreviousdataLength &&
|
tableDataTakeAway?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
!UnpaidData
|
!UnpaidData
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: 'inherit'
|
: 'inherit'
|
||||||
: 'none',
|
: 'none',
|
||||||
|
|
@ -2425,9 +2435,9 @@ const BSBillingTable3 = () => {
|
||||||
item?.SalesId && OrderType !== 'Hold'
|
item?.SalesId && OrderType !== 'Hold'
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: GlobEstBooking === 'ParEst' &&
|
: GlobEstBooking === 'ParEst' &&
|
||||||
GlobProdwisedata?.includes(
|
GlobProdwisedata?.includes(
|
||||||
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
||||||
)
|
)
|
||||||
? '#b2d1f7'
|
? '#b2d1f7'
|
||||||
: index % 2 === 0
|
: index % 2 === 0
|
||||||
? 'white'
|
? 'white'
|
||||||
|
|
@ -2483,7 +2493,7 @@ const BSBillingTable3 = () => {
|
||||||
style={{ fontFamily: 'Poppins' }}
|
style={{ fontFamily: 'Poppins' }}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
item.FullProductIdentifierDtls?.length > 0 ||
|
item.FullProductIdentifierDtls?.length > 0 ||
|
||||||
item.ProductIdentifierDtls?.length > 0
|
item.ProductIdentifierDtls?.length > 0
|
||||||
? handleImeiDetails(item)
|
? handleImeiDetails(item)
|
||||||
: editField && handleEditQuantity(item)
|
: editField && handleEditQuantity(item)
|
||||||
}
|
}
|
||||||
|
|
@ -2530,21 +2540,21 @@ const BSBillingTable3 = () => {
|
||||||
{productBasedExtraCharges?.find(
|
{productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
) !== undefined && (
|
) !== undefined && (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
fontSize: '10px',
|
fontSize: '10px',
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Extra Charges :{' '}
|
Extra Charges :{' '}
|
||||||
{
|
{
|
||||||
productBasedExtraCharges?.find(
|
productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
)?.TotalAmt
|
)?.TotalAmt
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
@ -2637,8 +2647,8 @@ const BSBillingTable3 = () => {
|
||||||
>
|
>
|
||||||
{allowDecimal
|
{allowDecimal
|
||||||
? Number(
|
? Number(
|
||||||
item?.TotalAmt - (item?.Offer || 0) || 0
|
item?.TotalAmt - (item?.Offer || 0) || 0
|
||||||
).toFixed(2)
|
).toFixed(2)
|
||||||
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
||||||
</td>
|
</td>
|
||||||
)}
|
)}
|
||||||
|
|
@ -2673,11 +2683,10 @@ const BSBillingTable3 = () => {
|
||||||
{OldtableDataDinein?.map((item, index) => (
|
{OldtableDataDinein?.map((item, index) => (
|
||||||
<tr
|
<tr
|
||||||
key={OldtableDataTakeAway?.length + index}
|
key={OldtableDataTakeAway?.length + index}
|
||||||
className={`${
|
className={`${item?.SalesId
|
||||||
item?.SalesId
|
? 'BSBill-Table3-content-Disabled'
|
||||||
? 'BSBill-Table3-content-Disabled'
|
: 'BSBill-Table3-content'
|
||||||
: 'BSBill-Table3-content'
|
}
|
||||||
}
|
|
||||||
|
|
||||||
`}
|
`}
|
||||||
style={{
|
style={{
|
||||||
|
|
@ -2688,26 +2697,26 @@ const BSBillingTable3 = () => {
|
||||||
? item?.SalesId
|
? item?.SalesId
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: BookingType === 'Dine In' &&
|
: BookingType === 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataTakeAway?.length + index === 0 &&
|
OldtableDataTakeAway?.length + index === 0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataDinein?.length >= PreviousdataLength
|
tableDataDinein?.length >= PreviousdataLength
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: BookingType !== 'Dine In' &&
|
: BookingType !== 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataTakeAway?.length + index === 0 &&
|
OldtableDataTakeAway?.length + index === 0 &&
|
||||||
tableDataDinein?.length >= PreviousdataLength &&
|
tableDataDinein?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
!UnpaidData
|
!UnpaidData
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: 'inherit'
|
: 'inherit'
|
||||||
: 'none',
|
: 'none',
|
||||||
background: item?.SalesId
|
background: item?.SalesId
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: GlobEstBooking === 'ParEst' &&
|
: GlobEstBooking === 'ParEst' &&
|
||||||
GlobProdwisedata?.includes(
|
GlobProdwisedata?.includes(
|
||||||
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
||||||
)
|
)
|
||||||
? '#b2d1f7'
|
? '#b2d1f7'
|
||||||
: (OldtableDataTakeAway?.length + index) % 2 === 0
|
: (OldtableDataTakeAway?.length + index) % 2 === 0
|
||||||
? 'white'
|
? 'white'
|
||||||
|
|
@ -2808,21 +2817,21 @@ const BSBillingTable3 = () => {
|
||||||
{productBasedExtraCharges?.find(
|
{productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
) !== undefined && (
|
) !== undefined && (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
fontSize: '10px',
|
fontSize: '10px',
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Extra Charges :{' '}
|
Extra Charges :{' '}
|
||||||
{
|
{
|
||||||
productBasedExtraCharges?.find(
|
productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
)?.TotalAmt
|
)?.TotalAmt
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
@ -2915,8 +2924,8 @@ const BSBillingTable3 = () => {
|
||||||
>
|
>
|
||||||
{allowDecimal
|
{allowDecimal
|
||||||
? Number(
|
? Number(
|
||||||
item?.TotalAmt - (item?.Offer || 0) || 0
|
item?.TotalAmt - (item?.Offer || 0) || 0
|
||||||
).toFixed(2)
|
).toFixed(2)
|
||||||
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
||||||
</td>
|
</td>
|
||||||
)}
|
)}
|
||||||
|
|
@ -2956,11 +2965,10 @@ const BSBillingTable3 = () => {
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index
|
index
|
||||||
}
|
}
|
||||||
className={`${
|
className={`${BookingType === 'Dine In' && item?.SalesId
|
||||||
BookingType === 'Dine In' && item?.SalesId
|
? 'BSBill-Table3-content-Disabled'
|
||||||
? 'BSBill-Table3-content-Disabled'
|
: 'BSBill-Table3-content'
|
||||||
: 'BSBill-Table3-content'
|
}
|
||||||
}
|
|
||||||
|
|
||||||
`}
|
`}
|
||||||
style={{
|
style={{
|
||||||
|
|
@ -2971,38 +2979,38 @@ const BSBillingTable3 = () => {
|
||||||
? BookingType === 'Dine In' && item?.SalesId
|
? BookingType === 'Dine In' && item?.SalesId
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: BookingType === 'Dine In' &&
|
: BookingType === 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataTakeAway?.length >= PreviousdataLength
|
tableDataTakeAway?.length >= PreviousdataLength
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: BookingType !== 'Dine In' &&
|
: BookingType !== 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
tableDataTakeAway?.length >= PreviousdataLength &&
|
tableDataTakeAway?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
!UnpaidData
|
!UnpaidData
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: (OldtableDataDinein?.length +
|
: (OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index) %
|
index) %
|
||||||
2 ===
|
2 ===
|
||||||
0
|
0
|
||||||
? 'white'
|
? 'white'
|
||||||
: SelectedBillColor?.['OverallBackgroundColor']
|
: SelectedBillColor?.['OverallBackgroundColor']
|
||||||
? SelectedBillColor?.['OverallBackgroundColor']
|
? SelectedBillColor?.['OverallBackgroundColor']
|
||||||
: '#d6d6d6'
|
: '#d6d6d6'
|
||||||
: (OldtableDataDinein?.length +
|
: (OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index) %
|
index) %
|
||||||
2 ===
|
2 ===
|
||||||
0
|
0
|
||||||
? 'white'
|
? 'white'
|
||||||
: SelectedBillColor?.['OverallBackgroundColor']
|
: SelectedBillColor?.['OverallBackgroundColor']
|
||||||
? SelectedBillColor?.['OverallBackgroundColor']
|
? SelectedBillColor?.['OverallBackgroundColor']
|
||||||
|
|
@ -3011,15 +3019,15 @@ const BSBillingTable3 = () => {
|
||||||
BookingType === 'Dine In' && item?.SalesId
|
BookingType === 'Dine In' && item?.SalesId
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: GlobEstBooking === 'ParEst' &&
|
: GlobEstBooking === 'ParEst' &&
|
||||||
GlobProdwisedata?.includes(
|
GlobProdwisedata?.includes(
|
||||||
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
||||||
)
|
)
|
||||||
? '#b2d1f7'
|
? '#b2d1f7'
|
||||||
: (OldtableDataDinein?.length +
|
: (OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index) %
|
index) %
|
||||||
2 ===
|
2 ===
|
||||||
0
|
0
|
||||||
? 'white'
|
? 'white'
|
||||||
: SelectedBillColor?.['OverallBackgroundColor']
|
: SelectedBillColor?.['OverallBackgroundColor']
|
||||||
? SelectedBillColor?.['OverallBackgroundColor']
|
? SelectedBillColor?.['OverallBackgroundColor']
|
||||||
|
|
@ -3028,9 +3036,9 @@ const BSBillingTable3 = () => {
|
||||||
BillOrderPre === 'Y' && !BookingTypeBoth
|
BillOrderPre === 'Y' && !BookingTypeBoth
|
||||||
? triggerAnimation &&
|
? triggerAnimation &&
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataTakeAway?.length >= PreviousdataLength &&
|
tableDataTakeAway?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
|
|
@ -3079,7 +3087,7 @@ const BSBillingTable3 = () => {
|
||||||
style={{ fontFamily: 'Poppins' }}
|
style={{ fontFamily: 'Poppins' }}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
item.FullProductIdentifierDtls?.length > 0 ||
|
item.FullProductIdentifierDtls?.length > 0 ||
|
||||||
item.ProductIdentifierDtls?.length > 0
|
item.ProductIdentifierDtls?.length > 0
|
||||||
? handleImeiDetails(item)
|
? handleImeiDetails(item)
|
||||||
: editField && handleEditQuantity(item, index)
|
: editField && handleEditQuantity(item, index)
|
||||||
}
|
}
|
||||||
|
|
@ -3133,21 +3141,21 @@ const BSBillingTable3 = () => {
|
||||||
{productBasedExtraCharges?.find(
|
{productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
) !== undefined && (
|
) !== undefined && (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
fontSize: '10px',
|
fontSize: '10px',
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Extra Charges :{' '}
|
Extra Charges :{' '}
|
||||||
{
|
{
|
||||||
productBasedExtraCharges?.find(
|
productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
)?.TotalAmt
|
)?.TotalAmt
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
@ -3241,8 +3249,8 @@ const BSBillingTable3 = () => {
|
||||||
>
|
>
|
||||||
{allowDecimal
|
{allowDecimal
|
||||||
? Number(
|
? Number(
|
||||||
item?.TotalAmt - (item?.Offer || 0) || 0
|
item?.TotalAmt - (item?.Offer || 0) || 0
|
||||||
).toFixed(2)
|
).toFixed(2)
|
||||||
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
||||||
</td>
|
</td>
|
||||||
)}
|
)}
|
||||||
|
|
@ -3282,11 +3290,10 @@ const BSBillingTable3 = () => {
|
||||||
tableDataTakeAway?.length +
|
tableDataTakeAway?.length +
|
||||||
index
|
index
|
||||||
}
|
}
|
||||||
className={`${
|
className={`${BookingType === 'Dine In' && item?.SalesId
|
||||||
BookingType === 'Dine In' && item?.SalesId
|
? 'BSBill-Table3-content-Disabled'
|
||||||
? 'BSBill-Table3-content-Disabled'
|
: 'BSBill-Table3-content'
|
||||||
: 'BSBill-Table3-content'
|
}
|
||||||
}
|
|
||||||
|
|
||||||
`}
|
`}
|
||||||
style={{
|
style={{
|
||||||
|
|
@ -3299,44 +3306,44 @@ const BSBillingTable3 = () => {
|
||||||
!BookingTypeBoth
|
!BookingTypeBoth
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: BookingType === 'Dine In' &&
|
: BookingType === 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
tableDataTakeAway?.length +
|
tableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataDinein?.length >= PreviousdataLength
|
tableDataDinein?.length >= PreviousdataLength
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: BookingType !== 'Dine In' &&
|
: BookingType !== 'Dine In' &&
|
||||||
triggerAnimation &&
|
triggerAnimation &&
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
tableDataTakeAway?.length +
|
tableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
tableDataDinein?.length >= PreviousdataLength &&
|
tableDataDinein?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
!UnpaidData
|
!UnpaidData
|
||||||
? 'wheat'
|
? 'wheat'
|
||||||
: 'inherit'
|
: 'inherit'
|
||||||
: 'none',
|
: 'none',
|
||||||
background:
|
background:
|
||||||
BookingType === 'Dine In' &&
|
BookingType === 'Dine In' &&
|
||||||
item?.SalesId &&
|
item?.SalesId &&
|
||||||
!BookingTypeBoth
|
!BookingTypeBoth
|
||||||
? 'rgb(243, 248, 213)'
|
? 'rgb(243, 248, 213)'
|
||||||
: GlobEstBooking === 'ParEst' &&
|
: GlobEstBooking === 'ParEst' &&
|
||||||
GlobProdwisedata?.includes(
|
GlobProdwisedata?.includes(
|
||||||
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
item?.InwardDtlId + ' ' + item?.BookingTypeName
|
||||||
)
|
)
|
||||||
? '#b2d1f7'
|
? '#b2d1f7'
|
||||||
: (OldtableDataTakeAway?.length +
|
: (OldtableDataTakeAway?.length +
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
tableDataTakeAway?.length +
|
tableDataTakeAway?.length +
|
||||||
index) %
|
index) %
|
||||||
2 ===
|
2 ===
|
||||||
0
|
0
|
||||||
? 'white'
|
? 'white'
|
||||||
: SelectedBillColor?.['OverallBackgroundColor']
|
: SelectedBillColor?.['OverallBackgroundColor']
|
||||||
? SelectedBillColor?.['OverallBackgroundColor']
|
? SelectedBillColor?.['OverallBackgroundColor']
|
||||||
|
|
@ -3345,10 +3352,10 @@ const BSBillingTable3 = () => {
|
||||||
BillOrderPre === 'Y' && !BookingTypeBoth
|
BillOrderPre === 'Y' && !BookingTypeBoth
|
||||||
? triggerAnimation &&
|
? triggerAnimation &&
|
||||||
OldtableDataTakeAway?.length +
|
OldtableDataTakeAway?.length +
|
||||||
OldtableDataDinein?.length +
|
OldtableDataDinein?.length +
|
||||||
tableDataTakeAway?.length +
|
tableDataTakeAway?.length +
|
||||||
index ===
|
index ===
|
||||||
0 &&
|
0 &&
|
||||||
!item?.SalesId &&
|
!item?.SalesId &&
|
||||||
tableDataDinein?.length >= PreviousdataLength &&
|
tableDataDinein?.length >= PreviousdataLength &&
|
||||||
!HoldOrderDtl &&
|
!HoldOrderDtl &&
|
||||||
|
|
@ -3444,21 +3451,21 @@ const BSBillingTable3 = () => {
|
||||||
{productBasedExtraCharges?.find(
|
{productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
) !== undefined && (
|
) !== undefined && (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
fontSize: '10px',
|
fontSize: '10px',
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Extra Charges :{' '}
|
Extra Charges :{' '}
|
||||||
{
|
{
|
||||||
productBasedExtraCharges?.find(
|
productBasedExtraCharges?.find(
|
||||||
(find) => find.ProdId === item.ProdId
|
(find) => find.ProdId === item.ProdId
|
||||||
)?.TotalAmt
|
)?.TotalAmt
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
@ -3551,8 +3558,8 @@ const BSBillingTable3 = () => {
|
||||||
>
|
>
|
||||||
{allowDecimal
|
{allowDecimal
|
||||||
? Number(
|
? Number(
|
||||||
item?.TotalAmt - (item?.Offer || 0) || 0
|
item?.TotalAmt - (item?.Offer || 0) || 0
|
||||||
).toFixed(2)
|
).toFixed(2)
|
||||||
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
: Number(item?.TotalAmt - (item?.Offer || 0) || 0)}
|
||||||
</td>
|
</td>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
|
|
@ -549,9 +549,9 @@ function BSCategoryHorizontal(props) {
|
||||||
AppId: AppId,
|
AppId: AppId,
|
||||||
...(AvailableDate && selectedDate
|
...(AvailableDate && selectedDate
|
||||||
? {
|
? {
|
||||||
fromDate: selectedDate?.[0],
|
fromDate: selectedDate?.[0],
|
||||||
toDate: selectedDate?.[1],
|
toDate: selectedDate?.[1],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -587,9 +587,9 @@ function BSCategoryHorizontal(props) {
|
||||||
AppId: AppId,
|
AppId: AppId,
|
||||||
...(AvailableDate && selectedDate
|
...(AvailableDate && selectedDate
|
||||||
? {
|
? {
|
||||||
fromDate: selectedDate?.[0],
|
fromDate: selectedDate?.[0],
|
||||||
toDate: selectedDate?.[1],
|
toDate: selectedDate?.[1],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
};
|
};
|
||||||
let res = await dispatch(getSelectedFavItems(data)).unwrap();
|
let res = await dispatch(getSelectedFavItems(data)).unwrap();
|
||||||
|
|
@ -679,7 +679,7 @@ function BSCategoryHorizontal(props) {
|
||||||
UomTypePreference?.some?.(
|
UomTypePreference?.some?.(
|
||||||
(e) =>
|
(e) =>
|
||||||
e?.PreferredSubCatName?.toLowerCase() ==
|
e?.PreferredSubCatName?.toLowerCase() ==
|
||||||
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -819,12 +819,15 @@ function BSCategoryHorizontal(props) {
|
||||||
postData['Size'] = values.Size;
|
postData['Size'] = values.Size;
|
||||||
postData['MRP'] = values.MRP;
|
postData['MRP'] = values.MRP;
|
||||||
postData['TaxId'] = values.TaxId;
|
postData['TaxId'] = values.TaxId;
|
||||||
|
postData['SinglePc'] = 'N';
|
||||||
if (EditState) {
|
if (EditState) {
|
||||||
const updatedData = {
|
const updatedData = {
|
||||||
...EditState,
|
...EditState,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
SellPrice: values.MRP,
|
SellPrice: values.MRP,
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
@ -838,6 +841,7 @@ function BSCategoryHorizontal(props) {
|
||||||
...othersdata,
|
...othersdata,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
||||||
|
|
@ -1073,9 +1077,9 @@ function BSCategoryHorizontal(props) {
|
||||||
backgroundColor:
|
backgroundColor:
|
||||||
!accessOther && accessToCard
|
!accessOther && accessToCard
|
||||||
? lightenColor(
|
? lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: accessToCard ? '1px solid' : undefined,
|
border: accessToCard ? '1px solid' : undefined,
|
||||||
|
|
@ -1086,9 +1090,9 @@ function BSCategoryHorizontal(props) {
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
: darkenColor(
|
: darkenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
70
|
70
|
||||||
)
|
)
|
||||||
: undefined,
|
: undefined,
|
||||||
}}
|
}}
|
||||||
className="sampleCard"
|
className="sampleCard"
|
||||||
|
|
@ -1122,9 +1126,9 @@ function BSCategoryHorizontal(props) {
|
||||||
backgroundColor:
|
backgroundColor:
|
||||||
!accessOther && !accessToCard && -2 == indexval
|
!accessOther && !accessToCard && -2 == indexval
|
||||||
? lightenColor(
|
? lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border:
|
border:
|
||||||
|
|
@ -1170,9 +1174,9 @@ function BSCategoryHorizontal(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1264,11 +1268,11 @@ function BSCategoryHorizontal(props) {
|
||||||
? index !== indexval
|
? index !== indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.[
|
SelectedCatgColor?.[
|
||||||
'BackgroundColor'
|
'BackgroundColor'
|
||||||
],
|
],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1276,18 +1280,18 @@ function BSCategoryHorizontal(props) {
|
||||||
index !== indexval
|
index !== indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#ffffff'
|
'#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.[
|
: SelectedCatgColor?.[
|
||||||
'BackgroundColor'
|
'BackgroundColor'
|
||||||
] === '#000000'
|
] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
: darkenColor(
|
: darkenColor(
|
||||||
SelectedCatgColor?.[
|
SelectedCatgColor?.[
|
||||||
'BackgroundColor'
|
'BackgroundColor'
|
||||||
],
|
],
|
||||||
70
|
70
|
||||||
),
|
),
|
||||||
userSelect: 'none',
|
userSelect: 'none',
|
||||||
minWidth: 'max-content', // set a width if needed
|
minWidth: 'max-content', // set a width if needed
|
||||||
}}
|
}}
|
||||||
|
|
@ -1342,16 +1346,16 @@ function BSCategoryHorizontal(props) {
|
||||||
backgroundColor:
|
backgroundColor:
|
||||||
!accessOther && accessToCard
|
!accessOther && accessToCard
|
||||||
? lightenColor(
|
? lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: accessToCard && '1px solid',
|
border: accessToCard && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessToCard &&
|
accessToCard &&
|
||||||
!accessOther &&
|
!accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
@ -1391,7 +1395,7 @@ function BSCategoryHorizontal(props) {
|
||||||
border: accessOther && '1px solid',
|
border: accessOther && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessOther &&
|
accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
@ -1942,7 +1946,7 @@ function BSCategoryHorizontal(props) {
|
||||||
? `${parts[0]}.${parts.slice(1).join('')}`
|
? `${parts[0]}.${parts.slice(1).join('')}`
|
||||||
: cleanedValue;
|
: cleanedValue;
|
||||||
}}
|
}}
|
||||||
// disabled={!!EditState}
|
// disabled={!!EditState}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -414,9 +414,9 @@ function BSCategoryVertical(props) {
|
||||||
AppId: AppId,
|
AppId: AppId,
|
||||||
...(AvailableDate && selectedDate
|
...(AvailableDate && selectedDate
|
||||||
? {
|
? {
|
||||||
fromDate: selectedDate?.[0],
|
fromDate: selectedDate?.[0],
|
||||||
toDate: selectedDate?.[1],
|
toDate: selectedDate?.[1],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
};
|
};
|
||||||
await dispatch(getSelectedFavItems(data1));
|
await dispatch(getSelectedFavItems(data1));
|
||||||
|
|
@ -445,9 +445,9 @@ function BSCategoryVertical(props) {
|
||||||
AppId: AppId,
|
AppId: AppId,
|
||||||
...(AvailableDate && selectedDate
|
...(AvailableDate && selectedDate
|
||||||
? {
|
? {
|
||||||
fromDate: selectedDate?.[0],
|
fromDate: selectedDate?.[0],
|
||||||
toDate: selectedDate?.[1],
|
toDate: selectedDate?.[1],
|
||||||
}
|
}
|
||||||
: {}),
|
: {}),
|
||||||
};
|
};
|
||||||
let res = await dispatch(getSelectedFavItems(data)).unwrap();
|
let res = await dispatch(getSelectedFavItems(data)).unwrap();
|
||||||
|
|
@ -534,7 +534,7 @@ function BSCategoryVertical(props) {
|
||||||
UomTypePreference?.some?.(
|
UomTypePreference?.some?.(
|
||||||
(e) =>
|
(e) =>
|
||||||
e?.PreferredSubCatName?.toLowerCase() ==
|
e?.PreferredSubCatName?.toLowerCase() ==
|
||||||
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -674,12 +674,14 @@ function BSCategoryVertical(props) {
|
||||||
postData['Size'] = values.Size;
|
postData['Size'] = values.Size;
|
||||||
postData['MRP'] = values.MRP;
|
postData['MRP'] = values.MRP;
|
||||||
postData['TaxId'] = values.TaxId;
|
postData['TaxId'] = values.TaxId;
|
||||||
|
postData['SinglePc'] = 'N';
|
||||||
if (EditState) {
|
if (EditState) {
|
||||||
const updatedData = {
|
const updatedData = {
|
||||||
...EditState,
|
...EditState,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
SellPrice: values.MRP,
|
SellPrice: values.MRP,
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
setEditState();
|
setEditState();
|
||||||
|
|
@ -692,6 +694,7 @@ function BSCategoryVertical(props) {
|
||||||
...othersdata,
|
...othersdata,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
||||||
|
|
@ -1198,7 +1201,7 @@ function BSCategoryVertical(props) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
isOnChange={EditState ? true : false}
|
isOnChange={EditState ? true : false}
|
||||||
// disabled={!!EditState}
|
// disabled={!!EditState}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1300,8 +1303,8 @@ function BSCategoryVertical(props) {
|
||||||
border: accessToCard && '1px solid',
|
border: accessToCard && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessToCard &&
|
accessToCard &&
|
||||||
!accessOther &&
|
!accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
@ -1383,9 +1386,9 @@ function BSCategoryVertical(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1471,9 +1474,9 @@ function BSCategoryVertical(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1481,15 +1484,15 @@ function BSCategoryVertical(props) {
|
||||||
index != indexval
|
index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#ffffff'
|
'#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#000000'
|
'#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
: darkenColor(
|
: darkenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
70
|
70
|
||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
className="sampleCard"
|
className="sampleCard"
|
||||||
onClick={(e) => handleClick(e, item.ProdCat, index)}
|
onClick={(e) => handleClick(e, item.ProdCat, index)}
|
||||||
|
|
@ -1547,8 +1550,8 @@ function BSCategoryVertical(props) {
|
||||||
border: accessToCard && '1px solid',
|
border: accessToCard && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessToCard &&
|
accessToCard &&
|
||||||
!accessOther &&
|
!accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
@ -1591,7 +1594,7 @@ function BSCategoryVertical(props) {
|
||||||
border: accessOther && '1px solid',
|
border: accessOther && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessOther &&
|
accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
|
||||||
|
|
@ -542,7 +542,7 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
UomTypePreference?.some?.(
|
UomTypePreference?.some?.(
|
||||||
(e) =>
|
(e) =>
|
||||||
e?.PreferredSubCatName?.toLowerCase() ==
|
e?.PreferredSubCatName?.toLowerCase() ==
|
||||||
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -684,12 +684,14 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
postData['Size'] = values.Size;
|
postData['Size'] = values.Size;
|
||||||
postData['MRP'] = values.MRP;
|
postData['MRP'] = values.MRP;
|
||||||
postData['TaxId'] = values.TaxId;
|
postData['TaxId'] = values.TaxId;
|
||||||
|
postData['SinglePc'] = 'N';
|
||||||
if (EditState) {
|
if (EditState) {
|
||||||
const updatedData = {
|
const updatedData = {
|
||||||
...EditState,
|
...EditState,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
SellPrice: values.MRP,
|
SellPrice: values.MRP,
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
|
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
@ -703,6 +705,7 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
...othersdata,
|
...othersdata,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
||||||
|
|
@ -1277,7 +1280,7 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
? `${parts[0]}.${parts.slice(1).join('')}`
|
? `${parts[0]}.${parts.slice(1).join('')}`
|
||||||
: cleanedValue;
|
: cleanedValue;
|
||||||
}}
|
}}
|
||||||
// disabled={!!EditState}
|
// disabled={!!EditState}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1415,9 +1418,9 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1507,9 +1510,9 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
? index !== indexval
|
? index !== indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1517,17 +1520,17 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
index !== indexval
|
index !== indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#ffffff'
|
'#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#000000'
|
'#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
: darkenColor(
|
: darkenColor(
|
||||||
SelectedCatgColor?.[
|
SelectedCatgColor?.[
|
||||||
'BackgroundColor'
|
'BackgroundColor'
|
||||||
],
|
],
|
||||||
70
|
70
|
||||||
),
|
),
|
||||||
userSelect: 'none',
|
userSelect: 'none',
|
||||||
minWidth: 'max-content', // set a width if needed
|
minWidth: 'max-content', // set a width if needed
|
||||||
}}
|
}}
|
||||||
|
|
@ -1586,8 +1589,8 @@ function BSOtherServicesHorizontalcat(props) {
|
||||||
border: accessToCard && '1px solid',
|
border: accessToCard && '1px solid',
|
||||||
borderColor:
|
borderColor:
|
||||||
accessToCard &&
|
accessToCard &&
|
||||||
!accessOther &&
|
!accessOther &&
|
||||||
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
SelectedCatgColor?.['BackgroundColor'] == '#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
: SelectedCatgColor?.['BackgroundColor'] === '#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
|
|
|
||||||
|
|
@ -445,7 +445,7 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
UomTypePreference?.some?.(
|
UomTypePreference?.some?.(
|
||||||
(e) =>
|
(e) =>
|
||||||
e?.PreferredSubCatName?.toLowerCase() ==
|
e?.PreferredSubCatName?.toLowerCase() ==
|
||||||
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
item?.ConfigName?.toLowerCase() && e?.PreferredStatus == 'Y'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -585,12 +585,14 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
postData['Size'] = values.Size;
|
postData['Size'] = values.Size;
|
||||||
postData['MRP'] = values.MRP;
|
postData['MRP'] = values.MRP;
|
||||||
postData['TaxId'] = values.TaxId;
|
postData['TaxId'] = values.TaxId;
|
||||||
|
postData['SinglePc'] = 'N';
|
||||||
if (EditState) {
|
if (EditState) {
|
||||||
const updatedData = {
|
const updatedData = {
|
||||||
...EditState,
|
...EditState,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
SellPrice: values.MRP,
|
SellPrice: values.MRP,
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
setEditState();
|
setEditState();
|
||||||
|
|
@ -603,6 +605,7 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
...othersdata,
|
...othersdata,
|
||||||
Quantity: parseInt(values.Quantity),
|
Quantity: parseInt(values.Quantity),
|
||||||
OtherProduct: 'Others',
|
OtherProduct: 'Others',
|
||||||
|
SinglePc: 'N',
|
||||||
};
|
};
|
||||||
dispatch(changeothersdata(updatedData));
|
dispatch(changeothersdata(updatedData));
|
||||||
|
|
||||||
|
|
@ -1123,7 +1126,7 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
isOnChange={EditState ? true : false}
|
isOnChange={EditState ? true : false}
|
||||||
// disabled={!!EditState}
|
// disabled={!!EditState}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1231,9 +1234,9 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1319,9 +1322,9 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
? index != indexval
|
? index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: lightenColor(
|
: lightenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
0.4
|
0.4
|
||||||
)
|
)
|
||||||
: SelectedCatgColor?.['BackgroundColor'],
|
: SelectedCatgColor?.['BackgroundColor'],
|
||||||
padding: padding,
|
padding: padding,
|
||||||
border: '1px solid',
|
border: '1px solid',
|
||||||
|
|
@ -1329,15 +1332,15 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
index != indexval
|
index != indexval
|
||||||
? SelectedCatgColor?.['BackgroundColor']
|
? SelectedCatgColor?.['BackgroundColor']
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#ffffff'
|
'#ffffff'
|
||||||
? '#000000'
|
? '#000000'
|
||||||
: SelectedCatgColor?.['BackgroundColor'] ===
|
: SelectedCatgColor?.['BackgroundColor'] ===
|
||||||
'#000000'
|
'#000000'
|
||||||
? '#ffffff'
|
? '#ffffff'
|
||||||
: darkenColor(
|
: darkenColor(
|
||||||
SelectedCatgColor?.['BackgroundColor'],
|
SelectedCatgColor?.['BackgroundColor'],
|
||||||
70
|
70
|
||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
className="sampleCard"
|
className="sampleCard"
|
||||||
onClick={(e) => handleClick(e, item.ProdCat, index)}
|
onClick={(e) => handleClick(e, item.ProdCat, index)}
|
||||||
|
|
@ -1383,7 +1386,7 @@ function BSOtherServicesVerticalcat(props) {
|
||||||
</DragDropContext>
|
</DragDropContext>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1296,6 +1296,7 @@ const BSItemCard = (props) => {
|
||||||
OtherProduct: otherscarddata?.OtherProduct,
|
OtherProduct: otherscarddata?.OtherProduct,
|
||||||
// 'ProdVariantName': otherscarddata?.ProdVariantName,
|
// 'ProdVariantName': otherscarddata?.ProdVariantName,
|
||||||
BookingTypeName: BookingType,
|
BookingTypeName: BookingType,
|
||||||
|
SinglePc: otherscarddata?.SinglePc,
|
||||||
CounterName: '', //sri
|
CounterName: '', //sri
|
||||||
};
|
};
|
||||||
AddOrderDetails(data);
|
AddOrderDetails(data);
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue