1645 lines
64 KiB
JavaScript
1645 lines
64 KiB
JavaScript
import React from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import QRcode from '../../../../Images/QRcode.png';
|
|
import Logo from '../../../../Images/Logo.jpg';
|
|
import {
|
|
extractLastNumber,
|
|
extractLastNumberOrderId,
|
|
} from '../../../../Services/Others';
|
|
import {
|
|
GlobalprintSlNo,
|
|
GlobalprintItem,
|
|
GlobalprintMRP,
|
|
GlobalprintDiscount,
|
|
GlobalprintQuantity,
|
|
GlobalprintRate,
|
|
GlobalprintAmount,
|
|
GlobalprintHsnCode,
|
|
GlobalprintQrcodet,
|
|
GlobalPritdummyData,
|
|
GloabalFieldDetails,
|
|
changeReprintDataFound,
|
|
GlobalprintSignature,
|
|
GlobalprinttermsAndConditions,
|
|
GlobalSignatureImage,
|
|
Globalnotes,
|
|
GlobalthemeFormat,
|
|
GlobalBillName,
|
|
GlobalSelectedPrintHeaderColor,
|
|
GlobalSelectedPrintHeaderFontColor,
|
|
GlobalSelectedTableHeaderColor,
|
|
GlobalSelectedTableHeaderFontColor,
|
|
GlobalSelectedTableBodyColor,
|
|
GlobalRowType,
|
|
GlobalSelectedFooterColor,
|
|
GlobalSelectedFooterFontColor,
|
|
GlobalSelectedTableBodyFontColor,
|
|
} from '../../../../Features/ThemeChange/ThemeChange';
|
|
import { GlobalUpiIDprint } from '../../../../Features/BookingScreen/BookingData/BookingData';
|
|
import '../../../../Styles/BookingScreen/PrintTemplates/ThermalPrinter/PrintStyle11.scss';
|
|
import QRCode from 'react-qr-code';
|
|
import signature from '../../../../Images/signatureimage.jpg';
|
|
import { ApplicationPreferences } from '../../../../Features/BrachLogin/BranchLogin';
|
|
import { isMobile } from 'react-device-detect';
|
|
|
|
const DCPrintStyle11 = ({
|
|
BranchName,
|
|
BranchDetails,
|
|
BranchAddress,
|
|
BranchCity,
|
|
BranchZip,
|
|
Date1,
|
|
table2Data,
|
|
PaymentStatus,
|
|
PrintGreeting,
|
|
printDatas,
|
|
base64Image,
|
|
DCPrintTemplateDtl,
|
|
}) => {
|
|
const formatDate = (dateString = '') => {
|
|
const date = new Date(dateString);
|
|
const day = date.getDate().toString().padStart(2, '0');
|
|
const months = [
|
|
'Jan',
|
|
'Feb',
|
|
'Mar',
|
|
'Apr',
|
|
'May',
|
|
'Jun',
|
|
'Jul',
|
|
'Aug',
|
|
'Sep',
|
|
'Oct',
|
|
'Nov',
|
|
'Dec',
|
|
];
|
|
const month = months[date.getMonth()];
|
|
const year = date.getFullYear();
|
|
return day && month && year ? `${day}-${month}-${year}` : '-';
|
|
};
|
|
const dispatch = useDispatch();
|
|
const GlobalUpiID = useSelector(GlobalUpiIDprint);
|
|
let FieldDetails = DCPrintTemplateDtl?.FieldDetails?.reduce((acc, item) => {
|
|
acc[item.ConfigName] = true;
|
|
return acc;
|
|
}, {});
|
|
const SLNO = FieldDetails?.['Sl.No'];
|
|
const Item = FieldDetails?.['Item'];
|
|
const MRP = FieldDetails?.['MRP'];
|
|
const Discount = FieldDetails?.['Discount'];
|
|
const Quantity = FieldDetails?.['Quantity'];
|
|
const Rate = FieldDetails?.['Rate'];
|
|
const Amount = FieldDetails?.['Amount'];
|
|
const HsnCode = FieldDetails?.['HsnCode'];
|
|
const Qrcodet = FieldDetails?.['Qrcode'];
|
|
const GlobalSlNo = useSelector(GlobalprintSlNo);
|
|
const GlobalItem = useSelector(GlobalprintItem);
|
|
const GlobalMRP = useSelector(GlobalprintMRP);
|
|
const GlobalDiscount = useSelector(GlobalprintDiscount);
|
|
const GlobalQuantity = useSelector(GlobalprintQuantity);
|
|
const GlobalRate = useSelector(GlobalprintRate);
|
|
const GlobalAmount = useSelector(GlobalprintAmount);
|
|
const GlobalHsnCode = useSelector(GlobalprintHsnCode);
|
|
const GlobalQrcodet = useSelector(GlobalprintQrcodet);
|
|
const GlobaldummyData = useSelector(GlobalPritdummyData);
|
|
const GlobalSignature = useSelector(GlobalprintSignature);
|
|
const GlobaltermsAndConditions = useSelector(GlobalprinttermsAndConditions);
|
|
const GlobalSignatureImages = useSelector(GlobalSignatureImage);
|
|
const GlobalIsnotes = useSelector(Globalnotes);
|
|
const GlobalthemeFormatr = useSelector(GlobalthemeFormat);
|
|
const GlobalBilltext = useSelector(GlobalBillName);
|
|
const appPreferences = useSelector(ApplicationPreferences);
|
|
const bookingTypePreference = appPreferences?.find(
|
|
(preference) => preference?.PreferredCatName === 'Booking Type'
|
|
)?.PreferenceCatDetails;
|
|
const dinePreference = bookingTypePreference?.find(
|
|
(type) =>
|
|
type?.PreferredSubCatName?.toLowerCase() === 'dine in' &&
|
|
type?.PreferredStatus === 'Y'
|
|
);
|
|
const takeAwayPreference = bookingTypePreference?.find(
|
|
(type) =>
|
|
type?.PreferredSubCatName?.toLowerCase() === 'take away' &&
|
|
type?.PreferredStatus === 'Y'
|
|
);
|
|
|
|
let TermsAndConditions = DCPrintTemplateDtl?.TermsandConditions;
|
|
let SignatureImg = DCPrintTemplateDtl?.Signature;
|
|
let Notestext = DCPrintTemplateDtl?.Notes;
|
|
let BillName = DCPrintTemplateDtl?.PrintHdrName;
|
|
let FormatTheme = DCPrintTemplateDtl?.PrintType == 'S' ? true : false;
|
|
let PageSize = DCPrintTemplateDtl?.PageSize;
|
|
const Signature = FieldDetails?.['signature'];
|
|
const TermsnAdCondition = FieldDetails?.['terms&conditions'];
|
|
|
|
const keysLength = Object.keys(table2Data ?? {}).length;
|
|
let PaymentStatusSuccess = PaymentStatus?.filter(
|
|
(ps) => ps.PaymentStatus === 'S'
|
|
);
|
|
if (keysLength > 0) {
|
|
dispatch(changeReprintDataFound(true));
|
|
}
|
|
|
|
const TakeawayData = table2Data?.productDetails?.filter(
|
|
(item) => item.BookingTypeName?.toLowerCase() === 'takeaway'
|
|
);
|
|
const DineInData = table2Data?.productDetails?.filter(
|
|
(item) => item.BookingTypeName?.toLowerCase() === 'dine in'
|
|
);
|
|
|
|
const TakeawayTotal = TakeawayData?.reduce(
|
|
(accumulator, currentValue) => accumulator + currentValue.TotalAmt,
|
|
0
|
|
);
|
|
const DineInTotal = DineInData?.reduce(
|
|
(accumulator, currentValue) => accumulator + currentValue.TotalAmt,
|
|
0
|
|
);
|
|
const aggregatedPayments = PaymentStatusSuccess?.reduce(
|
|
(acc, paymentdata) => {
|
|
const paymentType = paymentdata?.PaymentTypeName;
|
|
const amount = Number(paymentdata?.Amount);
|
|
|
|
if (acc[paymentType]) {
|
|
acc[paymentType] += amount;
|
|
} else {
|
|
acc[paymentType] = amount;
|
|
}
|
|
|
|
return acc;
|
|
},
|
|
{}
|
|
);
|
|
const productsData = table2Data?.productDetails || [];
|
|
const offers = table2Data?.OrderOfferDetails || [];
|
|
|
|
let TotalOfferAmount = 0;
|
|
|
|
// Calculate SalesWiseOffers total amount
|
|
offers.forEach((offer) => {
|
|
if (offer.TableName === 'SalesWiseOffers') {
|
|
TotalOfferAmount += offer.OfferAmount;
|
|
}
|
|
});
|
|
const hasMappedOffer = offers.some((offer) =>
|
|
['ItemWiseOffers', 'BundleOffers', 'QuantityWiseOffers'].includes(
|
|
offer.TableName
|
|
)
|
|
);
|
|
|
|
if (hasMappedOffer) {
|
|
const productTotal = productsData?.reduce(
|
|
(acc, item) =>
|
|
acc + (item?.Type != 'C' ? item.OfferAmt : item.OfferValue || 0),
|
|
0
|
|
);
|
|
TotalOfferAmount += productTotal;
|
|
} else {
|
|
const Combothere = productsData?.filter((item) => item?.Type == 'C');
|
|
const CombothereTotal = Combothere?.reduce(
|
|
(acc, item) => acc + (item.OfferValue || 0),
|
|
0
|
|
);
|
|
TotalOfferAmount += CombothereTotal;
|
|
}
|
|
const products = [
|
|
{
|
|
ProdName: 'ITEM 1',
|
|
Rate: 88.0,
|
|
SalesQty: 2,
|
|
MRP: 100,
|
|
TotalAmt: 176,
|
|
discount: 0,
|
|
HSN: '01',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 2',
|
|
Rate: 300.0,
|
|
SalesQty: 1,
|
|
MRP: 350,
|
|
TotalAmt: 300,
|
|
discount: 0,
|
|
HSN: '02',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 3',
|
|
Rate: 200.0,
|
|
SalesQty: 1,
|
|
MRP: 250,
|
|
TotalAmt: 200,
|
|
discount: 0,
|
|
HSN: '03',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 4',
|
|
Rate: 30.0,
|
|
SalesQty: 1,
|
|
MRP: 50,
|
|
TotalAmt: 30,
|
|
discount: 0,
|
|
HSN: '04',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 5',
|
|
Rate: 30.0,
|
|
SalesQty: 1,
|
|
MRP: 50,
|
|
TotalAmt: 30,
|
|
discount: 0,
|
|
HSN: '05',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 6',
|
|
Rate: 130.0,
|
|
SalesQty: 1,
|
|
MRP: 150,
|
|
TotalAmt: 130,
|
|
discount: 0,
|
|
HSN: '06',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
{
|
|
ProdName: 'ITEM 7',
|
|
Rate: 230.0,
|
|
SalesQty: 1,
|
|
MRP: 250,
|
|
TotalAmt: 230,
|
|
discount: 0,
|
|
HSN: '08',
|
|
Size: 250,
|
|
UomName: 'g',
|
|
},
|
|
];
|
|
|
|
const chunkSize = PageSize == 'A5' ? 8 : 11;
|
|
let dataSource = table2Data?.ProductDetails || [];
|
|
|
|
// Paginate the data
|
|
const paginatedChunks = [];
|
|
for (let i = 0; i < dataSource.length; i += chunkSize) {
|
|
paginatedChunks.push(dataSource.slice(i, i + chunkSize));
|
|
}
|
|
const lastChunkRows =
|
|
paginatedChunks.length > 0
|
|
? paginatedChunks[paginatedChunks.length - 1].length
|
|
: 0;
|
|
const shouldFooterBeOnNewPage = lastChunkRows > (PageSize == 'A5' ? 5 : 10);
|
|
|
|
//
|
|
const SelectedHeaderColor = useSelector(GlobalSelectedPrintHeaderColor);
|
|
const SelectedHeaderFontColor = useSelector(
|
|
GlobalSelectedPrintHeaderFontColor
|
|
);
|
|
const SelectedTableHeaderColor = useSelector(GlobalSelectedTableHeaderColor);
|
|
const SelectedTableHeaderFontColor = useSelector(
|
|
GlobalSelectedTableHeaderFontColor
|
|
);
|
|
const SelectedTableBodyColor = useSelector(GlobalSelectedTableBodyColor);
|
|
const SelectedTableBodyFontColor = useSelector(
|
|
GlobalSelectedTableBodyFontColor
|
|
);
|
|
const SelectedRowType = useSelector(GlobalRowType);
|
|
const SelectedTableFooterColor = useSelector(GlobalSelectedFooterColor);
|
|
const SelectedTableFooterFontColor = useSelector(
|
|
GlobalSelectedFooterFontColor
|
|
);
|
|
|
|
//
|
|
let printColors = DCPrintTemplateDtl?.PrintColors;
|
|
const headerColor = printColors?.find((obj) => obj.headerColor)?.headerColor;
|
|
const tableHeaderColor = printColors?.find(
|
|
(obj) => obj.tableHeaderColor
|
|
)?.tableHeaderColor;
|
|
const tableBodyColor = printColors?.find(
|
|
(obj) => obj.tableBodyColor
|
|
)?.tableBodyColor;
|
|
const footerColor = printColors?.find((obj) => obj.footerColor)?.footerColor;
|
|
|
|
//
|
|
const headerStyle = {
|
|
backgroundColor: GlobaldummyData
|
|
? SelectedHeaderColor
|
|
: headerColor?.background,
|
|
|
|
color: GlobaldummyData ? SelectedHeaderFontColor : headerColor?.font,
|
|
};
|
|
const tableHeaderStyle = {
|
|
backgroundColor: GlobaldummyData
|
|
? SelectedTableHeaderColor
|
|
: tableHeaderColor?.background,
|
|
|
|
color: GlobaldummyData
|
|
? SelectedTableHeaderFontColor
|
|
: tableHeaderColor?.font,
|
|
};
|
|
|
|
const tableBodyStyle = {
|
|
backgroundColor: GlobaldummyData
|
|
? SelectedTableBodyColor
|
|
: tableBodyColor?.background,
|
|
color: GlobaldummyData ? SelectedTableBodyFontColor : tableBodyColor?.font,
|
|
};
|
|
|
|
const rowtypeStyle = GlobaldummyData
|
|
? SelectedRowType
|
|
: tableBodyColor?.rowType;
|
|
|
|
const footerColorStyle = {
|
|
backgroundColor: GlobaldummyData
|
|
? SelectedTableFooterColor
|
|
: footerColor?.background,
|
|
color: GlobaldummyData ? SelectedTableFooterFontColor : footerColor?.font,
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{FormatTheme ? (
|
|
<div
|
|
className="PrintStyle11MasterDiv"
|
|
id={`DCPrintStyle11`}
|
|
style={{
|
|
fontFamily: "'Courier New', Courier, monospace",
|
|
position: 'relative',
|
|
width: '100%',
|
|
minHeight: isMobile
|
|
? PageSize == 'A5'
|
|
? '210mm'
|
|
: '297mm'
|
|
: 'auto',
|
|
}}
|
|
>
|
|
{paginatedChunks.map((dataChunk, chunkIndex) => (
|
|
<div
|
|
className={`container print-chunk${chunkIndex > 0 ? ' print-page-break' : ''}`}
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent:
|
|
chunkIndex === paginatedChunks.length - 1 &&
|
|
!shouldFooterBeOnNewPage &&
|
|
FormatTheme
|
|
? 'space-between'
|
|
: '',
|
|
height: FormatTheme
|
|
? PageSize == 'A5'
|
|
? '170mm'
|
|
: '257mm'
|
|
: '',
|
|
}}
|
|
key={chunkIndex}
|
|
>
|
|
<div
|
|
style={{
|
|
fontSize: '14px',
|
|
margin: '2px 0 0 0',
|
|
padding: 0,
|
|
fontWeight: 600,
|
|
textAlign: 'center',
|
|
...headerStyle,
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
fontSize: '14px',
|
|
margin: '2px 0 0 0',
|
|
padding: 0,
|
|
fontWeight: 600,
|
|
...headerStyle,
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? 'Cash Bill'
|
|
: BillName
|
|
? BillName
|
|
: 'Delivery Challan'}{' '}
|
|
</div>
|
|
</div>
|
|
<div
|
|
className="header"
|
|
style={{
|
|
position: isMobile
|
|
? GlobaldummyData
|
|
? 'absolute'
|
|
: 'fixed'
|
|
: '',
|
|
top: 0,
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<div className="PrintStyle11-print" style={{ ...headerStyle }}>
|
|
{base64Image ? (
|
|
<img
|
|
className="PrintStyle11-BrandImage"
|
|
src={GlobaldummyData ? Logo : base64Image}
|
|
alt="image"
|
|
style={{ width: '80px', height: '80px' }}
|
|
/>
|
|
) : null}
|
|
<div>
|
|
<div
|
|
style={{
|
|
fontWeight: '600',
|
|
// fontFamily: "Lemon",
|
|
fontSize: 'clamp(1rem, 2.5vw, 2.5rem)',
|
|
}}
|
|
>
|
|
{GlobaldummyData ? 'XYZ Shop' : BranchName}
|
|
</div>
|
|
{/* <div style={{ fontWeight: '600', fontFamily: 'monospace', fontSize: 'clamp(0.5rem, 2.5vw, 1.5rem)' }}>
|
|
Save green | Save nature
|
|
</div> */}
|
|
</div>
|
|
</div>
|
|
<hr style={{ margin: '0.1rem 0rem' }} />
|
|
<div className="PrintStyle11-print-SecondDiv">
|
|
<div style={{ fontSize: '12px', fontWeight: '600' }}>
|
|
{GlobaldummyData
|
|
? 'BranchAddress, Town- 635XXX City - State'
|
|
: (BranchAddress || '') +
|
|
(BranchCity
|
|
? (BranchAddress && BranchCity ? '-' : '') +
|
|
BranchCity
|
|
: '') +
|
|
(BranchZip
|
|
? (BranchCity && BranchZip ? '-' : '') + BranchZip
|
|
: '')}
|
|
</div>
|
|
{BranchDetails?.BrGSTIN && (
|
|
<div>
|
|
GST NO :
|
|
{GlobaldummyData
|
|
? '334bhbsagbysfgbfgbu'
|
|
: BranchDetails?.BrGSTIN}
|
|
, CIN :u00045hhsgbubufsdug
|
|
</div>
|
|
)}
|
|
{BranchDetails?.BrMobile && (
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Mobile : +91{' '}
|
|
{GlobaldummyData ? '986XXXXXXX' : BranchDetails?.BrMobile}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{table2Data?.ToBranchDtl?.length > 0 && (
|
|
<>
|
|
<hr style={{ margin: '0.1rem 0rem' }} />
|
|
<div style={{ marginBottom: '4px', marginTop: '10px' }}>
|
|
<div style={{ marginBottom: '3px' }}>
|
|
<strong>Delivery To :</strong>
|
|
</div>
|
|
<div className="Quo-Print-Company">
|
|
<div className="Quo-Print-Cname">
|
|
{table2Data?.ToBranchDtl?.[0]?.BranchName}
|
|
</div>
|
|
{table2Data?.ToBranchDtl?.[0]?.Address1 && (
|
|
<div className="Quo-Print-address">
|
|
{table2Data?.ToBranchDtl?.[0]?.Address1}
|
|
</div>
|
|
)}
|
|
{(table2Data?.ToBranchDtl?.[0]?.City ||
|
|
table2Data?.ToBranchDtl?.[0]?.Dist ||
|
|
table2Data?.ToBranchDtl?.[0]?.Zip) && (
|
|
<div className="Quo-Print-address">{`${table2Data?.ToBranchDtl?.[0]?.City}, ${table2Data?.ToBranchDtl?.[0]?.Dist} - ${table2Data?.ToBranchDtl?.[0]?.Zip}`}</div>
|
|
)}
|
|
{table2Data?.ToBranchDtl?.[0]?.BrGSTIN && (
|
|
<div className="Quo-Print-address">
|
|
{table2Data?.ToBranchDtl?.[0]?.BrGSTIN}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
<hr style={{ margin: '0.1rem 0rem' }} />
|
|
|
|
{table2Data?.dispatchPrint !== true && (
|
|
<div className="PrintStyle1-print-ordr-dtls">
|
|
<div>
|
|
<div style={{ fontWeight: '600', fontSize: '14px' }}>
|
|
{' '}
|
|
Delivery ChallanNo:
|
|
{GlobaldummyData ? '121' : table2Data?.DCNo}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Date : {GlobaldummyData ? formattedDate : Date1}{' '}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{table2Data?.dispatchPrint === true && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
width: '100%',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
marginTop: '4px',
|
|
gap: '10px',
|
|
}}
|
|
>
|
|
<div className="PrintStyle1-print-ordr-dtls">
|
|
<div>
|
|
<div style={{ fontWeight: '600', fontSize: '14px' }}>
|
|
{' '}
|
|
Dispatch No #:
|
|
{table2Data?.DispatchId}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Dispatch Date :{' '}
|
|
{formatDate(table2Data?.CreatedDate)}{' '}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="PrintStyle1-print-ordr-dtls">
|
|
<div>
|
|
<div style={{ fontWeight: '600', fontSize: '14px' }}>
|
|
{' '}
|
|
Ref No #:
|
|
{table2Data?.RequestId}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Requested Date :{' '}
|
|
{formatDate(table2Data?.RequestedDate)}{' '}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<hr className="PrintStyle11-print-dottline" />
|
|
{(table2Data?.CustMobile ||
|
|
table2Data?.CustName ||
|
|
table2Data?.VehicleNo ||
|
|
table2Data?.TransporterId ||
|
|
table2Data?.TransporterName) && (
|
|
<>
|
|
<div className="PrintStyle1-print-ordr-dtls">
|
|
{(table2Data?.CustMobile || table2Data?.CustName) && (
|
|
<div style={{ lineheight: '50px' }}>
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
Delivery Details
|
|
</div>
|
|
{table2Data?.CustMobile && (
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
{' '}
|
|
Mobile NO :{table2Data?.CustMobile}{' '}
|
|
</div>
|
|
)}
|
|
{table2Data?.CustName && (
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
{' '}
|
|
Name:{table2Data?.CustName}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
{(table2Data?.VehicleNo ||
|
|
table2Data?.TransporterId ||
|
|
table2Data?.TransporterName) && (
|
|
<div>
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
Vehicle Details
|
|
</div>
|
|
{table2Data?.VehicleNo && (
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
{' '}
|
|
Vehicle No :{table2Data?.VehicleNo}
|
|
</div>
|
|
)}
|
|
{table2Data?.TransporterId && (
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
{' '}
|
|
Transporter Id :{table2Data?.TransporterId}
|
|
</div>
|
|
)}
|
|
{table2Data?.TransporterName && (
|
|
<div style={{ fontSize: '14px', fontWeight: 600 }}>
|
|
{' '}
|
|
Transporter Name :{table2Data?.TransporterName}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<hr className="PrintStyle1-print-dottline" />
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
<div
|
|
style={{ marginTop: GlobaldummyData ? '9rem' : '0rem' }}
|
|
className="print-body"
|
|
>
|
|
{(table2Data?.ProductDetails?.length > 0 ||
|
|
GlobaldummyData) && (
|
|
<>
|
|
<table className="PrintStyle11-print-table">
|
|
<thead>
|
|
<tr>
|
|
{GlobaldummyData
|
|
? GlobalSlNo && (
|
|
<th
|
|
style={{ width: '10px', ...tableHeaderStyle }}
|
|
>
|
|
S.No
|
|
</th>
|
|
)
|
|
: SLNO && (
|
|
<th
|
|
style={{ width: '10px', ...tableHeaderStyle }}
|
|
>
|
|
S.No
|
|
</th>
|
|
)}
|
|
{GlobaldummyData
|
|
? GlobalItem && (
|
|
<th
|
|
style={{ width: '10px', ...tableHeaderStyle }}
|
|
>
|
|
Item
|
|
</th>
|
|
)
|
|
: Item && (
|
|
<th
|
|
style={{ width: '10px', ...tableHeaderStyle }}
|
|
>
|
|
Item
|
|
</th>
|
|
)}
|
|
{GlobaldummyData
|
|
? GlobalQuantity && (
|
|
<th
|
|
style={{
|
|
width: '10px',
|
|
textAlign: 'right',
|
|
...tableHeaderStyle,
|
|
}}
|
|
>
|
|
Qty
|
|
</th>
|
|
)
|
|
: Quantity && (
|
|
<th
|
|
style={{
|
|
width: '10px',
|
|
textAlign: 'right',
|
|
...tableHeaderStyle,
|
|
}}
|
|
>
|
|
Qty
|
|
</th>
|
|
)}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{dataChunk?.map((item, index) => {
|
|
return (
|
|
<tr
|
|
key={index}
|
|
style={{
|
|
...(index % 2 !== 1 && rowtypeStyle === 'even'
|
|
? {
|
|
...tableBodyStyle,
|
|
}
|
|
: index % 2 === 1 && rowtypeStyle === 'odd'
|
|
? {
|
|
...tableBodyStyle,
|
|
}
|
|
: {}),
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobalSlNo && <td>{index + 1}</td>
|
|
: SLNO && (
|
|
<td>
|
|
{chunkIndex * chunkSize + index + 1}
|
|
</td>
|
|
)}
|
|
{GlobaldummyData
|
|
? GlobalItem && <td>{item?.ProdName}</td>
|
|
: Item && (
|
|
<td
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
}}
|
|
>
|
|
<div>{item?.ProdName}</div>
|
|
<div>
|
|
({item?.Size ? item?.Size : '1'}{' '}
|
|
{item?.SinglePc == 'Y'
|
|
? 'PCS'
|
|
: item?.Type != 'C'
|
|
? item?.UomName
|
|
: 'COMBO'}
|
|
)
|
|
{item?.BrandName !== null
|
|
? item?.BrandName
|
|
: ''}
|
|
|
|
{item?.RequestVariantName
|
|
? `${item?.RequestVariantName}`
|
|
: ''}
|
|
|
|
{item?.ProductIdentifierDtls?.length > 0
|
|
? item?.ProductIdentifierDtls?.filter(
|
|
(items) =>
|
|
!(
|
|
items.SerialNumber == '' ||
|
|
items.SerialNumber == null
|
|
)
|
|
)?.map((a) => {
|
|
return (
|
|
<div>{a.SerialNumber}</div>
|
|
);
|
|
})
|
|
: ''}{' '}
|
|
{item?.ProductIdentifierDtls?.length > 0
|
|
? item?.ProductIdentifierDtls.filter(
|
|
(item1) =>
|
|
item1.IMEI1 !== '' ||
|
|
item1.IMEI2 !== ''
|
|
)?.map((item2) => {
|
|
const imei1 = item2.IMEI1 || '';
|
|
const imei2 = item2.IMEI2 || '';
|
|
return (
|
|
<div>
|
|
{[imei1, imei2]
|
|
.filter(Boolean)
|
|
.join(',')}
|
|
</div>
|
|
);
|
|
})
|
|
: ''}
|
|
</div>
|
|
</td>
|
|
)}
|
|
{GlobaldummyData
|
|
? GlobalQuantity && (
|
|
<td style={{ textAlign: 'right' }}>
|
|
{item?.SalesQty}
|
|
</td>
|
|
)
|
|
: Quantity && (
|
|
<td style={{ textAlign: 'right' }}>
|
|
{item?.Qty || item?.DispatchedQty}
|
|
</td>
|
|
)}
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
{chunkIndex === paginatedChunks.length - 1 &&
|
|
!shouldFooterBeOnNewPage &&
|
|
FormatTheme && (
|
|
<>
|
|
<div
|
|
className="page-footerA4Style11"
|
|
style={{
|
|
marginTop: 'auto',
|
|
pageBreakBefore: 'avoid',
|
|
pageBreakInside: 'avoid',
|
|
minHeight: 'auto',
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobalIsnotes && (
|
|
<div>
|
|
<p style={{ padding: '0rem 1rem' }}>
|
|
Notes : 10 days Return policy
|
|
</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)
|
|
: Notestext && (
|
|
<div>
|
|
<p style={{ padding: '0rem 1rem' }}>
|
|
{Notestext}
|
|
</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)}
|
|
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
width: '90%',
|
|
padding: '0 1rem',
|
|
justifyContent: GlobaltermsAndConditions
|
|
? 'space-between'
|
|
: 'flex-end',
|
|
alignItems: 'center',
|
|
...footerColorStyle,
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobaltermsAndConditions && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
padding: '8px',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
<li>
|
|
Once goods are sold, they are not
|
|
exchangeable or refundable.
|
|
</li>
|
|
<li>
|
|
Please check the product before leaving the
|
|
counter.
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
)
|
|
: TermsnAdCondition == true &&
|
|
TermsAndConditions?.length > 0 && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-start',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
{TermsAndConditions?.map((item) => (
|
|
<li style={{ textAlign: 'start' }}>
|
|
{item?.TermsandConditions}
|
|
</li>
|
|
))}
|
|
{/* <li>Please check the product before leaving the counter.</li> */}
|
|
</ol>
|
|
</div>
|
|
)}
|
|
|
|
{GlobaldummyData
|
|
? GlobalSignature && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-end',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '70px', height: '40px' }}
|
|
src={
|
|
GlobalSignatureImages
|
|
? GlobalSignatureImages
|
|
: signature
|
|
}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)
|
|
: Signature == true && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
marginTop: '1rem',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '100px', height: '60px' }}
|
|
src={SignatureImg}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{PrintGreeting?.SettingValue === 'Y' && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
gap: '0.5rem',
|
|
}}
|
|
>
|
|
<div style={{ fontSize: '13px', fontWeight: '600' }}>
|
|
Thank You Visit Again
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
))}
|
|
|
|
{shouldFooterBeOnNewPage && FormatTheme && (
|
|
<div
|
|
className="print-page"
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
minHeight: PageSize == 'A5' ? '200mm' : '257mm',
|
|
justifyContent: 'flex-end',
|
|
pageBreakBefore: 'always',
|
|
}}
|
|
>
|
|
<>
|
|
<div
|
|
className="page-footerA4Style11"
|
|
style={{
|
|
marginTop: 'auto',
|
|
pageBreakBefore: 'avoid',
|
|
pageBreakInside: 'avoid',
|
|
minHeight: 'auto',
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobalIsnotes && (
|
|
<div>
|
|
<p style={{ padding: '0rem 1rem' }}>
|
|
Notes : 10 days Return policy
|
|
</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)
|
|
: Notestext && (
|
|
<div>
|
|
<p style={{ padding: '0rem 1rem' }}>{Notestext}</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)}
|
|
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
width: '90%',
|
|
padding: '0 1rem',
|
|
justifyContent: GlobaltermsAndConditions
|
|
? 'space-between'
|
|
: 'flex-end',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobaltermsAndConditions && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
padding: '8px',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
<li>
|
|
Once goods are sold, they are not exchangeable
|
|
or refundable.
|
|
</li>
|
|
<li>
|
|
Please check the product before leaving the
|
|
counter.
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
)
|
|
: TermsnAdCondition == true &&
|
|
TermsAndConditions?.length > 0 && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-start',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
{TermsAndConditions?.map((item) => (
|
|
<li style={{ textAlign: 'start' }}>
|
|
{item?.TermsandConditions}
|
|
</li>
|
|
))}
|
|
{/* <li>Please check the product before leaving the counter.</li> */}
|
|
</ol>
|
|
</div>
|
|
)}
|
|
|
|
{GlobaldummyData
|
|
? GlobalSignature && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-end',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '70px', height: '40px' }}
|
|
src={
|
|
GlobalSignatureImages
|
|
? GlobalSignatureImages
|
|
: signature
|
|
}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)
|
|
: Signature == true && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
marginTop: '1rem',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '100px', height: '60px' }}
|
|
src={SignatureImg}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{PrintGreeting?.SettingValue === 'Y' && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
gap: '0.5rem',
|
|
}}
|
|
>
|
|
<div style={{ fontSize: '13px', fontWeight: '600' }}>
|
|
Thank You Visit Again
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
</div>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<div
|
|
className="PrintStyle11MasterDiv"
|
|
id={`DCPrintStyle11`}
|
|
style={{ fontFamily: "'Courier New', Courier, monospace" }}
|
|
>
|
|
<div className="PrintStyle11-print">
|
|
{base64Image ? (
|
|
<img
|
|
className="PrintStyle11-BrandImage"
|
|
src={GlobaldummyData ? Logo : base64Image}
|
|
alt="image"
|
|
style={{ width: '40px', height: '40px' }}
|
|
/>
|
|
) : null}
|
|
<div>
|
|
<div
|
|
style={{
|
|
fontWeight: '600',
|
|
// fontFamily: "Lemon",
|
|
fontSize: 'clamp(1rem, 2.5vw, 2.5rem)',
|
|
}}
|
|
>
|
|
{GlobaldummyData ? 'XYZ Shop' : BranchName}
|
|
</div>
|
|
{/* <div style={{ fontWeight: '600', fontFamily: 'monospace', fontSize: 'clamp(0.5rem, 2.5vw, 1.5rem)' }}>
|
|
Save green | Save nature
|
|
</div> */}
|
|
</div>
|
|
</div>
|
|
<hr style={{ margin: '0.1rem 0rem' }} />
|
|
<div className="PrintStyle11-print-SecondDiv">
|
|
<div style={{ fontSize: '12px', fontWeight: '600' }}>
|
|
{GlobaldummyData
|
|
? 'BranchAddress, Town- 635XXX City - State'
|
|
: (BranchAddress || '') +
|
|
(BranchCity
|
|
? (BranchAddress && BranchCity ? '-' : '') + BranchCity
|
|
: '') +
|
|
(BranchZip
|
|
? (BranchCity && BranchZip ? '-' : '') + BranchZip
|
|
: '')}
|
|
</div>
|
|
{BranchDetails?.BrGSTIN && (
|
|
<div>
|
|
GST NO :
|
|
{GlobaldummyData
|
|
? '334bhbsagbysfgbfgbu'
|
|
: BranchDetails?.BrGSTIN}
|
|
, CIN :u00045hhsgbubufsdug
|
|
</div>
|
|
)}
|
|
{BranchDetails?.BrMobile && (
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Mobile : +91{' '}
|
|
{GlobaldummyData ? '986XXXXXXX' : BranchDetails?.BrMobile}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<hr style={{ margin: '0.1rem 0rem' }} />
|
|
<div
|
|
style={{
|
|
fontSize: '14px',
|
|
margin: '2px 0 0 0',
|
|
padding: 0,
|
|
fontWeight: 600,
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
fontSize: '14px',
|
|
margin: '2px 0 0 0',
|
|
padding: 0,
|
|
fontWeight: 600,
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? 'Cash Bill'
|
|
: BillName
|
|
? BillName
|
|
: 'Delivery Challan'}{' '}
|
|
</div>
|
|
</div>
|
|
<div className="PrintStyle1-print-ordr-dtls">
|
|
<div>
|
|
<div style={{ fontWeight: '600', fontSize: '14px' }}>
|
|
Delivery ChallanNo:
|
|
{GlobaldummyData ? '121' : table2Data?.DCNo}
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div style={{ fontWeight: '600' }}>
|
|
{' '}
|
|
Date : {GlobaldummyData ? formattedDate : Date1}{' '}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="PrintStyle11-print-tableMaster">
|
|
{(table2Data?.ProductDetails?.length > 0 || GlobaldummyData) && (
|
|
<>
|
|
<table className="PrintStyle11-print-table">
|
|
<thead>
|
|
<tr>
|
|
{GlobaldummyData
|
|
? GlobalSlNo && <th style={{ width: '10px' }}>S.N</th>
|
|
: SLNO && <th style={{ width: '10px' }}>S.N</th>}
|
|
{GlobaldummyData
|
|
? GlobalItem && <th style={{ width: '10px' }}>Item</th>
|
|
: Item && <th style={{ width: '10px' }}>Item</th>}
|
|
{GlobaldummyData
|
|
? GlobalQuantity && (
|
|
<th style={{ width: '10px', textAlign: 'right' }}>
|
|
Qty
|
|
</th>
|
|
)
|
|
: Quantity && (
|
|
<th style={{ width: '10px', textAlign: 'right' }}>
|
|
Qty
|
|
</th>
|
|
)}
|
|
{/* {GlobaldummyData ? GlobalHsnCode && <th style={{ width: '10px', textAlign: 'right' }}>HSN</th> : HsnCode && <th style={{ width: '10px', textAlign: 'right' }}>HSN</th>}
|
|
{GlobaldummyData ? GlobalMRP && <th style={{ width: '10px', textAlign: 'right' }}>MRP</th> : MRP && <th style={{ width: '10px', textAlign: 'right' }}>MRP</th>}
|
|
{GlobaldummyData ? GlobalDiscount && <th style={{ width: '10px', textAlign: 'right' }}>Dis </th> : Discount && <th style={{ width: '10px', textAlign: 'right' }}>Dis </th>}
|
|
{GlobaldummyData ? GlobalRate && <th style={{ width: '10px', textAlign: 'right' }}>Rate</th> : Rate && <th style={{ width: '10px', textAlign: 'right' }}>Rate</th>}
|
|
{GlobaldummyData ? GlobalAmount && <th style={{ width: '10px', textAlign: 'right' }}>Amt</th> : Amount && <th style={{ width: '10px', textAlign: 'right' }}>Amt</th>} */}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{(GlobaldummyData ? products : TakeawayData)?.map(
|
|
(item, index) => {
|
|
return (
|
|
<tr key={index}>
|
|
{GlobaldummyData
|
|
? GlobalSlNo && <td>{index + 1}</td>
|
|
: SLNO && <td>{index + 1}</td>}
|
|
{GlobaldummyData
|
|
? GlobalItem && <td>{item?.ProdName}</td>
|
|
: Item && (
|
|
<td
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
}}
|
|
>
|
|
<div>{item?.ProdName}</div>
|
|
<div>
|
|
({item?.Size ? item?.Size : '1'}{' '}
|
|
{item?.SinglePc == 'Y'
|
|
? 'PCS'
|
|
: item?.Type != 'C'
|
|
? item?.UomName
|
|
: 'COMBO'}
|
|
)
|
|
{item?.BrandName !== null
|
|
? item?.BrandName
|
|
: ''}
|
|
|
|
{item?.ProductIdentifierDtls?.length > 0
|
|
? item?.ProductIdentifierDtls?.filter(
|
|
(items) =>
|
|
!(
|
|
items.SerialNumber == '' ||
|
|
items.SerialNumber == null
|
|
)
|
|
)?.map((a) => {
|
|
return <div>{a.SerialNumber}</div>;
|
|
})
|
|
: ''}{' '}
|
|
{item?.ProductIdentifierDtls?.length > 0
|
|
? item?.ProductIdentifierDtls.filter(
|
|
(item1) =>
|
|
item1.IMEI1 !== '' ||
|
|
item1.IMEI2 !== ''
|
|
)?.map((item2) => {
|
|
const imei1 = item2.IMEI1 || '';
|
|
const imei2 = item2.IMEI2 || '';
|
|
return (
|
|
<div>
|
|
{[imei1, imei2]
|
|
.filter(Boolean)
|
|
.join(',')}
|
|
</div>
|
|
);
|
|
})
|
|
: ''}
|
|
</div>
|
|
</td>
|
|
)}
|
|
{GlobaldummyData
|
|
? GlobalQuantity && (
|
|
<td style={{ textAlign: 'right' }}>
|
|
{item?.SalesQty}
|
|
</td>
|
|
)
|
|
: Quantity && (
|
|
<td style={{ textAlign: 'right' }}>
|
|
{item?.Qty}
|
|
</td>
|
|
)}
|
|
{/* {GlobaldummyData ? GlobalHsnCode && <td style={{ textAlign: 'right' }}>{item?.HSN}</td> : HsnCode && <td style={{ textAlign: 'right' }}>{item?.HSN}</td>}
|
|
{GlobaldummyData ? GlobalMRP && <td style={{ textAlign: 'right' }}>{item?.MRP}</td> : MRP && <td style={{ textAlign: 'right' }}>{item?.SinglePc === 'Y' ? item?.Rate : item?.MRP}</td>}
|
|
{GlobaldummyData ? GlobalDiscount && <td style={{ textAlign: 'right' }}>{item.discount}</td> : Discount && <td style={{ textAlign: 'right' }}>{item?.Type != "C" ? item?.OfferAmt || 0 : item?.OfferValue || 0}</td>}
|
|
{GlobaldummyData ? GlobalRate && <td style={{ textAlign: 'right' }}>{item?.Rate}</td> : Rate && <td style={{ textAlign: 'right' }}>{item?.Rate}</td>}
|
|
{GlobaldummyData ? GlobalAmount && <td style={{ textAlign: 'right' }}>{item?.TotalAmt}</td> : Amount && <td style={{ textAlign: 'right' }}>{item?.Type != "C" ? item?.TotalAmt - item?.OfferAmt || 0 : item?.TotalAmt - item?.OfferValue || 0}</td>} */}
|
|
</tr>
|
|
);
|
|
}
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</>
|
|
)}
|
|
|
|
<hr className="PrintStyle11-print-dottline" />
|
|
|
|
<div
|
|
className="page-footerA4Style11"
|
|
style={{
|
|
marginTop: 'auto',
|
|
pageBreakBefore: 'avoid',
|
|
pageBreakInside: 'avoid',
|
|
minHeight: 'auto',
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobalIsnotes && (
|
|
<div>
|
|
<p
|
|
style={{
|
|
padding: '0rem 1rem',
|
|
marginTop: GlobalthemeFormatr ? '5vh' : '',
|
|
}}
|
|
>
|
|
Notes : 10 days Return policy
|
|
</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)
|
|
: Notestext && (
|
|
<div>
|
|
<p style={{ padding: '0rem 1rem' }}>{Notestext}</p>
|
|
|
|
<hr className="PrintA4Style11-print-dottline" />
|
|
</div>
|
|
)}
|
|
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
width: '90%',
|
|
padding: '0 1rem',
|
|
justifyContent: GlobaltermsAndConditions
|
|
? 'space-between'
|
|
: 'flex-end',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
{GlobaldummyData
|
|
? GlobaltermsAndConditions && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
padding: '8px',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
<li>
|
|
Once goods are sold, they are not exchangeable or
|
|
refundable.
|
|
</li>
|
|
<li>
|
|
Please check the product before leaving the counter.
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
)
|
|
: TermsnAdCondition == true &&
|
|
TermsAndConditions?.length > 0 && (
|
|
<div
|
|
style={{
|
|
margin: '8px 0',
|
|
fontFamily: 'sans-serif',
|
|
width: '100%',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-start',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Terms & Conditions
|
|
</p>
|
|
<ol
|
|
style={{
|
|
fontSize: '12px',
|
|
paddingLeft: '18px',
|
|
margin: 0,
|
|
lineHeight: '1',
|
|
}}
|
|
>
|
|
{TermsAndConditions?.map((item) => (
|
|
<li style={{ textAlign: 'start' }}>
|
|
{item?.TermsandConditions}
|
|
</li>
|
|
))}
|
|
{/* <li>Please check the product before leaving the counter.</li> */}
|
|
</ol>
|
|
</div>
|
|
)}
|
|
|
|
{GlobaldummyData
|
|
? GlobalSignature && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'flex-end',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '70px', height: '40px' }}
|
|
src={
|
|
GlobalSignatureImages
|
|
? GlobalSignatureImages
|
|
: signature
|
|
}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)
|
|
: Signature == true && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
marginTop: '1rem',
|
|
paddingBottom: '1rem',
|
|
}}
|
|
>
|
|
<p
|
|
style={{
|
|
fontSize: '13px',
|
|
fontWeight: 'bold',
|
|
marginBottom: '6px',
|
|
}}
|
|
>
|
|
Signature
|
|
</p>
|
|
<img
|
|
style={{ width: '100px', height: '60px' }}
|
|
src={SignatureImg}
|
|
alt=""
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{PrintGreeting?.SettingValue === 'Y' && (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
gap: '0.5rem',
|
|
}}
|
|
>
|
|
<div style={{ fontSize: '13px', fontWeight: '600' }}>
|
|
Thank You Visit Again
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default DCPrintStyle11;
|