Merge pull request 'Design isued fix in all modal' (#180) from OptimUpdate into main
Reviewed-on: Pozomind/pozo-retail-app#180
This commit is contained in:
commit
d24945f7bd
|
|
@ -16,6 +16,8 @@ import { TiDelete } from 'react-icons/ti';
|
||||||
import BSBillingEbill from '../BSBillingEwayBill/BSBillingEbill';
|
import BSBillingEbill from '../BSBillingEwayBill/BSBillingEbill';
|
||||||
import Search from '../../../../../Components/Forms/Search';
|
import Search from '../../../../../Components/Forms/Search';
|
||||||
import { IoEye } from 'react-icons/io5';
|
import { IoEye } from 'react-icons/io5';
|
||||||
|
// src\Styles\BookingScreen\Components\UtillComponents\BSNavBarComponents.scss
|
||||||
|
import "../../../../../Styles/BookingScreen/Components/UtillComponents/BSNavBarComponents.scss"
|
||||||
const { RangePicker } = DatePicker;
|
const { RangePicker } = DatePicker;
|
||||||
|
|
||||||
const ListOfSalesInvoices = (props) => {
|
const ListOfSalesInvoices = (props) => {
|
||||||
|
|
@ -422,16 +424,6 @@ const ListOfSalesInvoices = (props) => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* <Button
|
|
||||||
className="BSC1Payment-HoldModel-cancleall"
|
|
||||||
type="primary"
|
|
||||||
danger
|
|
||||||
onClick={removeAll}
|
|
||||||
// onClick={() => statusFormatter(record,index)}
|
|
||||||
|
|
||||||
>
|
|
||||||
Clear All
|
|
||||||
</Button> */}
|
|
||||||
|
|
||||||
<div className="BSC1Payment-Tablediv">
|
<div className="BSC1Payment-Tablediv">
|
||||||
<Tables
|
<Tables
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ import { TbAlertTriangleFilled } from 'react-icons/tb';
|
||||||
import { IoEye } from 'react-icons/io5';
|
import { IoEye } from 'react-icons/io5';
|
||||||
import { DefaultModal } from '../../../../Components/Modal/DefaultModal';
|
import { DefaultModal } from '../../../../Components/Modal/DefaultModal';
|
||||||
import { Tables } from '../../../../Components/Tables/Table';
|
import { Tables } from '../../../../Components/Tables/Table';
|
||||||
|
import '../../../../Styles/OverAllStyle/OverAllStyle.scss';
|
||||||
|
|
||||||
const NoDataComponent = () => (
|
const NoDataComponent = () => (
|
||||||
<div style={{ textAlign: 'center', padding: 20 }}>
|
<div style={{ textAlign: 'center', padding: 20 }}>
|
||||||
|
|
@ -232,12 +233,12 @@ const BSExpireProductsList = () => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const lowStockIwordCulumn = [
|
const lowStockIwordCulumn = [
|
||||||
{
|
{
|
||||||
title: 'Stock Date',
|
title: 'Stock Date',
|
||||||
dataIndex: 'InwardDate',
|
dataIndex: 'InwardDate',
|
||||||
key: 'InwardDate',
|
key: 'InwardDate',
|
||||||
render: (d) => (d ? ExtractDateFormate(d) : '-'),
|
render: (d) => (d ? ExtractDateFormate(d) : '-'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Balance Qty',
|
title: 'Balance Qty',
|
||||||
align: 'right',
|
align: 'right',
|
||||||
|
|
@ -301,10 +302,12 @@ const BSExpireProductsList = () => {
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
(expiredList?.length > 0 || lowStockList?.length > 0) && (
|
(expiredList?.length > 0 || lowStockList?.length > 0) && (
|
||||||
<span style={{ position: 'relative', display: 'inline-block' }} onClick={onClickExpiredIcon}>
|
<span
|
||||||
|
style={{ position: 'relative', display: 'inline-block' }}
|
||||||
|
onClick={onClickExpiredIcon}
|
||||||
|
>
|
||||||
<AiFillAlert
|
<AiFillAlert
|
||||||
className="alert-badge stock-alert-animation"
|
className="alert-badge stock-alert-animation"
|
||||||
|
|
||||||
style={{ fontSize: 23, cursor: 'pointer', color: '#ff4d4f' }}
|
style={{ fontSize: 23, cursor: 'pointer', color: '#ff4d4f' }}
|
||||||
/>
|
/>
|
||||||
{
|
{
|
||||||
|
|
@ -332,7 +335,7 @@ const BSExpireProductsList = () => {
|
||||||
</span>
|
</span>
|
||||||
)
|
)
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Modal
|
<Modal
|
||||||
title="Low Stock / Expire Alerts"
|
title="Low Stock / Expire Alerts"
|
||||||
open={expireModelOpen}
|
open={expireModelOpen}
|
||||||
|
|
@ -341,6 +344,7 @@ const BSExpireProductsList = () => {
|
||||||
footer={null} // You can enable this if you want default buttons
|
footer={null} // You can enable this if you want default buttons
|
||||||
width={700}
|
width={700}
|
||||||
centered
|
centered
|
||||||
|
className="LowStockAlterModal"
|
||||||
>
|
>
|
||||||
<Messages
|
<Messages
|
||||||
messageType={message.type}
|
messageType={message.type}
|
||||||
|
|
@ -377,6 +381,7 @@ const BSExpireProductsList = () => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Table
|
<Table
|
||||||
|
className='LowStockAlterModalTable'
|
||||||
rowKey="InwardDtlId"
|
rowKey="InwardDtlId"
|
||||||
columns={
|
columns={
|
||||||
selectedSegment === 'expired' ? expiredColumns : lowStockColumns
|
selectedSegment === 'expired' ? expiredColumns : lowStockColumns
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ import { capitalizeFirstLetter } from '../../../../utils/calculations.js';
|
||||||
const BSNavBarDragItems = ({
|
const BSNavBarDragItems = ({
|
||||||
type,
|
type,
|
||||||
drawerOpen = false,
|
drawerOpen = false,
|
||||||
setDrawerOpen = () => { },
|
setDrawerOpen = () => {},
|
||||||
}) => {
|
}) => {
|
||||||
const draggingComponent = useSelector(GlobaldraggingComponent);
|
const draggingComponent = useSelector(GlobaldraggingComponent);
|
||||||
const GlobalisFavClickedCheck = useSelector(GlobalisFavClicked);
|
const GlobalisFavClickedCheck = useSelector(GlobalisFavClicked);
|
||||||
|
|
@ -73,27 +73,27 @@ const BSNavBarDragItems = ({
|
||||||
BranchId: BranchId,
|
BranchId: BranchId,
|
||||||
...(draggingComponent == 'sub-category'
|
...(draggingComponent == 'sub-category'
|
||||||
? {
|
? {
|
||||||
ProdCat: MapData?.[0]?.ProdCat,
|
ProdCat: MapData?.[0]?.ProdCat,
|
||||||
ProductSubCatDtl: MapData.map((item, index) => ({
|
ProductSubCatDtl: MapData.map((item, index) => ({
|
||||||
ProdSubCat: item?.ProdSubCat,
|
ProdSubCat: item?.ProdSubCat,
|
||||||
DisplayProdSubCatNo: index + 1,
|
DisplayProdSubCatNo: index + 1,
|
||||||
})),
|
|
||||||
}
|
|
||||||
: draggingComponent == 'category'
|
|
||||||
? {
|
|
||||||
ProductCatDtl: MapData.map((item, index) => ({
|
|
||||||
ProdCat: item?.ProdCat,
|
|
||||||
DisplayProdCatNo: index + 1,
|
|
||||||
})),
|
})),
|
||||||
}
|
}
|
||||||
|
: draggingComponent == 'category'
|
||||||
|
? {
|
||||||
|
ProductCatDtl: MapData.map((item, index) => ({
|
||||||
|
ProdCat: item?.ProdCat,
|
||||||
|
DisplayProdCatNo: index + 1,
|
||||||
|
})),
|
||||||
|
}
|
||||||
: {
|
: {
|
||||||
ProdCat: MapData?.[0]?.ProdCat || null,
|
ProdCat: MapData?.[0]?.ProdCat || null,
|
||||||
ProdSubCat: MapData?.[0]?.ProdSubCat || null,
|
ProdSubCat: MapData?.[0]?.ProdSubCat || null,
|
||||||
ProductDtl: MapData.map((item, index) => ({
|
ProductDtl: MapData.map((item, index) => ({
|
||||||
ProdId: item?.ProdId,
|
ProdId: item?.ProdId,
|
||||||
DisplayProductNo: index + 1,
|
DisplayProductNo: index + 1,
|
||||||
})),
|
})),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
UpdatedBy: UserId,
|
UpdatedBy: UserId,
|
||||||
};
|
};
|
||||||
|
|
@ -190,7 +190,15 @@ const BSNavBarDragItems = ({
|
||||||
{Isdragging && favopen && (
|
{Isdragging && favopen && (
|
||||||
<div className="AddFavList addfavlist-master">
|
<div className="AddFavList addfavlist-master">
|
||||||
<div className="AddFavList-subContainer">
|
<div className="AddFavList-subContainer">
|
||||||
<div style={{ display: 'flex', alignItems: 'center', gap: '5px' }}>
|
<div
|
||||||
|
style={{
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
gap: '5px',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
width: '100%',
|
||||||
|
}}
|
||||||
|
>
|
||||||
<div className="DragChooseBTNs">
|
<div className="DragChooseBTNs">
|
||||||
{PurProductdata.map((item) => (
|
{PurProductdata.map((item) => (
|
||||||
<button
|
<button
|
||||||
|
|
@ -280,46 +288,46 @@ const BSNavBarDragItems = ({
|
||||||
(!GlobalisFavClickedCheck &&
|
(!GlobalisFavClickedCheck &&
|
||||||
draggingComponent !== 'card' &&
|
draggingComponent !== 'card' &&
|
||||||
draggingComponent !== 'sub-category'))) ||
|
draggingComponent !== 'sub-category'))) ||
|
||||||
(!GlobalisFavClickedCheck &&
|
(!GlobalisFavClickedCheck &&
|
||||||
draggingComponent !== 'card' &&
|
draggingComponent !== 'card' &&
|
||||||
draggingComponent == 'sub-category') ||
|
draggingComponent == 'sub-category') ||
|
||||||
(!GlobalisFavClickedCheck &&
|
(!GlobalisFavClickedCheck &&
|
||||||
draggingComponent == 'card' &&
|
draggingComponent == 'card' &&
|
||||||
draggingComponent !== 'sub-category')
|
draggingComponent !== 'sub-category')
|
||||||
? MapData?.map((item, index) => (
|
? MapData?.map((item, index) => (
|
||||||
<Draggable
|
<Draggable
|
||||||
key={index}
|
key={index}
|
||||||
draggableId={index.toString()}
|
draggableId={index.toString()}
|
||||||
index={index}
|
index={index}
|
||||||
>
|
>
|
||||||
{(provided, snapshot) => (
|
{(provided, snapshot) => (
|
||||||
<div
|
<div
|
||||||
className="AddFavItemList4"
|
className="AddFavItemList4"
|
||||||
ref={provided.innerRef}
|
ref={provided.innerRef}
|
||||||
{...provided.draggableProps}
|
{...provided.draggableProps}
|
||||||
{...provided.dragHandleProps}
|
{...provided.dragHandleProps}
|
||||||
style={{
|
style={{
|
||||||
...provided.draggableProps.style,
|
...provided.draggableProps.style,
|
||||||
margin: 0,
|
margin: 0,
|
||||||
padding: '8px 12px',
|
padding: '8px 12px',
|
||||||
background: snapshot.isDragging
|
background: snapshot.isDragging
|
||||||
? '#e0f7fa'
|
? '#e0f7fa'
|
||||||
: '#fff',
|
: '#fff',
|
||||||
border: '1px solid #ccc',
|
border: '1px solid #ccc',
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
{draggingComponent == 'category'
|
{draggingComponent == 'category'
|
||||||
? item?.ProdCatName
|
? item?.ProdCatName
|
||||||
: draggingComponent == 'sub-category'
|
: draggingComponent == 'sub-category'
|
||||||
? item?.ProdSubCatName
|
? item?.ProdSubCatName
|
||||||
: item?.ProdName}
|
: item?.ProdName}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</Draggable>
|
</Draggable>
|
||||||
))
|
))
|
||||||
: 'No Data Found'}
|
: 'No Data Found'}
|
||||||
{provided.placeholder}
|
{provided.placeholder}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -285,7 +285,7 @@ const BSPrinterSetting = ({
|
||||||
onClick={openPrinter}
|
onClick={openPrinter}
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
className={`printer-button ${showPrinter ? 'active' : ''}`}
|
className={`printer-button ${showPrinter ? 'active' : ''}`}
|
||||||
>
|
>
|
||||||
<LuPrinter
|
<LuPrinter
|
||||||
size={20}
|
size={20}
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ import { useDispatch } from 'react-redux';
|
||||||
import { PutStockPrice } from '../../../../Features/StockPriceUpdate/StockPriceUpdateMaster';
|
import { PutStockPrice } from '../../../../Features/StockPriceUpdate/StockPriceUpdateMaster';
|
||||||
import PriceChange from '../../../../Images/PayOptImgs/PriceChange.svg';
|
import PriceChange from '../../../../Images/PayOptImgs/PriceChange.svg';
|
||||||
import { v4 as uuidv4 } from 'uuid';
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
// src\Styles\BookingScreen\Template\BSLayout2\BSLayout2.scss
|
|
||||||
import '../../../../Styles/BookingScreen/Template/BSLayout2/BSLayout2.scss';
|
import '../../../../Styles/BookingScreen/Template/BSLayout2/BSLayout2.scss';
|
||||||
|
import '../../../../Styles/OverAllStyle/OverAllStyle.scss';
|
||||||
|
|
||||||
const ProductPriceChange = ({
|
const ProductPriceChange = ({
|
||||||
showButton = true,
|
showButton = true,
|
||||||
|
|
|
||||||
|
|
@ -318,8 +318,7 @@ const BSLayout1 = () => {
|
||||||
};
|
};
|
||||||
const handleInvoiceClose = () => {
|
const handleInvoiceClose = () => {
|
||||||
setListOfInvoices(false);
|
setListOfInvoices(false);
|
||||||
};
|
};
|
||||||
// BSLayout1Data?.BookingNavbar?.[1]?.some((item) => item?.OptionName === "AddCustomer")
|
|
||||||
return (
|
return (
|
||||||
<Suspense fallback={<CardSkeleton />}>
|
<Suspense fallback={<CardSkeleton />}>
|
||||||
{' '}
|
{' '}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -743,7 +743,7 @@ const CounterCategoryMappingForm = () => {
|
||||||
</Form> */}
|
</Form> */}
|
||||||
|
|
||||||
{CounterDetail?.length > 0 && (
|
{CounterDetail?.length > 0 && (
|
||||||
<div style={{ height: '400px', overflowY: 'scroll' }}>
|
<div style={{ height: '400px', overflowY: 'scroll',scrollbarWidth:"thin" }}>
|
||||||
<Table
|
<Table
|
||||||
dataSource={CounterDetail}
|
dataSource={CounterDetail}
|
||||||
columns={TableColumns}
|
columns={TableColumns}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
// background-color: #f3f4f6;
|
// background-color: #f3f4f6;
|
||||||
// padding: 1.5rem;
|
// padding: 1.5rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-family: 'Poppins', sans-serif !important;
|
font-family: "Poppins", sans-serif !important;
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
height: 88vh;
|
height: 88vh;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
@ -11,12 +11,10 @@
|
||||||
background: #fff !important;
|
background: #fff !important;
|
||||||
// padding-right: 1rem;
|
// padding-right: 1rem;
|
||||||
|
|
||||||
|
|
||||||
.header-title {
|
.header-title {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding: 0.1rem 0;
|
padding: 0.1rem 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-date-picker {
|
.header-date-picker {
|
||||||
|
|
@ -59,7 +57,6 @@
|
||||||
color: #1d4ed8;
|
color: #1d4ed8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.header-actions {
|
.header-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
|
|
@ -88,7 +85,6 @@
|
||||||
// justify-content: space-between;
|
// justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.metric-controls {
|
.metric-controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
|
|
@ -99,20 +95,19 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
|
||||||
>div:nth-child(1) {
|
> div:nth-child(1) {
|
||||||
border-radius: 6px 0 0 6px;
|
border-radius: 6px 0 0 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>div:nth-child(2) {
|
> div:nth-child(2) {
|
||||||
border-radius: 0 6px 6px 0;
|
border-radius: 0 6px 6px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bar-pie-switch {
|
.bar-pie-switch {
|
||||||
|
|
||||||
.ant-switch-inner-checked,
|
.ant-switch-inner-checked,
|
||||||
.ant-switch-inner-unchecked {
|
.ant-switch-inner-unchecked {
|
||||||
font-family: 'Poppins';
|
font-family: "Poppins";
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -126,7 +121,6 @@
|
||||||
background-color: #52c41a !important;
|
background-color: #52c41a !important;
|
||||||
background: #52c41a !important;
|
background: #52c41a !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-chart-type {
|
.btn-chart-type {
|
||||||
|
|
@ -196,7 +190,6 @@
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.stat-card1 {
|
.stat-card1 {
|
||||||
|
|
@ -472,7 +465,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
outline: none !important;
|
outline: none !important;
|
||||||
|
|
||||||
|
|
||||||
.chart-data-item {
|
.chart-data-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -497,8 +489,6 @@
|
||||||
// >div:nth-child(2) {
|
// >div:nth-child(2) {
|
||||||
// width: 5%;
|
// width: 5%;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -525,11 +515,11 @@
|
||||||
.chart-data {
|
.chart-data {
|
||||||
width: 60%;
|
width: 60%;
|
||||||
|
|
||||||
@media (max-width:768px) {
|
@media (max-width: 768px) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:1000px) {
|
@media (max-width: 1000px) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -548,7 +538,7 @@
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
|
|
||||||
>div:nth-child(1) {
|
> div:nth-child(1) {
|
||||||
width: 25%;
|
width: 25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -558,7 +548,6 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.axis-label-wrapper {
|
.axis-label-wrapper {
|
||||||
|
|
@ -582,7 +571,7 @@
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>div:nth-child(3) {
|
> div:nth-child(3) {
|
||||||
width: 10%;
|
width: 10%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -629,7 +618,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -4px;
|
bottom: -4px;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
|
@ -750,17 +739,18 @@
|
||||||
|
|
||||||
.pie-legend {
|
.pie-legend {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
max-width: 100%;
|
width: 100%;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:990px) {
|
@media (max-width: 990px) {
|
||||||
.wrapaanaClass {
|
.wrapaanaClass {
|
||||||
justify-content: center !important;
|
justify-content: center !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:932px) {
|
@media (max-width: 932px) {
|
||||||
.date-wrapper-class {
|
.date-wrapper-class {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: center !important;
|
justify-content: center !important;
|
||||||
|
|
@ -773,4 +763,4 @@
|
||||||
.ant-select-arrow {
|
.ant-select-arrow {
|
||||||
top: 70%;
|
top: 70%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -228,16 +228,13 @@
|
||||||
background-color: #e9e8e8 !important;
|
background-color: #e9e8e8 !important;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
//dhana
|
|
||||||
// height: clamp(30vh, 50vh, 95vh);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// writed by sree
|
|
||||||
.ItemWiseReport-table1 {
|
.ItemWiseReport-table1 {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
height: clamp(40vh, 30vh, 95vh);
|
height: clamp(40vh, 30vh, 95vh);
|
||||||
width: 79vw !important;
|
width: 79vw !important;
|
||||||
|
scrollbar-width: thin;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ItemWiseReport-table .ant-table-thead tr .ant-table-cell {
|
.ItemWiseReport-table .ant-table-thead tr .ant-table-cell {
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,15 @@
|
||||||
.BsnavbarSearchMain {
|
.BsnavbarSearchMain {
|
||||||
width: 25vw;
|
width: 25vw;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
.BarCodeScanMaster {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
padding: 0 !important;
|
||||||
|
top: 30%;
|
||||||
|
svg {
|
||||||
|
font-size: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.searchDiv .ant-input {
|
.searchDiv .ant-input {
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
|
|
|
||||||
|
|
@ -296,7 +296,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.BSC1Payment-Tablediv .ant-table-wrapper .ant-table-thead > tr > th {
|
.BSC1Payment-Tablediv .ant-table-wrapper .ant-table-thead > tr > th {
|
||||||
color: black !important;
|
color: rgb(255, 255, 255) !important;
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
@ -325,9 +325,7 @@
|
||||||
box-shadow: unset !important;
|
box-shadow: unset !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ant-select:not(.ant-select-customize-input)
|
.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
|
||||||
.ant-select-selector
|
|
||||||
.ant-select-selection-search-input {
|
|
||||||
bottom: 14px;
|
bottom: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,7 @@ body {
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
gap: 4px;
|
gap: 4px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -469,3 +469,15 @@ body {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background-color: rgb(240, 240, 240);
|
background-color: rgb(240, 240, 240);
|
||||||
}
|
}
|
||||||
|
.SCTableInPageSales {
|
||||||
|
th {
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 12px !important;
|
||||||
|
letter-spacing: 0.1px;
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
font-weight: 500 !important;
|
||||||
|
font-family: "Poppins" !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -851,6 +851,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.price-change-table {
|
.price-change-table {
|
||||||
|
.ant-table-thead tr {
|
||||||
|
background-color: #2c88ee !important;
|
||||||
|
}
|
||||||
.ant-form-item {
|
.ant-form-item {
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
@ -1634,3 +1637,17 @@ table {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.LowStockAlterModal {
|
||||||
|
.ant-input-affix-wrapper {
|
||||||
|
width: 300px !important;
|
||||||
|
}
|
||||||
|
.ant-input {
|
||||||
|
padding: 5px 14px 6px 11px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.LowStockAlterModalTable {
|
||||||
|
margin-top: 1rem;
|
||||||
|
.ant-table-thead tr {
|
||||||
|
background-color: #2c88ee !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -204,3 +204,8 @@
|
||||||
.printer-settings-tabs {
|
.printer-settings-tabs {
|
||||||
font-family: "Poppins";
|
font-family: "Poppins";
|
||||||
}
|
}
|
||||||
|
.PrinterSettingTab {
|
||||||
|
.ant-tabs-tab-active {
|
||||||
|
background-color: #2c5282 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 40vh;
|
height: 40vh;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
|
scrollbar-width: thin;
|
||||||
}
|
}
|
||||||
|
|
||||||
.DateWiseReport-denomination {
|
.DateWiseReport-denomination {
|
||||||
|
|
|
||||||
|
|
@ -228,16 +228,14 @@
|
||||||
background-color: #e9e8e8 !important;
|
background-color: #e9e8e8 !important;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
//dhana
|
|
||||||
// height: clamp(30vh, 50vh, 95vh);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// writed by sree
|
|
||||||
.ItemWiseReport-table1 {
|
.ItemWiseReport-table1 {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
height: clamp(40vh, 30vh, 95vh);
|
height: clamp(40vh, 30vh, 95vh);
|
||||||
width: 79vw !important;
|
width: 79vw !important;
|
||||||
|
scrollbar-width: thin;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ItemWiseReport-table .ant-table-thead tr .ant-table-cell {
|
.ItemWiseReport-table .ant-table-thead tr .ant-table-cell {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue