Uom Issue Solving

This commit is contained in:
karthikalakshmi 2026-03-02 10:53:27 +05:30
parent decc8e2424
commit 67d840a88b
2 changed files with 36 additions and 28 deletions

View File

@ -153,8 +153,8 @@ import {
getAddCustomerDetails,
getDefaultPaymentOptions,
GlobalAddCustomerDetails,
ReprintDetails,
triggerCustomerRefresh,
VerifiedPaymentDtl
} from '../../../../Features/BookingScreen/Customer/addCustomer';
import PozoHoldIcon from '../UtillComponents/Pozo retail icons/PozoHoldIcon';
import PozoDineInIcon from '../UtillComponents/Pozo retail icons/PozoDineIn.jsx';
@ -647,7 +647,7 @@ const BSC1Payment = (props) => {
OrderId: businessUPIOrderId,
};
const res = await dispatch(ReprintDetails(data)).unwrap();
const res = await dispatch(VerifiedPaymentDtl(data)).unwrap();
if (res?.data?.statusCode === 1 && res?.data?.data?.length > 0) {
const orderData = [{ OrderDetails: res.data.data }];

View File

@ -1,5 +1,5 @@
.body {
font-family: "Poppins", sans-serif;
font-family: 'Poppins', sans-serif;
}
.BSBilling3PayMaster {
@ -10,11 +10,15 @@
padding: 0.3rem 0.3rem;
border-top: 1px solid #b5b5b5;
gap: 4px;
@media (max-width: 768px) {
flex-direction: column;
width: 100% !important;
padding: 0 12px;
}
}
.BSBill-Table3 {
width: 100%;
border-spacing: 0 0px;
text-align: center;
}
@ -34,7 +38,7 @@
.BSBill-Table3-content {
background-color: rgba(235, 235, 236, 1);
font-family: "Poppins", sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: bold;
@ -62,6 +66,11 @@
top: 35px !important;
height: 100px;
}
@media (max-width: 768px) {
flex-direction: row !important;
flex-wrap: wrap;
justify-content: center;
}
}
.BSBilling3-customer-subdiv {
@ -163,6 +172,9 @@
align-items: center;
justify-content: space-around;
flex-direction: row;
@media (max-width: 768px) {
display: none !important;
}
}
.Dinein-order-btn {
@ -189,7 +201,7 @@
}
.Table3-rate {
font-family: "Gilroy-SemiBold";
font-family: 'Gilroy-SemiBold';
font-size: 30px;
font-weight: 600;
line-height: 50px;
@ -198,7 +210,7 @@
.BSBill3-items {
color: var(--SELECTED_COLOR);
text-align: right;
font-family: "Gilroy-SemiBold";
font-family: 'Gilroy-SemiBold';
font-size: 20px;
font-style: normal;
font-weight: bold;
@ -250,7 +262,7 @@
.Table3-items {
text-align: center;
font-size: 14px;
font-family: "Gilroy-Medium";
font-family: 'Gilroy-Medium';
align-items: right;
text-align: left;
font-weight: 500;
@ -258,7 +270,7 @@
.Table3-item-price {
text-align: center;
font-family: "Gilroy-Medium";
font-family: 'Gilroy-Medium';
font-size: 14px;
text-align: right;
padding-right: 8px;
@ -267,7 +279,7 @@
.BSBill-item-extraprice {
color: var(--SELECTED_COLOR);
font-family: "Gilroy-SemiBold";
font-family: 'Gilroy-SemiBold';
font-size: 20px;
font-style: normal;
}
@ -289,7 +301,7 @@
text-align: right;
font-weight: 600;
font-size: 18px;
font-family: "Poppins";
font-family: 'Poppins';
}
.BSC1-Master .BSBilling3-tablediv {
@ -493,7 +505,7 @@
.BSBill-Table3-content-Disabled {
pointer-events: none;
background-color: rgb(243, 248, 213);
font-family: "Poppins", sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: bold;
@ -640,7 +652,7 @@
text-align: center;
font-weight: 600;
font-size: 14px;
font-family: "Gilroy";
font-family: 'Gilroy';
padding: 0rem 1rem;
display: inline-block;
padding: 2px;
@ -660,7 +672,7 @@
display: flex;
flex-direction: column;
max-height: 150px;
font-family: "Gilroy";
font-family: 'Gilroy';
overflow-y: auto;
}
@ -752,10 +764,6 @@
border-spacing: 0;
}
.Table3-Price-summarypopT3 {
display: none;
}
.BS3hold-sum {
justify-content: space-between !important;
width: 100% !important;
@ -771,9 +779,6 @@
display: none;
}
.Table3-vertical-line {
display: none;
}
.Table3-Price-div-table {
display: block;
width: 100%;
@ -837,11 +842,6 @@
left: 0;
}
.BSBilling3-customer {
flex-direction: row !important;
flex-wrap: wrap;
}
.BS3hold-sum {
justify-content: space-between !important;
width: 100% !important;
@ -868,7 +868,7 @@
.CustMob-Name {
display: flex;
flex-wrap: wrap;
flex-direction: "row";
flex-direction: 'row';
column-gap: 2rem;
}
@ -1031,3 +1031,11 @@
color: #fff9c4;
}
}
@media (max-width: 768px) {
.Table3-Price-summarypopT3 {
display: none;
}
.Table3-vertical-line {
display: none;
}
}