@bookmypuja-tech/bmp-pdf 0.4.25 → 0.4.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +100 -33
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -38,17 +38,31 @@ interface ITransactionItem {
|
|
|
38
38
|
date: string;
|
|
39
39
|
time: string;
|
|
40
40
|
invoiceNumber: string;
|
|
41
|
-
|
|
42
|
-
postalCharges
|
|
41
|
+
bookingAmount: number;
|
|
42
|
+
postalCharges?: number;
|
|
43
43
|
creditedAmount: number;
|
|
44
44
|
status?: string;
|
|
45
45
|
transactionId?: string;
|
|
46
46
|
}
|
|
47
|
+
interface IDayWiseTotals {
|
|
48
|
+
date: string;
|
|
49
|
+
dateDisplay: string;
|
|
50
|
+
pujaAmount: number;
|
|
51
|
+
postalCharges: number;
|
|
52
|
+
creditedAmount: number;
|
|
53
|
+
}
|
|
47
54
|
interface ITransactionReport {
|
|
48
55
|
startDate: Date;
|
|
49
56
|
endDate: Date;
|
|
50
57
|
templeName: string;
|
|
51
58
|
data: ITransactionItem[];
|
|
59
|
+
isDayWiseGrouped?: boolean;
|
|
60
|
+
dayWiseTotals?: IDayWiseTotals[];
|
|
61
|
+
summary?: {
|
|
62
|
+
totalBookingsAmount: number;
|
|
63
|
+
totalPostalCharges: number;
|
|
64
|
+
totalCreditedAmount: number;
|
|
65
|
+
};
|
|
52
66
|
}
|
|
53
67
|
|
|
54
68
|
interface IPrasadItem$3 {
|
|
@@ -59,11 +73,19 @@ interface IPrasadItem$3 {
|
|
|
59
73
|
amount: number;
|
|
60
74
|
date: Date;
|
|
61
75
|
}
|
|
76
|
+
interface IDayGroup$6 {
|
|
77
|
+
dateKey: string;
|
|
78
|
+
dateDisplay: string;
|
|
79
|
+
items: IPrasadItem$3[];
|
|
80
|
+
count: number;
|
|
81
|
+
}
|
|
62
82
|
interface IPrasadDelivery$1 {
|
|
63
83
|
startDate: Date;
|
|
64
84
|
endDate: Date;
|
|
65
85
|
templeName: string;
|
|
66
86
|
data: IPrasadItem$3[];
|
|
87
|
+
isDayWiseGrouped?: boolean;
|
|
88
|
+
dayGroups?: IDayGroup$6[];
|
|
67
89
|
}
|
|
68
90
|
|
|
69
91
|
interface IPrasadItem$2 {
|
|
@@ -73,6 +95,13 @@ interface IPrasadItem$2 {
|
|
|
73
95
|
prasadName: string;
|
|
74
96
|
quantity: number;
|
|
75
97
|
collectionMode: string;
|
|
98
|
+
date?: string;
|
|
99
|
+
}
|
|
100
|
+
interface IDayGroup$5 {
|
|
101
|
+
dateKey: string;
|
|
102
|
+
dateDisplay: string;
|
|
103
|
+
items: IPrasadItem$2[];
|
|
104
|
+
count: number;
|
|
76
105
|
}
|
|
77
106
|
interface IPrasadReport$1 {
|
|
78
107
|
startDate: Date;
|
|
@@ -80,23 +109,35 @@ interface IPrasadReport$1 {
|
|
|
80
109
|
templeName: string;
|
|
81
110
|
data: IPrasadItem$2[];
|
|
82
111
|
reportTiming?: IReportTimings;
|
|
112
|
+
isDayWiseGrouped?: boolean;
|
|
113
|
+
dayGroups?: IDayGroup$5[];
|
|
83
114
|
}
|
|
84
115
|
|
|
116
|
+
interface IBooking {
|
|
117
|
+
invoiceNumber: string;
|
|
118
|
+
devoteeName: string;
|
|
119
|
+
nakshatra: string;
|
|
120
|
+
quantity: string;
|
|
121
|
+
priestNote: string;
|
|
122
|
+
is_early_reminder?: boolean;
|
|
123
|
+
date?: string;
|
|
124
|
+
requires_coupon?: boolean;
|
|
125
|
+
phone_number?: string;
|
|
126
|
+
collectionMode?: string;
|
|
127
|
+
topping_name?: string;
|
|
128
|
+
}
|
|
129
|
+
interface IDayGroup$4 {
|
|
130
|
+
dateKey: string;
|
|
131
|
+
dateDisplay: string;
|
|
132
|
+
items: IBooking[];
|
|
133
|
+
count: number;
|
|
134
|
+
}
|
|
85
135
|
interface IPuja$3 {
|
|
86
136
|
name: string;
|
|
87
137
|
price: string;
|
|
88
|
-
bookings:
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
nakshatra: string;
|
|
92
|
-
quantity: string;
|
|
93
|
-
priestNote: string;
|
|
94
|
-
is_early_reminder?: boolean;
|
|
95
|
-
date?: string;
|
|
96
|
-
requires_coupon?: boolean;
|
|
97
|
-
phone_number?: string;
|
|
98
|
-
collectionMode?: string;
|
|
99
|
-
}[];
|
|
138
|
+
bookings: IBooking[];
|
|
139
|
+
dayGroups?: IDayGroup$4[];
|
|
140
|
+
totalBookings?: number;
|
|
100
141
|
}
|
|
101
142
|
interface IPujaList$1 {
|
|
102
143
|
startDate: Date;
|
|
@@ -104,6 +145,7 @@ interface IPujaList$1 {
|
|
|
104
145
|
templeName: string;
|
|
105
146
|
pujas: IPuja$3[];
|
|
106
147
|
reportTiming?: IReportTimings;
|
|
148
|
+
isDayWiseGrouped?: boolean;
|
|
107
149
|
}
|
|
108
150
|
|
|
109
151
|
interface ISummaryPuja {
|
|
@@ -129,6 +171,7 @@ interface IPostalItem$2 {
|
|
|
129
171
|
phone: string;
|
|
130
172
|
address: string;
|
|
131
173
|
qrContent: string;
|
|
174
|
+
deliveryMode?: string;
|
|
132
175
|
}
|
|
133
176
|
interface IPostalReportProps$1 {
|
|
134
177
|
startDate: Date;
|
|
@@ -169,6 +212,13 @@ interface ISettlementRow {
|
|
|
169
212
|
settlement_id: string;
|
|
170
213
|
date: string;
|
|
171
214
|
}
|
|
215
|
+
interface IDayGroup$3 {
|
|
216
|
+
dateKey: string;
|
|
217
|
+
dateDisplay: string;
|
|
218
|
+
items: ISettlementRow[];
|
|
219
|
+
count: number;
|
|
220
|
+
dayTotal: string;
|
|
221
|
+
}
|
|
172
222
|
interface ISettlementsReport {
|
|
173
223
|
startDate: Date;
|
|
174
224
|
endDate: Date;
|
|
@@ -177,6 +227,8 @@ interface ISettlementsReport {
|
|
|
177
227
|
settlements: ISettlementRow[];
|
|
178
228
|
totalCreditedAmount: string;
|
|
179
229
|
};
|
|
230
|
+
isDayWiseGrouped?: boolean;
|
|
231
|
+
dayGroups?: IDayGroup$3[];
|
|
180
232
|
}
|
|
181
233
|
|
|
182
234
|
interface IInvoiceData {
|
|
@@ -234,7 +286,6 @@ interface IInvoiceData {
|
|
|
234
286
|
}[];
|
|
235
287
|
};
|
|
236
288
|
qrContent?: string;
|
|
237
|
-
printedAt?: string[];
|
|
238
289
|
}
|
|
239
290
|
interface IInvoiceProps {
|
|
240
291
|
data: IInvoiceData;
|
|
@@ -277,11 +328,23 @@ interface IPujaCountData {
|
|
|
277
328
|
name: string;
|
|
278
329
|
quantity: number;
|
|
279
330
|
}
|
|
331
|
+
interface IDayGroup$2 {
|
|
332
|
+
dateKey: string;
|
|
333
|
+
dateDisplay: string;
|
|
334
|
+
items: IPujaCountData[];
|
|
335
|
+
dayTotal: number;
|
|
336
|
+
}
|
|
280
337
|
interface IPujaCountReportProps {
|
|
281
338
|
startDate: Date;
|
|
282
339
|
endDate: Date;
|
|
283
340
|
templeName: string;
|
|
284
341
|
data: IPujaCountData[];
|
|
342
|
+
isDayWiseGrouped?: boolean;
|
|
343
|
+
dayGroups?: IDayGroup$2[];
|
|
344
|
+
summary?: {
|
|
345
|
+
totalCount: number;
|
|
346
|
+
pujaCount: number;
|
|
347
|
+
};
|
|
285
348
|
}
|
|
286
349
|
|
|
287
350
|
interface IPuja$2 {
|
|
@@ -297,6 +360,7 @@ interface IPuja$2 {
|
|
|
297
360
|
date?: string;
|
|
298
361
|
requires_coupon?: boolean;
|
|
299
362
|
phone_number?: string;
|
|
363
|
+
topping_name?: string;
|
|
300
364
|
}[];
|
|
301
365
|
}
|
|
302
366
|
interface IPujaList {
|
|
@@ -313,6 +377,13 @@ interface IPrasadItem$1 {
|
|
|
313
377
|
prasadName: string;
|
|
314
378
|
quantity: number;
|
|
315
379
|
collectionMode: string;
|
|
380
|
+
date?: string;
|
|
381
|
+
}
|
|
382
|
+
interface IDayGroup$1 {
|
|
383
|
+
dateKey: string;
|
|
384
|
+
dateDisplay: string;
|
|
385
|
+
items: IPrasadItem$1[];
|
|
386
|
+
count: number;
|
|
316
387
|
}
|
|
317
388
|
interface IPrasadReport {
|
|
318
389
|
startDate: Date;
|
|
@@ -320,6 +391,8 @@ interface IPrasadReport {
|
|
|
320
391
|
templeName: string;
|
|
321
392
|
data: IPrasadItem$1[];
|
|
322
393
|
reportTiming?: IReportTimings;
|
|
394
|
+
isDayWiseGrouped?: boolean;
|
|
395
|
+
dayGroups?: IDayGroup$1[];
|
|
323
396
|
}
|
|
324
397
|
|
|
325
398
|
interface IPrasadItem {
|
|
@@ -332,11 +405,19 @@ interface IPrasadItem {
|
|
|
332
405
|
amount: number;
|
|
333
406
|
date: Date;
|
|
334
407
|
}
|
|
408
|
+
interface IDayGroup {
|
|
409
|
+
dateKey: string;
|
|
410
|
+
dateDisplay: string;
|
|
411
|
+
items: IPrasadItem[];
|
|
412
|
+
count: number;
|
|
413
|
+
}
|
|
335
414
|
interface IPrasadDelivery {
|
|
336
415
|
startDate: Date;
|
|
337
416
|
endDate: Date;
|
|
338
417
|
templeName: string;
|
|
339
418
|
data: IPrasadItem[];
|
|
419
|
+
isDayWiseGrouped?: boolean;
|
|
420
|
+
dayGroups?: IDayGroup[];
|
|
340
421
|
}
|
|
341
422
|
|
|
342
423
|
interface IPostalItem$1 {
|
|
@@ -362,6 +443,7 @@ interface IPostalItem {
|
|
|
362
443
|
pujaDetails: string;
|
|
363
444
|
phone: string;
|
|
364
445
|
address: string;
|
|
446
|
+
deliveryMode?: string;
|
|
365
447
|
}
|
|
366
448
|
interface IPostalReportProps {
|
|
367
449
|
startDate: Date;
|
|
@@ -420,22 +502,8 @@ interface ICustomReport110mmProps {
|
|
|
420
502
|
selectedPujaNames?: string[];
|
|
421
503
|
}
|
|
422
504
|
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
bookingDate: string;
|
|
426
|
-
platformFees: number;
|
|
427
|
-
platformFeesGST: number;
|
|
428
|
-
paymentMethod: string;
|
|
429
|
-
}
|
|
430
|
-
interface IInvoiceReconProps {
|
|
431
|
-
templeName: string;
|
|
432
|
-
startDate: Date;
|
|
433
|
-
endDate: Date;
|
|
434
|
-
items: IInvoiceReconItem[];
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
type IReportOptions = "kitchen" | "transaction" | "prasad-delivery" | "prasad" | "puja-detailed" | "puja-summary" | "combined-report" | "multi-temple-payment" | "settlements-report" | "invoice" | "postal-report" | "payment-settlement-report" | "invoice-breakup" | "puja-count" | "custom-report" | "invoice-recon";
|
|
438
|
-
type IReportSize = "A4" | "110mm";
|
|
505
|
+
type IReportOptions = "kitchen" | "transaction" | "prasad-delivery" | "prasad" | "puja-detailed" | "puja-summary" | "combined-report" | "multi-temple-payment" | "settlements-report" | "invoice" | "postal-report" | "payment-settlement-report" | "invoice-breakup" | "puja-count" | "custom-report";
|
|
506
|
+
type IReportSize = "A4" | "A5" | "110mm";
|
|
439
507
|
type ReportDataTypes = {
|
|
440
508
|
kitchen: KitchenReportProps;
|
|
441
509
|
transaction: ITransactionReport;
|
|
@@ -452,7 +520,6 @@ type ReportDataTypes = {
|
|
|
452
520
|
"invoice-breakup": InvoiceLevelReportProps;
|
|
453
521
|
"puja-count": IPujaCountReportProps;
|
|
454
522
|
"custom-report": ICustomReportProps | ICustomReport110mmProps;
|
|
455
|
-
"invoice-recon": IInvoiceReconProps;
|
|
456
523
|
};
|
|
457
524
|
declare class reportPrinter<T extends IReportOptions> {
|
|
458
525
|
option: T;
|
|
@@ -462,4 +529,4 @@ declare class reportPrinter<T extends IReportOptions> {
|
|
|
462
529
|
getBlob(data: ReportDataTypes[T]): Promise<Blob>;
|
|
463
530
|
}
|
|
464
531
|
|
|
465
|
-
export { A4Print, type CombinedReportData as CombinedReportData110mm, type ICustomReport110mmProps, type ICustomReportProps, type IInvoiceData, type IInvoiceProps, type
|
|
532
|
+
export { A4Print, type CombinedReportData as CombinedReportData110mm, type ICustomReport110mmProps, type ICustomReportProps, type IInvoiceData, type IInvoiceProps, type KitchenReportProps as IKitchenReport, type IMultiTemplePaymentReport, type IPostalReportProps$1 as IPostalReportProps, type IPostalReportProps as IPostalReportProps110mm, type IPrasadDelivery$1 as IPrasadDelivery, type IPrasadDelivery as IPrasadDelivery110mm, type IPrasadReport$1 as IPrasadReport, type IPrasadReport as IPrasadReport110mm, type IPujaCountData, type IPujaCountReportProps, type IPujaList as IPujaList110mm, type IPujaList$1 as IPujaReport, type ISettlementRow, type ISettlementsReport, type ISummaryPujaList as ISummaryPujaReport, type ITransactionReport, type InvoiceLevelData, type InvoiceLevelReportProps, type PaymentSettlementData, type PaymentSettlementProps, T2Inch, reportPrinter };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {Font,StyleSheet,Document,Page,Image,Text,View,pdf}from'@react-pdf/renderer';import n from'react';import {maxBy}from'lodash';import bo from'qrcode';var vt=Object.defineProperty;var Et=(o,i,d)=>i in o?vt(o,i,{enumerable:true,configurable:true,writable:true,value:d}):o[i]=d;var ze=(o,i,d)=>Et(o,typeof i!="symbol"?i+"":i,d);var te=o=>{typeof o=="string"&&(o=new Date(o));let i={day:"2-digit",month:"short",year:"numeric"};return o.toLocaleDateString("en-GB",i).replace(",","")};var be=(o,i=false)=>{if(!i){if(o>=1e7)return `\u20B9${(o/1e7).toFixed(2)}Cr`;if(o>=1e5)return `\u20B9${(o/1e5).toFixed(2)}L`}return o.toLocaleString("en-IN",{style:"currency",currency:"INR",maximumFractionDigits:o%1===0?0:2})};var oe="https://res.cloudinary.com/dweb0rpy4/image/upload/v1763375057/bmp-blacked_1_lbb2r8.png",Ce="https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375699/fonts_NotoSans-Regular_k3jucr.ttf",Pe="https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375737/fonts_NotoSans-Bold_ou3lxb.ttf",Ee="https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375699/fonts_NotoSans-Regular_k3jucr.ttf",je="https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375737/fonts_NotoSans-Bold_ou3lxb.ttf",We="https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375778/fonts_NotoSans-SemiBold_pgg9sg.ttf";var Le="https://res.cloudinary.com/dweb0rpy4/image/upload/v1763375090/bmp-full-logo_heqdsk.png",_e="https://res.cloudinary.com/dweb0rpy4/image/upload/v1763375618/paid-5025785_1280_1_sionuj.png",Be={morning:"Morning",evening:"Evening"};Font.register({family:"Roboto",fontWeight:"normal",src:Ce});Font.register({family:"Roboto",fontWeight:"bold",src:Pe});var qe=StyleSheet.create({page:{padding:30,fontFamily:"Roboto"},pujaTile:{padding:10,fontSize:9,border:"1px solid rgb(100,100,100)",borderRadius:5,width:"100%",display:"flex",flexDirection:"row"}}),qt=({data:o,dates:i})=>{let d=te(i[0])===te(i[1]);return n.createElement(Document,null,n.createElement(Page,{size:"A4",style:qe.page},n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),n.createElement(Text,{style:{fontSize:13,marginBottom:2}},"Puja List"),n.createElement(Text,{style:{fontSize:10,marginBottom:10}},"Date",":"," ",d?te(i[0]):`${te(i[0])} - ${te(i[1])}`),n.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"space-between",gap:8}},o?o.map((t,r)=>n.createElement(View,{wrap:false,key:r,style:qe.pujaTile},n.createElement(View,{style:{display:"flex",flexDirection:"row"}},n.createElement(Text,{style:{opacity:.6,marginRight:10}},"#",(r+1).toString().padStart(2,"0"))),n.createElement(View,{style:{flexGrow:1}},n.createElement(View,{style:{display:"flex",flexDirection:"row",marginBottom:3,gap:3}},n.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},t.participantName),n.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},"-"),n.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},t.participantNakshatra)),n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},n.createElement(Text,null,"Puja name : "),n.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},t.pujaName)),d?null:n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},n.createElement(Text,null,"Date: "),n.createElement(Text,{style:{fontWeight:"bold"}},te(t.date)))),n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10}}),t.priestNote!==""&&t.priestNote!==null&&t.priestNote!==void 0?n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginTop:3}},n.createElement(Text,null,"Priest Note: ",t.priestNote)):null),n.createElement(View,{style:{display:"flex",flexDirection:"column",alignItems:"flex-end"}},n.createElement(Text,{style:{fontWeight:"bold",fontSize:10}},"Rs ",t.amount),t.paymentStatus=="pending"?n.createElement(View,{style:{backgroundColor:"#000000",paddingVertical:3,paddingHorizontal:5,borderRadius:5,marginTop:3}},n.createElement(Text,{style:{color:"#ffffff",fontSize:8}},"Pending")):null))):null)))},$t=qt;Font.register({family:"Roboto",fontWeight:"normal",src:Ce});Font.register({family:"Roboto",fontWeight:"bold",src:Pe});var c=1,xe=25*c,Me=StyleSheet.create({page:{padding:10*c,fontFamily:"Roboto"},pujaTile:{paddingVertical:10*c,paddingHorizontal:10*c,fontSize:xe,border:`${5*c}px solid black`,borderRadius:5*c,width:"100%",display:"flex",flexDirection:"column"}}),Ut=({data:o,dates:i})=>{let d=te(i[0])===te(i[1]);return n.createElement(Document,null,n.createElement(Page,{dpi:200,size:[457*c],style:Me.page},n.createElement(Image,{fixed:true,style:{height:55*c,width:274*c,marginBottom:10*c,marginHorizontal:"auto"},src:oe}),n.createElement(Text,{style:{fontSize:25*c,marginBottom:5*c,marginHorizontal:"auto"}},"Puja List"),n.createElement(Text,{style:{fontSize:20*c,marginBottom:5*c,marginHorizontal:"auto",fontWeight:"bold"}},"Date",":"," ",d?te(i[0]):`${te(i[0])} - ${te(i[1])}`),n.createElement(Text,{style:{fontSize:17*c,marginBottom:20*c,marginHorizontal:"auto"}},"Printed at : ",new Date().toLocaleString()),n.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"space-between",gap:15*c}},o?o.map((t,r)=>n.createElement(View,{wrap:false,key:r,style:Me.pujaTile},n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginBottom:5*c}},n.createElement(Text,{style:{opacity:.6,marginRight:10*c}},"#",(r+1).toString().padStart(2,"0")),n.createElement(View,{style:{display:"flex",flexDirection:"row",alignItems:"flex-end",gap:10*c}},t.paymentStatus=="pending"?n.createElement(View,{style:{backgroundColor:"#000000",paddingVertical:3*c,paddingHorizontal:5*c,borderRadius:5*c,marginTop:3*c}},n.createElement(Text,{style:{color:"#ffffff",fontSize:xe}},"Pending")):null,n.createElement(Text,{style:{fontWeight:"bold",fontSize:xe}},"Rs ",t.amount))),n.createElement(View,{style:{flexGrow:1}},n.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",marginBottom:3*c,gap:3*c}},n.createElement(Text,{style:{fontSize:xe,fontWeight:"bold"}},t.participantName),n.createElement(Text,{style:{fontSize:xe,fontWeight:"bold"}},"-"),n.createElement(Text,{style:{fontSize:xe,fontWeight:"bold"}},t.participantNakshatra)),n.createElement(View,{style:{display:"flex",flexDirection:"column",alignContent:"flex-end",gap:10*c}},n.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",alignContent:"flex-end"}},n.createElement(Text,null,"Puja name : "),n.createElement(Text,{style:{fontSize:xe,fontWeight:"bold"}},t.pujaName)),d?null:n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},n.createElement(Text,null,"Date: "),n.createElement(Text,{style:{fontWeight:"bold"}},te(t.date)))),n.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10*c}}),t.priestNote!==""&&t.priestNote!==null&&t.priestNote!==void 0?n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginTop:3*c}},n.createElement(Text,null,"Priest Note: ",t.priestNote)):null))):null)))},Kt=Ut;var Jt={Latin:/[A-Za-z\u00AA\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02B8\u02E0-\u02E4\u1D00-\u1D25\u1D2C-\u1D5C\u1D62-\u1D65\u1D6B-\u1D77\u1D79-\u1DBE\u1E00-\u1EFF\u2071\u207F\u2090-\u209C\u212A\u212B\u2132\u214E\u2160-\u2188\u2C60-\u2C7F\uA722-\uA787\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA7FF\uAB30-\uAB5A\uAB5C-\uAB64\uAB66-\uAB69\uFB00-\uFB06\uFF21-\uFF3A\uFF41-z]|\uD801[\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]/g,SC:/[\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DBF\u4E00-\u9FFF\uF900-\uFA6D\uFA70-\uFAD9]|\uD81B[\uDFE2\uDFE3\uDFF0\uDFF1]|[\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF]/g,Cyrillic:/[\u0400-\u0484\u0487-\u052F\u1C80-\u1C88\u1D2B\u1D78\u2DE0-\u2DFF\uA640-\uA69F\uFE2E\uFE2F]|\uD838[\uDC30-\uDC6D\uDC8F]/g,Arabic:/[\u0600-\u0604\u0606-\u060B\u060D-\u061A\u061C-\u061E\u0620-\u063F\u0641-\u064A\u0656-\u066F\u0671-\u06DC\u06DE-\u06FF\u0750-\u077F\u0870-\u088E\u0890\u0891\u0898-\u08E1\u08E3-\u08FF\uFB50-\uFBC2\uFBD3-\uFD3D\uFD40-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFDFF\uFE70-\uFE74\uFE76-\uFEFC]|\uD803[\uDE60-\uDE7E\uDEFD-\uDEFF]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB\uDEF0\uDEF1]/g,Bengali:/[\u0980-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE]/g,Devanagari:/[\u0900-\u0950\u0955-\u0963\u0966-\u097F\uA8E0-\uA8FF]|\uD806[\uDF00-\uDF09]/g,JP:/[\u3041-\u3096\u309D-\u309F]|\uD82C[\uDC01-\uDD1F\uDD32\uDD50-\uDD52]|\uD83C\uDE00|[\u30A1-\u30FA\u30FD-\u30FF\u31F0-\u31FF\u32D0-\u32FE\u3300-\u3357\uFF66-\uFF6F\uFF71-\uFF9D]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00\uDD20-\uDD22\uDD55\uDD64-\uDD67]|[\u3400-\u4DB5\u4E00-\u9FAF]/g,KR:/[\u1100-\u11FF\u302E\u302F\u3131-\u318E\u3200-\u321E\u3260-\u327E\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uFFA0-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/g,Tamil:/[\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA]|\uD807[\uDFC0-\uDFF1\uDFFF]/g,Kannada:/[\u0C80-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1-\u0CF3]/g,Myanmar:/[\u1000-\u109F\uA9E0-\uA9FE\uAA60-\uAA7F]/g,Ethiopic:/[\u1200-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]/g,Thai:/[\u0E01-\u0E3A\u0E40-\u0E5B]/g,Greek:/[\u0370-\u0373\u0375-\u0377\u037A-\u037D\u037F\u0384\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03E1\u03F0-\u03FF\u1D26-\u1D2A\u1D5D-\u1D61\u1D66-\u1D6A\u1DBF\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u2126\uAB65]|\uD800[\uDD40-\uDD8E\uDDA0]|\uD834[\uDE00-\uDE45]/g,Khmer:/[\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u19E0-\u19FF]/g,Armenian:/[\u0531-\u0556\u0559-\u058A\u058D-\u058F\uFB13-\uFB17]/g,Hebrew:/[\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFB4F]/g,Georgian:/[\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u10FF\u1C90-\u1CBA\u1CBD-\u1CBF\u2D00-\u2D25\u2D27\u2D2D]/g,Lao:/[\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECE\u0ED0-\u0ED9\u0EDC-\u0EDF]/g,"Canadian Aboriginal":/[\u1400-\u167F\u18B0-\u18F5]|\uD806[\uDEB0-\uDEBF]/g,Sinhala:/[\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4]|\uD804[\uDDE1-\uDDF4]/g,"Ol Chiki":/[\u1C50-\u1C7F]/g,Tibetan:/[\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FD4\u0FD9\u0FDA]/g,Tifinagh:/[\u2D30-\u2D67\u2D6F\u2D70\u2D7F]/g,Yi:/[\uA000-\uA48C\uA490-\uA4C6]/g,Syriac:/[\u0700-\u070D\u070F-\u074A\u074D-\u074F\u0860-\u086A]/g,Thaana:/[\u0780-\u07B1]/g,Vai:/[\uA500-\uA62B]/g,Cherokee:/[\u13A0-\u13F5\u13F8-\u13FD\uAB70-\uABBF]/g,"Tai Tham":/[\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD]/g,"Tai Viet":/[\uAA80-\uAAC2\uAADB-\uAADF]/g,Javanese:/[\uA980-\uA9CD\uA9D0-\uA9D9\uA9DE\uA9DF]/g,Telugu:/[\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C7F]/g,Gujarati:/[\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF]/g,Malayalam:/[\u0D00-\u0D03\u0D05-\u0D39\u0D3A\u0D3B\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D70-\u0D7F]/g,Gurmukhi:/[\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76]/g},Yt=({style:o={},children:i})=>{let d=m=>{let l=maxBy(Object.entries(Jt),([g,h])=>{let $=m.match(h);return $?$.length:0});return l?l[0]:"Latin"},t=m=>[/\b\d{2}\/\d{2}\/\d{4}\b/,/\b\d{2}\s\w{3}\s\d{4}\b/].some(g=>g.test(m));function r(m){return m.replace(/[\uFF01-\uFF5E]/g,l=>`${String.fromCharCode(l.charCodeAt(0)-65248)} `)}let f=m=>{let l=[],g=null,h="";for(let $ of m){$=r($);let pe=d($);pe!==g?(h&&l.push({text:h,script:g}),g=pe,h=$):h+=$;}return h&&l.push({text:h,script:g}),l},x=[];i&&typeof i=="string"&&!Array.isArray(i)&&!t(i)&&f(i).forEach((l,g)=>{let h=l.script==="Latin"||!l.script?"Noto Sans":`Noto Sans ${l.script}`;x.push(n.createElement(Text,{key:g,style:{fontFamily:h}},l.text));});let F=[],a={fontFamily:"Noto Sans"};return Array.isArray(o)?F=[...o,a]:o&&Object.keys(o).length>0?F=[o,a]:F=[a],n.createElement(Text,{style:F},x?.length?x:i)},e=Yt;var Xt=({startDate:o,endDate:i,reportTiming:d,templeName:t,reportName:r})=>n.createElement(n.Fragment,null,n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),i?n.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},"Dates: ",o.toDateString()," - ",i.toDateString()):n.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},"Date: ",o.toDateString()),d&&Object.keys(Be).includes(d)?n.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},Be[d]," Report"):null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold"}},r),n.createElement(e,{style:{fontSize:12}},`${t}`)),P=Xt;var to=({startDate:o,endDate:i,templeName:d,data:t,reportTiming:r})=>n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,templeName:d,reportTiming:r,reportName:"Temple Prasad (Kitchen) Report"}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"60%"}},n.createElement(e,null,"Prasad Name")),n.createElement(View,{style:{padding:6,borderRight:"none",width:"20%"}},n.createElement(e,null,"Quantity"))),t.map((f,x)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(e,null,x+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"60%"}},n.createElement(e,null,f.name)),n.createElement(View,{style:{padding:6,borderRight:"none",width:"20%"}},n.createElement(e,null,f.quantity))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),Ue=to;var ro=({startDate:o,endDate:i,templeName:d,data:t})=>{let r=t.reduce((a,m)=>m.status==="cancelled"?a:a+m.pujaAmount,0),f=t.reduce((a,m)=>m.status==="cancelled"?a:a+m.creditedAmount,0),x=t.reduce((a,m)=>m.status==="cancelled"?a:a+m.postalCharges,0),F=Object.entries(t.reduce((a,m)=>{let l=m.date;return a[l]||(a[l]={date:l,totalPujaAmount:0,totalPostalCharges:0,totalCreditedAmount:0}),m.status==="cancelled"||(a[l].totalPujaAmount+=m.pujaAmount,a[l].totalPostalCharges+=m.postalCharges,a[l].totalCreditedAmount+=m.creditedAmount),a},{})).map(([a,m])=>m).sort((a,m)=>a.date.localeCompare(m.date));return console.log("Day Wise Totals: ",F),n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Transactions Report",templeName:d}),t.length>0?n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:10,marginTop:10}},"Total Bookings Amount: ",r.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),n.createElement(e,{style:{fontSize:10}},"Total Postal Charges Collected: ",x.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),n.createElement(e,{style:{fontSize:10}},"Total Amount Credited to Temple: ",f.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))):null,o&&i&&F.length>1?n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:15,marginBottom:5}},"Day Wise Totals"),n.createElement(View,{style:{display:"flex",flexDirection:"column"}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,"Date")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"26.66%"}},n.createElement(e,null,"Puja Amount")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"26.66%"}},n.createElement(e,null,"Postal Charges")),n.createElement(View,{style:{padding:6,width:"26.66%"}},n.createElement(e,null,"Credited Amount"))),F.map((a,m)=>n.createElement(View,{key:m,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,a.date)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"26.66%"}},n.createElement(e,null,a.totalPujaAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"26.66%"}},n.createElement(e,null,a.totalPostalCharges.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),n.createElement(View,{style:{padding:6,width:"26.66%"}},n.createElement(e,null,a.totalCreditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))))))):null,t.length>0?n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:15,marginBottom:5}},"All Bookings"),n.createElement(View,{style:{display:"flex",flexDirection:"column"}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"8%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"19%"}},n.createElement(e,null,"Date")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"14%"}},n.createElement(e,null,"Invoice")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},n.createElement(e,null,"Puja Amt")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"12%"}},n.createElement(e,null,"Delivery")),n.createElement(View,{style:{padding:6,width:"15%",borderRight:"1px solid black"}},n.createElement(e,null,"Credited Amt")),n.createElement(View,{style:{padding:6,width:"17%"}},n.createElement(e,null,"Transaction ID"))),t.map((a,m)=>n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"8%"}},n.createElement(e,null,m+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"19%"}},n.createElement(e,{style:{fontSize:8}},a.date," ",a.time)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"14%"}},n.createElement(e,{style:{fontSize:8}},a.invoiceNumber)),a.status=="cancelled"?n.createElement(n.Fragment,null,n.createElement(View,{style:{padding:6,width:"50%"}},n.createElement(e,{style:{textAlign:"center"}},"CANCELLED"))):n.createElement(n.Fragment,null,n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},n.createElement(e,null,a.pujaAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"12%"}},n.createElement(e,null,a.postalCharges.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),n.createElement(View,{style:{padding:6,width:"15%",borderRight:"1px solid black"}},n.createElement(e,null,a.creditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),n.createElement(View,{style:{padding:6,width:"15%"}},n.createElement(e,null,a.transactionId))))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))))},Ke=ro;var so=({startDate:o,endDate:i,templeName:d,data:t})=>(t=t.map(r=>{let f="";try{let x=JSON.parse(r.address);f=`${x.address}, ${x.locality}, ${x.state} - ${x.pincode}`;}catch(x){console.error("Error parsing address:",x),f=r.address;}return {...r,address:f}}),n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Prasad Delivery Address",templeName:d}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,"Date")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},n.createElement(e,null,"Invoice")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"18%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},n.createElement(e,null,"Address")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,"Puja Name")),n.createElement(View,{style:{padding:6,width:"15%"}},n.createElement(e,null,"Amount"))),t.map((r,f)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,new Date(r.date).toLocaleDateString("en-GB",{day:"2-digit",month:"2-digit",year:"2-digit"}))),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},n.createElement(e,null,r.invoiceNumber)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"18%"}},n.createElement(e,null,r.devoteeName)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},n.createElement(e,null,r.address)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,r.pujaName)),n.createElement(View,{style:{padding:6,width:"15%"}},n.createElement(e,null,r.amount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),Qe=so;var mo=({startDate:o,endDate:i,templeName:d,data:t,reportTiming:r})=>{t.sort((x,F)=>x.invoiceNumber.localeCompare(F.invoiceNumber));return n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Prasad Report",templeName:d,reportTiming:r}),n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},n.createElement(e,{style:{fontSize:8}},"C = Collect | D = Distribute | P = Postal")),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,"Invoice Number")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"23%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},n.createElement(e,null,"Prasad Name")),n.createElement(View,{style:{padding:6,width:"10%",borderRight:"1px solid black"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,width:"7%"}},n.createElement(e,null,"Mode"))),t.map((x,F)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,F+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,x.invoiceNumber)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"23%",fontSize:9,flexWrap:"wrap"}},n.createElement(e,null,x.devoteeName)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%",fontSize:9,flexWrap:"wrap"}},n.createElement(e,null,x.pujaName," - ",x.prasadName)),n.createElement(View,{style:{padding:6,width:"10%",borderRight:"1px solid black"}},n.createElement(e,null,x.quantity)),n.createElement(View,{style:{padding:6,width:"7%"}},n.createElement(e,null,x.collectionMode))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},Je=mo;var go=({startDate:o,endDate:i,templeName:d,pujas:t,reportTiming:r})=>{let f=0,x=0,F=t.some(a=>a.bookings.some(m=>m.requires_coupon));return !t||t.length===0?n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Puja List",templeName:d,reportTiming:r}),n.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range"))):n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:r,reportName:"",templeName:""}),n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},n.createElement(e,{style:{fontSize:8}},"C = Collect | D = Distribute | P = Postal")),t.some(a=>a.bookings.some(m=>m.is_early_reminder))&&n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),n.createElement(View,{style:{marginTop:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},n.createElement(e,null,"Puja Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},n.createElement(e,null,"Mode")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Date"))))),t.some(a=>a.bookings.some(m=>m.is_early_reminder&&!m.requires_coupon))?t.flatMap((a,m)=>a.bookings.filter(l=>l.is_early_reminder&&!l.requires_coupon).map((l,g)=>(x++,n.createElement(View,{key:`${m}-${g}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,x)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"53%"}},n.createElement(e,null,a.name)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,l.quantity)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"7%"}},n.createElement(e,null,l.collectionMode||"")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},n.createElement(e,null,l.date?new Date(l.date).toDateString():"")))))):null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Puja List"),n.createElement(e,{style:{fontSize:12}},`${d}`),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},t.map((a,m)=>a.bookings.every(l=>l.is_early_reminder||l.requires_coupon)?null:(f=0,n.createElement(View,{key:m,style:{marginBottom:25}},n.createElement(View,null,n.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${a.name} - ${a.bookings.length}`)),n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Invoice No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},n.createElement(e,null,"Nakshatra")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"7%"}},n.createElement(e,null,"Mode"))),a.bookings.map((l,g)=>l.is_early_reminder||l.requires_coupon?null:(f++,n.createElement(View,{key:g,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,f)),n.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},n.createElement(View,{style:{display:"flex",flexDirection:"row"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${20*1.11111}%`}},n.createElement(e,null,l.invoiceNumber)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${30*1.11111}%`}},n.createElement(e,null,l.devoteeName)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${23*1.11111}%`}},n.createElement(e,null,l.nakshatra)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${10*1.11111}%`}},n.createElement(e,null,l.quantity)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${7*1.11111}%`}},n.createElement(e,null,l.collectionMode||""))),l.priestNote&&n.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},n.createElement(e,null,l.priestNote))))))))))),F?n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let a=t.flatMap(l=>l.bookings.filter(g=>g.requires_coupon).map(g=>({...g,pujaName:l.name}))),m={};for(let l of a)m[l.invoiceNumber]||(m[l.invoiceNumber]=[]),m[l.invoiceNumber].push(l);return Object.entries(m).map(([l,g],h)=>{let $=g,pe=$[0];return n.createElement(View,{key:l,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black",position:"relative"},wrap:false},n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},n.createElement(e,{style:{fontWeight:"semibold"}},l),n.createElement(e,null,pe.date?new Date(pe.date).toDateString():o.toDateString())),n.createElement(e,null,pe.phone_number)),n.createElement(View,{style:{height:15,width:"100%"}}),$.map((me,ge)=>n.createElement(View,{key:ge,style:{display:"flex",flexDirection:"row",marginTop:25}},n.createElement(e,null,`${me.devoteeName} ----- ${me.nakshatra} ----- ${me.pujaName}`))),n.createElement(View,null,n.createElement(e,{style:{textAlign:"center",marginTop:10,fontSize:10,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},Ze=go;var xo=({templeName:o,startDate:i,endDate:d,pujas:t,reportTiming:r})=>{let f=t.sort((x,F)=>{let a=x.nakshatras.length;return F.nakshatras.length-a});return n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:i,endDate:d,reportTiming:r,reportName:"Puja Summary",templeName:o}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},f.map((x,F)=>n.createElement(n.Fragment,null,n.createElement(View,{style:{marginBottom:25}},n.createElement(View,null,n.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${x.name} - ${x.totalCount}`)),n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},n.createElement(e,null,"Nakshatra")),n.createElement(View,{style:{padding:6,fontSize:10,width:"20%",fontWeight:"semibold"}},n.createElement(e,null,"Quantity"))),x.nakshatras.map((a,m)=>n.createElement(n.Fragment,null,n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,m+1)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"60%"}},n.createElement(e,null,a.name)),n.createElement(View,{style:{padding:6,fontSize:10,width:"20%"}},n.createElement(e,null,a.count))))))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},Xe=xo;var wo=({children:o,splitat:i})=>{if(!o||typeof o!="string")return null;let d="";return i=="words"&&(d=" "),n.createElement(n.Fragment,null,n.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap"}},o.split(d).map((t,r)=>n.createElement(n.Fragment,null,n.createElement(e,{key:r},t,i=="words"?" ":"")))))},K=wo;var Do=({startDate:o,endDate:i,templeName:d,pujaData:t,prasadData:r,deliveryData:f,reportTiming:x})=>{f=f.map(l=>{let g="";try{let h=JSON.parse(l.address);g=`${h.address}, ${h.locality}, ${h.state} - ${h.pincode}`;}catch(h){console.error("Error parsing address:",h),g=l.address;}return {...l,address:g}});let F=0,a=0,m=t.some(l=>l.bookings.some(g=>g.requires_coupon));return t.length==0&&r.length==0&&f.length==0?n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:x,reportName:"Combined Report",templeName:d}),n.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range"))):n.createElement(n.Fragment,null,n.createElement(Document,null,t.length>0&&n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:x,reportName:"",templeName:""}),t.some(l=>l.bookings.some(g=>g.is_early_reminder))&&n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),n.createElement(View,{style:{marginTop:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},n.createElement(e,null,"Puja Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Date"))))),t.some(l=>l.bookings.some(g=>g.is_early_reminder&&!g.requires_coupon))?t.flatMap((l,g)=>l.bookings.filter(h=>h.is_early_reminder&&!h.requires_coupon).map((h,$)=>(a++,n.createElement(View,{wrap:false,key:`${g}-${$}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,a)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"60%"}},n.createElement(e,null,l.name)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,h.quantity)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},n.createElement(e,null,h.date?new Date(h.date).toDateString():"")))))):null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Puja List"),n.createElement(e,{style:{fontSize:12}},`${d}`),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},t.map((l,g)=>l.bookings.every(h=>h.is_early_reminder||h.requires_coupon)?null:(F=0,n.createElement(n.Fragment,null,n.createElement(View,{style:{marginBottom:25}},n.createElement(View,null,n.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${l.name} - ${l.bookings.length}`)),n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Invoice No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"35%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"25%"}},n.createElement(e,null,"Nakshatra")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty"))),l.bookings.map((h,$)=>h.is_early_reminder||h.requires_coupon?null:(F++,n.createElement(n.Fragment,null,n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,F)),n.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},n.createElement(View,{style:{display:"flex",flexDirection:"row"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${20*1.11111}%`}},n.createElement(e,null,h.invoiceNumber)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${35*1.11111}%`}},n.createElement(e,null,h.devoteeName)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${25*1.11111}%`}},n.createElement(e,null,h.nakshatra)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${10*1.11111}%`}},n.createElement(e,null,h.quantity))),h.priestNote&&n.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},n.createElement(e,null,h.priestNote))))))))))))),t.length>0&&m&&n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let l=t.flatMap(h=>h.bookings.filter($=>$.requires_coupon).map($=>({...$,pujaName:h.name}))),g={};for(let h of l)g[h.invoiceNumber]||(g[h.invoiceNumber]=[]),g[h.invoiceNumber].push(h);return Object.entries(g).map(([h,$],pe)=>{let me=$,ge=me[0];return n.createElement(View,{key:h,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black"},wrap:false},n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},n.createElement(e,{style:{fontWeight:"semibold"}},h),n.createElement(e,null,ge.date?new Date(ge.date).toDateString():o.toDateString())),n.createElement(e,null,ge.phone_number)),n.createElement(View,{style:{height:15,width:"100%"}}),me.map((Ve,ct)=>n.createElement(View,{key:ct,style:{display:"flex",flexDirection:"row",marginTop:25}},n.createElement(e,null,`${Ve.devoteeName} ----- ${Ve.nakshatra} ----- ${Ve.pujaName}`))))})})())),r.length>0&&n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:x,reportName:"Prasad Report",templeName:d}),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,"Invoice Number")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},n.createElement(e,null,"Prasad Name")),n.createElement(View,{style:{padding:6,width:"10%"}},n.createElement(e,null,"Qty"))),r.map((l,g)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,g+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},n.createElement(e,null,l.invoiceNumber)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},n.createElement(e,null,l.devoteeName)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},n.createElement(e,null,l.prasadName)),n.createElement(View,{style:{padding:6,width:"10%"}},n.createElement(e,null,l.quantity)))))),f.length>0&&n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:x,reportName:"Prasad Delivery Postal Report",templeName:d}),n.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20,width:"100%",gap:20,flexWrap:"wrap"}},f&&f.map(l=>{let g=bo.toDataURL(l.qrContent);return n.createElement(View,{wrap:false,key:l.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:6}},n.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:5}},n.createElement(View,null,n.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},l.name),n.createElement(View,{style:{fontSize:10}},n.createElement(K,{splitat:"words"},l.address)),n.createElement(e,{style:{fontSize:10}},l.phone)),l.qrContent&&g?n.createElement(View,{style:{flexShrink:0,width:60,maxWidth:60,display:"flex",flexDirection:"column",alignItems:"center"}},n.createElement(Image,{src:g,style:{width:50,height:50,minWidth:50,maxWidth:50}}),n.createElement(e,{style:{fontSize:7}},"BookMyPuja")):null),n.createElement(View,{style:{borderTop:"1px solid black",marginTop:5,paddingTop:3,borderStyle:"dotted"}}),n.createElement(e,{style:{fontSize:9,marginTop:3}},"Note: ",l.pujaDetails))})))))},tt=Do;var Vo=({startDate:o,endDate:i,data:d})=>n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Temple Payment Report",templeName:""}),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,"S.No.")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"55%"}},n.createElement(e,null,"Temple Name")),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},n.createElement(e,null,"Bookings")),n.createElement(View,{style:{padding:6,width:"20%"}},n.createElement(e,null,"Revenue"))),d?.map((t,r)=>n.createElement(View,{key:r,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,r+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"55%"}},n.createElement(e,null,t.name)),n.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},n.createElement(e,null,t.bookings)),n.createElement(View,{style:{padding:6,width:"20%"}},n.createElement(e,null,"\u20B9",t.revenue))))))),ot=Vo;var Co=({startDate:o,endDate:i,templeName:d,data:t})=>n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Settlements Report",templeName:d}),n.createElement(e,{style:{fontSize:10,marginTop:10}},"Total Credited Amount: ",t.totalCreditedAmount),t.settlements.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,"Date")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,"Settlement")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(e,null,"UTR")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"25%"}},n.createElement(e,null,"Invoice")),n.createElement(View,{style:{padding:6,width:"20%"}},n.createElement(e,null,"Settlement ID"))),t.settlements?.map((r,f)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,f+1)),n.createElement(View,{style:{padding:6,width:"15%",borderRight:"1px solid #000"}},n.createElement(e,null,r.date)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,r.settlement_amount)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%",fontSize:9}},n.createElement(e,null,r.utr.split("").map((x,F)=>n.createElement(e,{key:F},x)))),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"25%",fontSize:9}},n.createElement(View,{style:{display:"flex",flexDirection:"column"}},r.invoices.map((x,F)=>n.createElement(e,{key:F},x.number," (",x.amount,")")))),n.createElement(View,{style:{padding:6,width:"20%"}},n.createElement(e,null,r.settlement_id))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))),it=Co;var No=({data:o})=>n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(View,{style:{display:"flex",flexDirection:"row",width:"100%"}},n.createElement(View,{style:{backgroundColor:"#FFA823",width:20,height:"100%"}}),n.createElement(View,{style:{marginLeft:15,marginTop:10,marginBottom:0,flex:1}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold"}},o.templeName),n.createElement(e,{style:{fontSize:10}},o.templeAddress),n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:5,marginTop:10,alignItems:"center"}},n.createElement(e,{style:{fontSize:10,marginTop:-5}},"Powered by"),n.createElement(Image,{style:{height:25,width:95,objectFit:"contain"},src:Le}))),o.qrContent?n.createElement(View,{style:{width:85}},n.createElement(Image,{style:{height:70,width:70,marginBottom:5,objectFit:"contain",position:"absolute",right:"0",bottom:"0"},src:o.qrContent})):null),n.createElement(View,{style:{display:"flex",flexDirection:"column",alignItems:"center",marginTop:20,position:"relative"}},o.status==="confirmed"?n.createElement(Image,{style:{height:85,width:85,marginBottom:5,objectFit:"contain",position:"absolute",right:"0",top:"0"},src:_e}):null,n.createElement(e,{style:{fontSize:12,marginTop:5,fontWeight:"semibold"}},"INVOICE #",o.invoiceNumber),n.createElement(e,{style:{fontSize:10,marginTop:2}},"Status: ",o.status=="confirmed"?"PAID":"PENDING")),n.createElement(View,{style:{marginTop:10}},n.createElement(e,{style:{fontSize:11}},"Bill to:"),n.createElement(e,{style:{fontSize:11}},o.devoteeDetails.name),o.devoteeDetails.phone?n.createElement(e,{style:{fontSize:11}},o.devoteeDetails.phone):null,n.createElement(e,{style:{fontSize:11}},o.bookingDate)),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:10,fontWeight:"semibold"}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"50%"}},n.createElement(e,null,"Item Description")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},n.createElement(e,null,"Price")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},n.createElement(e,null,"Quantity")),n.createElement(View,{style:{padding:6,width:"20%",textAlign:"center"}},n.createElement(e,null,"Total"))),o.items.map((i,d)=>n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"50%"}},i.pujaName?n.createElement(e,{style:{fontSize:11}},i.pujaName):null,i.devoteesName?n.createElement(e,{style:{fontSize:9,color:"#333333"}},i.devoteesName):null,i.pujaDate?n.createElement(e,{style:{fontSize:9,color:"#333333"}},i.pujaDate," ",i.timing?`- ${i.timing}`:null):null,i.repeatEndDate&&i.repeatStartDate?n.createElement(e,{style:{fontSize:9,color:"#333333"}},i.repeatStartDate," to ",i.repeatEndDate," ",i.timing?`- ${i.timing}`:null):null),n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},n.createElement(e,{style:{}},i.basePujPrice)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},n.createElement(e,{style:{}},`${i.quantity?i.quantity:""}${i.repeatCount?` x ${i.repeatCount}`:""}`)),n.createElement(View,{style:{padding:6,width:"20%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},n.createElement(e,{style:{}},i.totalPrice))))),n.createElement(View,{style:{display:"flex",flexDirection:"row",marginVertical:20,marginHorizontal:20}},n.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",fontSize:11}},n.createElement(e,{style:{fontWeight:"bold"}},"Payment Method:"),n.createElement(e,null,o.paymentMethod)),n.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"flex-end"}},n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},n.createElement(View,{style:{width:"50%",textAlign:"right"}},n.createElement(e,null,"Subtotal: ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.subTotal))),o.postalCharges?n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},n.createElement(View,{style:{width:"70%",textAlign:"right"}},n.createElement(e,null,"Postal Charges: ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.postalCharges))):null,n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},n.createElement(View,{style:{width:"70%",textAlign:"right"}},n.createElement(e,null,"Payment Gateway Charges: ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.paymentGatewayCharges))),n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},n.createElement(View,{style:{width:"70%",textAlign:"right"}},n.createElement(e,null,"Platform Charges: ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.platformCharges))),n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},n.createElement(View,{style:{width:"70%",textAlign:"right"}},n.createElement(e,null,"GST (18%): ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.gst))),n.createElement(View,{style:{width:"60%",height:1,backgroundColor:"#757575",marginVertical:5}}),n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10,fontWeight:"bold"}},n.createElement(View,{style:{width:"70%",textAlign:"right"}},n.createElement(e,null,"Total: ")),n.createElement(View,{style:{width:"30%",textAlign:"right"}},n.createElement(e,null,o.totalAmount))))),o.prasadCollectionMode?n.createElement(View,{style:{marginBottom:5}},n.createElement(e,{style:{fontSize:11,marginTop:5}},"Prasad Collection Mode: ",o.prasadCollectionMode)):null,o.devoteeDetails.address?n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:11,maxWidth:400,marginBottom:20}},"Address: ",o.devoteeDetails.address)):null,o.prasads&&(o.prasads.morning.length>0||o.prasads.afternoon.length>0||o.prasads.evening.length>0)?n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginBottom:30}},n.createElement(View,{style:{backgroundColor:"#FF266F",padding:5}},n.createElement(e,{style:{fontSize:10,fontWeight:"bold",color:"white"}},"Prasadsam Details")),o.prasads.morning.length>0?n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},n.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Morning:"),o.prasads.morning.map((i,d)=>n.createElement(e,{key:d,style:{fontSize:10}},d+1,". ",i.name," (",i.timings,")"))):null,o.prasads.afternoon.length>0?n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},n.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Afternoon:"),o.prasads.afternoon.map((i,d)=>n.createElement(e,{key:d,style:{fontSize:10}},d+1,". ",i.name," (",i.timings,")"))):null,o.prasads.evening.length>0?n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},n.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Evening:"),o.prasads.evening.map((i,d)=>n.createElement(e,{key:d,style:{fontSize:10}},d+1,". ",i.name," (",i.timings,")"))):null):null,o.instructions.length>0?n.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginHorizontal:20,fontSize:8,border:"1px solid #757575"}},n.createElement(View,{style:{backgroundColor:"#FFA823",paddingHorizontal:10,paddingVertical:5}},n.createElement(e,null,"IMPORTANT INSTRUCTIONS:")),n.createElement(View,{style:{display:"flex",flexDirection:"column",gap:5,marginVertical:10,paddingHorizontal:10}},o.instructions.map((i,d)=>n.createElement(e,{key:d,style:{fontSize:8}},d+1,") ",i.instruction)))):null,n.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20}},n.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},"Terms and Conditions:"),n.createElement(e,{style:{fontSize:8,marginLeft:5}},"https://www.bookmypuja.app/terms-and-condition")))),rt=No;var vo=({startDate:o,endDate:i,templeName:d,data:t})=>n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Prasad Delivery Postal Report",templeName:d}),t&&t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20,width:"100%",gap:20,flexWrap:"wrap"}},t.map(r=>{let f=r.qrContent,x=bo.toDataURL(f);return n.createElement(View,{wrap:false,key:r.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:6}},n.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:5}},n.createElement(View,{style:{width:240}},n.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},r.name),n.createElement(View,{style:{fontSize:10}},n.createElement(e,{style:{fontSize:10}},r.address)),n.createElement(e,{style:{fontSize:10}},r.phone)),r.qrContent&&x?n.createElement(View,{style:{flexShrink:0,width:60,maxWidth:60,display:"flex",flexDirection:"column",alignItems:"center"}},n.createElement(Image,{src:x,style:{width:50,height:50,minWidth:50,maxWidth:50}}),n.createElement(e,{style:{fontSize:7}},"BookMyPuja")):null),n.createElement(View,{style:{borderTop:"1px solid black",marginTop:5,paddingTop:3,borderStyle:"dotted"}}),n.createElement(e,{style:{fontSize:9,marginTop:3}},"Note: ",r.pujaDetails))})):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))),nt=vo;var Wo=({startDate:o,endDate:i,templeName:d,data:t})=>n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Payment Settlement Report",templeName:d}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,"Invoice No")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,"Amount")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(e,null,"Payment Date")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(e,null,"Settlement Date")),n.createElement(View,{style:{padding:6,borderRight:"none",width:"25%"}},n.createElement(e,null,"Bank UTR No"))),t.map((r,f)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,f+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(K,null,r.invoiceNo)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(K,null,r.amount)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(K,null,r.paymentDate)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},n.createElement(K,null,r.settlementDate)),n.createElement(View,{style:{padding:6,borderRight:"none",width:"25%"}},n.createElement(K,null,r.bankUtrNo))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),lt=Wo;var qo=({startDate:o,endDate:i,templeName:d,data:t})=>n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Invoice Level Breakup",templeName:d}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:8,fontWeight:"semibold"}},n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"4%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Invoice Number")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Base Amount")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Platform Fees")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Platform Fees GST")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Gateway Charges")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Gateway GST")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Payment Mode")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Booking Date")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(e,null,"Settlement Date")),n.createElement(View,{style:{padding:3,borderRight:"none",width:"12%"}},n.createElement(e,null,"UTR Number"))),t.map((r,f)=>n.createElement(View,{key:f,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:8}},n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"4%"}},n.createElement(e,null,f+1)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.invoiceNumber)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.baseAmount)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.platformFees)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.platformFeesGST)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.gatewayCharges)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.gatewayChargesGST)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},n.createElement(K,null,r.paymentMode)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%",fontSize:7}},n.createElement(K,null,r.bookingDate)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%",fontSize:7}},n.createElement(K,null,r.settlementDate)),n.createElement(View,{style:{padding:3,width:"12%"}},n.createElement(K,null,r.utrNumber))))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),st=qo;var Oo=({startDate:o,endDate:i,templeName:d,data:t})=>n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Total Puja Count Report",templeName:d}),t.length>0?n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,"Sr no")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"40%"}},n.createElement(e,null,"Puja Name")),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,"Total Count")),n.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}},n.createElement(e,null,"Remarks"))),t.map((r,f)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},n.createElement(e,null,f+1)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"40%"}},n.createElement(e,null,r.name)),n.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},n.createElement(e,null,r.quantity)),n.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}})))):n.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),dt=Oo;var Go=({startDate:o,templeName:i,pujas:d,reportTiming:t})=>{return !d||d.length===0?n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString()),t&&n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},t.charAt(0).toUpperCase()+t.slice(1)," Report")),d.map((f,x)=>{let F=f.bookings.filter(a=>!a.is_early_reminder&&!a.requires_coupon);return F.length===0?null:n.createElement(View,{key:x,style:{marginBottom:20},wrap:false},n.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},f.name),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},F.length," booking",F.length>1?"s":"")),F.map((a,m)=>(n.createElement(View,{key:m,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11,color:"#666"}},a.invoiceNumber)),n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},a.devoteeName),n.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},n.createElement(e,{style:{fontSize:12}},a.nakshatra),n.createElement(e,{style:{fontSize:12}},"Qty: ",a.quantity)),a.priestNote&&n.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},n.createElement(e,{style:{fontSize:11,color:"#666"}},a.priestNote))))))})))},mt=Go;var Ho=({startDate:o,templeName:i,data:d,reportTiming:t})=>{if(!d||d.length===0)return n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available")));let r=d.sort((f,x)=>f.invoiceNumber.localeCompare(x.invoiceNumber));return n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString()),t&&n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},t.charAt(0).toUpperCase()+t.slice(1)," Report")),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Report"),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},r.length," item",r.length>1?"s":"")),r.map((f,x)=>n.createElement(View,{key:x,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11,color:"#666"}},f.invoiceNumber)),n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},f.devoteeName),n.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between",alignItems:"center"}},n.createElement(View,{style:{flexDirection:"row",alignItems:"center"}},n.createElement(e,{style:{fontSize:12}},f.prasadName),n.createElement(e,{style:{fontSize:12}}," (qty: ",f.quantity,")")),n.createElement(e,{style:{fontSize:12,color:"#666"}},f.collectionMode))))))},ft=Ho;var Uo=({startDate:o,templeName:i,data:d})=>{let t=d.map(r=>{let f="";try{let x=JSON.parse(r.address);f=`${x.address}, ${x.locality}, ${x.state} - ${x.pincode}`;}catch{f=r.address;}return {...r,address:f}});return !t||t.length===0?n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString())),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Delivery"),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},t.length," delivery",t.length>1?" items":" item")),t.map((r,f)=>n.createElement(View,{key:f,style:{border:"1pt solid #999",padding:10,marginBottom:8,backgroundColor:"#FFF"},wrap:false},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},r.devoteeName),n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11}},r.address)),r.phoneNumber&&n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:12}},"Ph: ",r.phoneNumber)),n.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},n.createElement(e,{style:{fontSize:11,color:"#666"}},"Note: ",r.note||r.pujaName))))))},ht=Uo;var Ko=({startDate:o,templeName:i,pujaData:d,prasadData:t,deliveryData:r,reportTiming:f})=>{if(d.length===0&&t.length===0&&r.length===0)return n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available")));let F=t.sort((a,m)=>a.invoiceNumber.localeCompare(m.invoiceNumber));return n.createElement(Document,null,d.length>0&&n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString()),f&&n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},f.charAt(0).toUpperCase()+f.slice(1)," Report")),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Puja List")),d.map((a,m)=>{let l=a.bookings.filter(g=>!g.is_early_reminder&&!g.requires_coupon);return l.length===0?null:n.createElement(View,{key:m,style:{marginBottom:20},wrap:false},n.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},a.name),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},l.length," booking",l.length>1?"s":"")),l.map((g,h)=>(n.createElement(View,{key:h,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11,color:"#666"}},g.invoiceNumber)),n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},g.devoteeName),n.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},n.createElement(e,{style:{fontSize:12}},g.nakshatra),n.createElement(e,{style:{fontSize:12}},"Qty: ",g.quantity)),g.priestNote&&n.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},n.createElement(e,{style:{fontSize:11,color:"#666"}},g.priestNote))))))})),t.length>0&&n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString()),f&&n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},f.charAt(0).toUpperCase()+f.slice(1)," Report")),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Report"),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},F.length," item",F.length>1?"s":"")),F.map((a,m)=>n.createElement(View,{key:m,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11,color:"#666"}},a.invoiceNumber)),n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},a.devoteeName),n.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between",alignItems:"center"}},n.createElement(View,{style:{flexDirection:"row",alignItems:"center"}},n.createElement(e,{style:{fontSize:12}},a.prasadName),n.createElement(e,{style:{fontSize:12}}," (qty: ",a.quantity,")")),n.createElement(e,{style:{fontSize:12,color:"#666"}},a.collectionMode))))),r.length>0&&n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString())),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Postal Delivery"),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},r.length," delivery",r.length>1?" items":" item")),r.map((a,m)=>n.createElement(View,{key:m,style:{border:"1pt solid #999",padding:10,marginBottom:8,backgroundColor:"#FFF"},wrap:false},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},a.name),n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11}},a.address)),a.phone&&n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:12}},"Ph: ",a.phone)),n.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},n.createElement(e,{style:{fontSize:11,color:"#666"}},"Note: ",a.pujaDetails))))))},bt=Ko;var Qo=({startDate:o,templeName:i,data:d})=>!d||d.length===0?n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString())),n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Postal Labels"),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},d.length," label",d.length>1?"s":"")),d.map(t=>n.createElement(View,{key:t.id,style:{border:"1pt dashed #000",padding:8,marginBottom:10,backgroundColor:"#FFF"},wrap:false},n.createElement(e,{style:{fontSize:13,fontWeight:"bold",marginBottom:5}},t.name),n.createElement(View,{style:{marginBottom:5}},n.createElement(e,{style:{fontSize:11}},t.address)),n.createElement(e,{style:{fontSize:11,marginBottom:5}},t.phone),n.createElement(View,{style:{borderTop:"0.5pt dashed #CCC",marginTop:5,marginBottom:5}}),n.createElement(e,{style:{fontSize:10,color:"#666"}},"Note: ",t.pujaDetails))))),St=Qo;var Yo=({startDate:o,endDate:i,templeName:d,pujas:t,reportTiming:r,selectedPujaNames:f=[]})=>{let x=0,F=0,a=t.some(m=>m.bookings.some(l=>l.requires_coupon));return !t||t.length===0?n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportName:"Custom Puja Report",templeName:d,reportTiming:r}),f.length>0&&n.createElement(View,{style:{marginTop:10,marginBottom:10}},n.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),n.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range and pujas"))):n.createElement(n.Fragment,null,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(P,{startDate:o,endDate:i,reportTiming:r,reportName:"",templeName:""}),n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},n.createElement(e,{style:{fontSize:8}},"C = Collect | D = Distribute | P = Postal")),f.length>0&&n.createElement(View,{style:{marginTop:10,marginBottom:5}},n.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),t.some(m=>m.bookings.some(l=>l.is_early_reminder))&&n.createElement(n.Fragment,null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),n.createElement(View,{style:{marginTop:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},n.createElement(e,null,"Puja Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},n.createElement(e,null,"Mode")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Date"))))),t.some(m=>m.bookings.some(l=>l.is_early_reminder&&!l.requires_coupon))?t.flatMap((m,l)=>m.bookings.filter(g=>g.is_early_reminder&&!g.requires_coupon).map((g,h)=>(F++,n.createElement(View,{key:`${l}-${h}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,F)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"53%"}},n.createElement(e,null,m.name)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,g.quantity)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"7%"}},n.createElement(e,null,g.collectionMode||"")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},n.createElement(e,null,g.date?new Date(g.date).toDateString():"")))))):null,n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Custom Puja Report"),n.createElement(e,{style:{fontSize:12}},`${d}`),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},t.map((m,l)=>m.bookings.every(g=>g.is_early_reminder||g.requires_coupon)?null:(x=0,n.createElement(View,{key:l,style:{marginBottom:25}},n.createElement(View,null,n.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${m.name} - ${m.bookings.length}`)),n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Sr No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},n.createElement(e,null,"Invoice No")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},n.createElement(e,null,"Devotee Name")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},n.createElement(e,null,"Nakshatra")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},n.createElement(e,null,"Qty")),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"7%"}},n.createElement(e,null,"Mode"))),m.bookings.map((g,h)=>g.is_early_reminder||g.requires_coupon?null:(x++,n.createElement(View,{key:h,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},n.createElement(e,null,x)),n.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},n.createElement(View,{style:{display:"flex",flexDirection:"row"}},n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${20*1.11111}%`}},n.createElement(e,null,g.invoiceNumber)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${30*1.11111}%`}},n.createElement(e,null,g.devoteeName)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${23*1.11111}%`}},n.createElement(e,null,g.nakshatra)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${10*1.11111}%`}},n.createElement(e,null,g.quantity)),n.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${7*1.11111}%`}},n.createElement(e,null,g.collectionMode||""))),g.priestNote&&n.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},n.createElement(e,null,g.priestNote))))))))))),a?n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let m=t.flatMap(g=>g.bookings.filter(h=>h.requires_coupon).map(h=>({...h,pujaName:g.name}))),l={};for(let g of m)l[g.invoiceNumber]||(l[g.invoiceNumber]=[]),l[g.invoiceNumber].push(g);return Object.entries(l).map(([g,h],$)=>{let pe=h,me=pe[0];return n.createElement(View,{key:g,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black",position:"relative"},wrap:false},n.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},n.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},n.createElement(e,{style:{fontWeight:"semibold"}},g),n.createElement(e,null,me.date?new Date(me.date).toDateString():o.toDateString())),n.createElement(e,null,me.phone_number)),n.createElement(View,{style:{height:15,width:"100%"}}),pe.map((ge,Ve)=>n.createElement(View,{key:Ve,style:{display:"flex",flexDirection:"row",marginTop:25}},n.createElement(e,null,`${ge.devoteeName} ----- ${ge.nakshatra} ----- ${ge.pujaName}`))),n.createElement(View,null,n.createElement(e,{style:{textAlign:"center",marginTop:10,fontSize:10,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},Ft=Yo;var Zo=({startDate:o,templeName:i,pujas:d,reportTiming:t,selectedPujaNames:r=[]})=>{return !d||d.length===0?n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):n.createElement(Document,null,n.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},n.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},n.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},i),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginBottom:4,fontWeight:"semibold"}},"Custom Report"),n.createElement(e,{style:{fontSize:12,textAlign:"center"}},o.toLocaleDateString()),t&&n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},t.charAt(0).toUpperCase()+t.slice(1)," ","Report")),r.length>0&&n.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:8,marginBottom:12}},n.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas:"),n.createElement(e,{style:{fontSize:9,marginTop:2}},r.join(", "))),d.map((x,F)=>{let a=x.bookings.filter(m=>!m.is_early_reminder&&!m.requires_coupon);return a.length===0?null:n.createElement(View,{key:F,style:{marginBottom:20},wrap:false},n.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},n.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},x.name),n.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},a.length," booking",a.length>1?"s":"")),a.map((m,l)=>(n.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},n.createElement(View,{style:{marginBottom:6}},n.createElement(e,{style:{fontSize:11,color:"#666"}},m.invoiceNumber)),n.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},m.devoteeName),n.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},n.createElement(e,{style:{fontSize:12}},m.nakshatra),n.createElement(e,{style:{fontSize:12}},"Qty: ",m.quantity)),m.collectionMode&&n.createElement(View,{style:{marginTop:4}},n.createElement(e,{style:{fontSize:11,color:"#666"}},"Mode: ",m.collectionMode)),m.priestNote&&n.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},n.createElement(e,{style:{fontSize:11,color:"#666"}},m.priestNote))))))}),n.createElement(View,{style:{marginTop:20,paddingTop:10,borderTop:"1pt solid #CCC"}},n.createElement(e,{style:{fontSize:9,textAlign:"center",color:"#666"}},"bookmypuja.app"))))},Pt=Zo;var ti=o=>{let i=0,d=0,t=0;for(let r of o.items)r.paymentMethod!="INTERNATIONAL_CARD"&&r.platformFees>0&&(i+=r.platformFees,d+=r.platformFeesGST);return t=d+i,n.createElement(Document,null,n.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},n.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:oe}),n.createElement(View,{style:{flexDirection:"row",width:"100%"}},n.createElement(View,{style:{width:"50%"}},n.createElement(Text,null,"INVOICE RECON"),n.createElement(Text,{style:{fontSize:12,marginTop:6}},o.templeName," "),n.createElement(Text,{style:{fontSize:12}},"Bookings from ",o.startDate.toDateString()," to"," ",o.endDate.toDateString()," ")),n.createElement(View,{style:{width:"50%",alignItems:"flex-end"}},n.createElement(Text,{style:{fontSize:12,fontWeight:"semibold"}},"Infinix AI Pvt Ltd"," "),n.createElement(Text,{style:{fontSize:12}},"GSTIN: 32AAICI0436P1ZG"," "))),n.createElement(Text,{style:{fontSize:10,backgroundColor:"#fffca6",marginTop:10}},"Bookings marked with yellow are not to be counted"),n.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:8,fontWeight:"semibold"}},n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"10%"}},n.createElement(Text,null,"Sr no")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,"Invoice Number")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,"Booking Date")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,"Platform Fees")),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,"Platform Fees GST")),n.createElement(View,{style:{padding:3,width:"18%"}},n.createElement(Text,null,"Payment Method")))),o.items.map((r,f)=>n.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:8,backgroundColor:`${r.platformFees==0||r.paymentMethod=="INTERNATIONAL_CARD"?"#fffca6":""}`}},n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"10%"}},n.createElement(Text,null,f+1)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,r.invoiceNumber)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,r.bookingDate)),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,be(r.platformFees))),n.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"18%"}},n.createElement(Text,null,be(r.platformFeesGST))),n.createElement(View,{style:{padding:3,width:"18%"}},n.createElement(Text,null,r.paymentMethod)))),n.createElement(View,{style:{fontSize:11,marginTop:10}},n.createElement(Text,null,"Total Platform Fees: ",be(i)),n.createElement(Text,null,"Platform Fees GST: ",be(d)),n.createElement(View,{style:{fontSize:12,fontWeight:"semibold"}},n.createElement(Text,null,"Total Payable : ",be(t))))))},It=ti;var Bt={kitchen:{A4:Ue},transaction:{A4:Ke},"prasad-delivery":{A4:Qe,"110mm":ht},prasad:{A4:Je,"110mm":ft},"puja-detailed":{A4:Ze,"110mm":mt},"puja-summary":{A4:Xe},"combined-report":{A4:tt,"110mm":bt},"multi-temple-payment":{A4:ot},"settlements-report":{A4:it},invoice:{A4:rt},"postal-report":{A4:nt,"110mm":St},"payment-settlement-report":{A4:lt},"invoice-breakup":{A4:st},"puja-count":{A4:dt},"custom-report":{A4:Ft,"110mm":Pt},"invoice-recon":{A4:It}},kt=class{constructor(i,d){ze(this,"option");ze(this,"size");this.option=i,this.size=d,[{family:"Noto Sans SC",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-serif-sc@latest/chinese-simplified-400-normal.ttf"},{family:"Noto Sans Arabic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-arabic@latest/arabic-400-normal.ttf"},{family:"Noto Sans Devanagari",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-devanagari@latest/devanagari-400-normal.ttf"},{family:"Noto Sans Kannada",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kannada@latest/kannada-400-normal.ttf"},{family:"Noto Sans Tamil",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tamil@latest/tamil-400-normal.ttf"},{family:"Noto Sans Gurmukhi",src:"https://cdn.jsdelivr.net/fontsource/fonts/anek-gurmukhi@latest/gurmukhi-400-normal.ttf"},{family:"Noto Sans Lao",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-lao@latest/lao-400-normal.ttf"},{family:"Noto Sans Thai",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-thai@latest/thai-400-normal.ttf"},{family:"Noto Sans Kr",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kr@latest/korean-400-normal.ttf"},{family:"Noto Sans Bengali",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-bengali@latest/bengali-400-normal.ttf"},{family:"Noto Sans Cyrillic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kr@latest/cyrillic-400-normal.ttf"},{family:"Noto Sans JP",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-jp@latest/japanese-400-normal.ttf"},{family:"Noto Sans Greek",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/greek-400-normal.ttf"},{family:"Noto Sans Latin",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-400-normal.ttf"},{family:"Noto Sans Myanmar",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-myanmar@latest/myanmar-400-normal.ttf"},{family:"Noto Sans Ethiopic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-ethiopic@latest/ethiopic-400-normal.ttf"},{family:"Noto Sans Khmer",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-khmer@latest/khmer-400-normal.ttf"},{family:"Noto Sans Armenian",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-armenian@latest/armenian-400-normal.ttf"},{family:"Noto Sans Hebrew",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-hebrew@latest/hebrew-400-normal.ttf"},{family:"Noto Sans Georgian",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-georgian@latest/georgian-400-normal.ttf"},{family:"Noto Sans Canadian Aboriginal",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-canadian-aboriginal@latest/canadian-aboriginal-400-normal.ttf"},{family:"Noto Sans Sinhala",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-sinhala@latest/sinhala-400-normal.ttf"},{family:"Noto Sans Ol Chiki",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-ol-chiki@latest/ol-chiki-400-normal.ttf"},{family:"Noto Sans Tibetan",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-serif-tibetan@latest/tibetan-400-normal.ttf"},{family:"Noto Sans Tifinagh",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tifinagh@latest/tifinagh-400-normal.ttf"},{family:"Noto Sans Yi",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-yi@latest/yi-400-normal.ttf"},{family:"Noto Sans Syriac",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-syriac@latest/syriac-400-normal.ttf"},{family:"Noto Sans Thaana",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-thaana@latest/thaana-400-normal.ttf"},{family:"Noto Sans Vai",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-vai@latest/vai-400-normal.ttf"},{family:"Noto Sans Cherokee",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-cherokee@latest/cherokee-400-normal.ttf"},{family:"Noto Sans Tai Tham",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tai-tham@latest/tai-tham-400-normal.ttf"},{family:"Noto Sans Tai Viet",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tai-viet@latest/tai-viet-400-normal.ttf"},{family:"Noto Sans Javanese",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-javanese@latest/javanese-400-normal.ttf"},{family:"Noto Sans Gujarati",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-gujarati@latest/gujarati-400-normal.ttf"},{family:"Noto Sans Malayalam",src:"https://res.cloudinary.com/dweb0rpy4/raw/upload/v1763375518/fonts_Manjari-Regular_nrgfti_klz6ho.ttf"},{family:"Noto Sans Telugu",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-telugu@latest/telugu-400-normal.ttf"}].forEach(({family:r,src:f})=>Font.register({family:r,src:f})),Font.register({family:"Noto Sans",fontWeight:"normal",src:Ee}),Font.register({family:"Noto Sans",fontWeight:"bold",src:je}),Font.register({family:"Noto Sans",fontWeight:"semibold",src:We});}async print(i){let t=Bt[this.option][this.size],r=n.createElement(t,{...i}),f=pdf(r).toBlob();return f.then(x=>{var F=URL.createObjectURL(x);if(window!=null){let a=window.open(F,"_blank");setTimeout(()=>{a?.print();},1e3);}}),f}async getBlob(i){let t=Bt[this.option][this.size],r=n.createElement(t,{...i});return pdf(r).toBlob()}};
|
|
2
|
-
export{
|
|
1
|
+
import {Font,StyleSheet,Document,Page,Image,Text,View,pdf}from'@react-pdf/renderer';import g from'react';import {maxBy}from'lodash';import fo from'qrcode';var Ci=Object.defineProperty;var Fi=(r,n,p)=>n in r?Ci(r,n,{enumerable:true,configurable:true,writable:true,value:p}):r[n]=p;var dt=(r,n,p)=>Fi(r,typeof n!="symbol"?n+"":n,p);var Ce=r=>{typeof r=="string"&&(r=new Date(r));let n={day:"2-digit",month:"short",year:"numeric"};return r.toLocaleDateString("en-GB",n).replace(",","")};var De="https://res.cloudinary.com/dpaigt2bx/image/upload/f_auto,q_auto/v1/General%20BMP%20assets/vkesyodnuxuwevdwrk6m",tt="https://res.cloudinary.com/dpaigt2bx/raw/upload/v1742817493/fonts/ntbri6mclms8cfx3dk2e.ttf",it="https://res.cloudinary.com/dpaigt2bx/raw/upload/v1742817493/fonts/ojiymraiiuw7juzkmmu8.ttf",xt="https://res.cloudinary.com/dpaigt2bx/raw/upload/v1743420993/NotoSans-Regular_pmvebt.ttf",wt="https://res.cloudinary.com/dpaigt2bx/raw/upload/v1743431605/NotoSans-Bold_kagtvd.ttf",bt="https://res.cloudinary.com/dpaigt2bx/raw/upload/v1743431765/NotoSans-SemiBold_o96oas.ttf";var ot="https://res.cloudinary.com/dpaigt2bx/image/upload/v1752653165/BookMyPuja_1_1_bd1xa0.png",rt="https://res.cloudinary.com/dpaigt2bx/image/upload/v1752669810/paid-5025785_1280_afg4ob_gcacmg.png",at={morning:"Morning",evening:"Evening"};Font.register({family:"Roboto",fontWeight:"normal",src:tt});Font.register({family:"Roboto",fontWeight:"bold",src:it});var ht=StyleSheet.create({page:{padding:30,fontFamily:"Roboto"},pujaTile:{padding:10,fontSize:9,border:"1px solid rgb(100,100,100)",borderRadius:5,width:"100%",display:"flex",flexDirection:"row"}}),Ei=({data:r,dates:n})=>{let p=Ce(n[0])===Ce(n[1]);return g.createElement(Document,null,g.createElement(Page,{size:"A4",style:ht.page},g.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:De}),g.createElement(Text,{style:{fontSize:13,marginBottom:2}},"Puja List"),g.createElement(Text,{style:{fontSize:10,marginBottom:10}},"Date",":"," ",p?Ce(n[0]):`${Ce(n[0])} - ${Ce(n[1])}`),g.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"space-between",gap:8}},r?r.map((o,a)=>g.createElement(View,{wrap:false,key:a,style:ht.pujaTile},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(Text,{style:{opacity:.6,marginRight:10}},"#",(a+1).toString().padStart(2,"0"))),g.createElement(View,{style:{flexGrow:1}},g.createElement(View,{style:{display:"flex",flexDirection:"row",marginBottom:3,gap:3}},g.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},o.participantName),g.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},"-"),g.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},o.participantNakshatra)),g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},g.createElement(Text,null,"Puja name : "),g.createElement(Text,{style:{fontSize:10,fontWeight:"bold"}},o.pujaName)),p?null:g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},g.createElement(Text,null,"Date: "),g.createElement(Text,{style:{fontWeight:"bold"}},Ce(o.date)))),g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10}}),o.priestNote!==""&&o.priestNote!==null&&o.priestNote!==void 0?g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginTop:3}},g.createElement(Text,null,"Priest Note: ",o.priestNote)):null),g.createElement(View,{style:{display:"flex",flexDirection:"column",alignItems:"flex-end"}},g.createElement(Text,{style:{fontWeight:"bold",fontSize:10}},"Rs ",o.amount),o.paymentStatus=="pending"?g.createElement(View,{style:{backgroundColor:"#000000",paddingVertical:3,paddingHorizontal:5,borderRadius:5,marginTop:3}},g.createElement(Text,{style:{color:"#ffffff",fontSize:8}},"Pending")):null))):null)))},ci=Ei;Font.register({family:"Roboto",fontWeight:"normal",src:tt});Font.register({family:"Roboto",fontWeight:"bold",src:it});var oe=1,Ye=25*oe,Dt=StyleSheet.create({page:{padding:10*oe,fontFamily:"Roboto"},pujaTile:{paddingVertical:10*oe,paddingHorizontal:10*oe,fontSize:Ye,border:`${5*oe}px solid black`,borderRadius:5*oe,width:"100%",display:"flex",flexDirection:"column"}}),Mi=({data:r,dates:n})=>{let p=Ce(n[0])===Ce(n[1]);return g.createElement(Document,null,g.createElement(Page,{dpi:200,size:[457*oe],style:Dt.page},g.createElement(Image,{fixed:true,style:{height:55*oe,width:274*oe,marginBottom:10*oe,marginHorizontal:"auto"},src:De}),g.createElement(Text,{style:{fontSize:25*oe,marginBottom:5*oe,marginHorizontal:"auto"}},"Puja List"),g.createElement(Text,{style:{fontSize:20*oe,marginBottom:5*oe,marginHorizontal:"auto",fontWeight:"bold"}},"Date",":"," ",p?Ce(n[0]):`${Ce(n[0])} - ${Ce(n[1])}`),g.createElement(Text,{style:{fontSize:17*oe,marginBottom:20*oe,marginHorizontal:"auto"}},"Printed at : ",new Date().toLocaleString()),g.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"space-between",gap:15*oe}},r?r.map((o,a)=>g.createElement(View,{wrap:false,key:a,style:Dt.pujaTile},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginBottom:5*oe}},g.createElement(Text,{style:{opacity:.6,marginRight:10*oe}},"#",(a+1).toString().padStart(2,"0")),g.createElement(View,{style:{display:"flex",flexDirection:"row",alignItems:"flex-end",gap:10*oe}},o.paymentStatus=="pending"?g.createElement(View,{style:{backgroundColor:"#000000",paddingVertical:3*oe,paddingHorizontal:5*oe,borderRadius:5*oe,marginTop:3*oe}},g.createElement(Text,{style:{color:"#ffffff",fontSize:Ye}},"Pending")):null,g.createElement(Text,{style:{fontWeight:"bold",fontSize:Ye}},"Rs ",o.amount))),g.createElement(View,{style:{flexGrow:1}},g.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",marginBottom:3*oe,gap:3*oe}},g.createElement(Text,{style:{fontSize:Ye,fontWeight:"bold"}},o.participantName),g.createElement(Text,{style:{fontSize:Ye,fontWeight:"bold"}},"-"),g.createElement(Text,{style:{fontSize:Ye,fontWeight:"bold"}},o.participantNakshatra)),g.createElement(View,{style:{display:"flex",flexDirection:"column",alignContent:"flex-end",gap:10*oe}},g.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap",alignContent:"flex-end"}},g.createElement(Text,null,"Puja name : "),g.createElement(Text,{style:{fontSize:Ye,fontWeight:"bold"}},o.pujaName)),p?null:g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end"}},g.createElement(Text,null,"Date: "),g.createElement(Text,{style:{fontWeight:"bold"}},Ce(o.date)))),g.createElement(View,{style:{display:"flex",flexDirection:"row",alignContent:"flex-end",gap:10*oe}}),o.priestNote!==""&&o.priestNote!==null&&o.priestNote!==void 0?g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",marginTop:3*oe}},g.createElement(Text,null,"Priest Note: ",o.priestNote)):null))):null)))},Oi=Mi;var Ki={Latin:/[A-Za-z\u00AA\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02B8\u02E0-\u02E4\u1D00-\u1D25\u1D2C-\u1D5C\u1D62-\u1D65\u1D6B-\u1D77\u1D79-\u1DBE\u1E00-\u1EFF\u2071\u207F\u2090-\u209C\u212A\u212B\u2132\u214E\u2160-\u2188\u2C60-\u2C7F\uA722-\uA787\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA7FF\uAB30-\uAB5A\uAB5C-\uAB64\uAB66-\uAB69\uFB00-\uFB06\uFF21-\uFF3A\uFF41-z]|\uD801[\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]/g,SC:/[\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DBF\u4E00-\u9FFF\uF900-\uFA6D\uFA70-\uFAD9]|\uD81B[\uDFE2\uDFE3\uDFF0\uDFF1]|[\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF]/g,Cyrillic:/[\u0400-\u0484\u0487-\u052F\u1C80-\u1C88\u1D2B\u1D78\u2DE0-\u2DFF\uA640-\uA69F\uFE2E\uFE2F]|\uD838[\uDC30-\uDC6D\uDC8F]/g,Arabic:/[\u0600-\u0604\u0606-\u060B\u060D-\u061A\u061C-\u061E\u0620-\u063F\u0641-\u064A\u0656-\u066F\u0671-\u06DC\u06DE-\u06FF\u0750-\u077F\u0870-\u088E\u0890\u0891\u0898-\u08E1\u08E3-\u08FF\uFB50-\uFBC2\uFBD3-\uFD3D\uFD40-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFDFF\uFE70-\uFE74\uFE76-\uFEFC]|\uD803[\uDE60-\uDE7E\uDEFD-\uDEFF]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB\uDEF0\uDEF1]/g,Bengali:/[\u0980-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE]/g,Devanagari:/[\u0900-\u0950\u0955-\u0963\u0966-\u097F\uA8E0-\uA8FF]|\uD806[\uDF00-\uDF09]/g,JP:/[\u3041-\u3096\u309D-\u309F]|\uD82C[\uDC01-\uDD1F\uDD32\uDD50-\uDD52]|\uD83C\uDE00|[\u30A1-\u30FA\u30FD-\u30FF\u31F0-\u31FF\u32D0-\u32FE\u3300-\u3357\uFF66-\uFF6F\uFF71-\uFF9D]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00\uDD20-\uDD22\uDD55\uDD64-\uDD67]|[\u3400-\u4DB5\u4E00-\u9FAF]/g,KR:/[\u1100-\u11FF\u302E\u302F\u3131-\u318E\u3200-\u321E\u3260-\u327E\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uFFA0-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/g,Tamil:/[\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA]|\uD807[\uDFC0-\uDFF1\uDFFF]/g,Kannada:/[\u0C80-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1-\u0CF3]/g,Myanmar:/[\u1000-\u109F\uA9E0-\uA9FE\uAA60-\uAA7F]/g,Ethiopic:/[\u1200-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]/g,Thai:/[\u0E01-\u0E3A\u0E40-\u0E5B]/g,Greek:/[\u0370-\u0373\u0375-\u0377\u037A-\u037D\u037F\u0384\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03E1\u03F0-\u03FF\u1D26-\u1D2A\u1D5D-\u1D61\u1D66-\u1D6A\u1DBF\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u2126\uAB65]|\uD800[\uDD40-\uDD8E\uDDA0]|\uD834[\uDE00-\uDE45]/g,Khmer:/[\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u19E0-\u19FF]/g,Armenian:/[\u0531-\u0556\u0559-\u058A\u058D-\u058F\uFB13-\uFB17]/g,Hebrew:/[\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFB4F]/g,Georgian:/[\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u10FF\u1C90-\u1CBA\u1CBD-\u1CBF\u2D00-\u2D25\u2D27\u2D2D]/g,Lao:/[\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECE\u0ED0-\u0ED9\u0EDC-\u0EDF]/g,"Canadian Aboriginal":/[\u1400-\u167F\u18B0-\u18F5]|\uD806[\uDEB0-\uDEBF]/g,Sinhala:/[\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4]|\uD804[\uDDE1-\uDDF4]/g,"Ol Chiki":/[\u1C50-\u1C7F]/g,Tibetan:/[\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FD4\u0FD9\u0FDA]/g,Tifinagh:/[\u2D30-\u2D67\u2D6F\u2D70\u2D7F]/g,Yi:/[\uA000-\uA48C\uA490-\uA4C6]/g,Syriac:/[\u0700-\u070D\u070F-\u074A\u074D-\u074F\u0860-\u086A]/g,Thaana:/[\u0780-\u07B1]/g,Vai:/[\uA500-\uA62B]/g,Cherokee:/[\u13A0-\u13F5\u13F8-\u13FD\uAB70-\uABBF]/g,"Tai Tham":/[\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD]/g,"Tai Viet":/[\uAA80-\uAAC2\uAADB-\uAADF]/g,Javanese:/[\uA980-\uA9CD\uA9D0-\uA9D9\uA9DE\uA9DF]/g,Telugu:/[\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C7F]/g,Gujarati:/[\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF]/g,Malayalam:/[\u0D00-\u0D03\u0D05-\u0D39\u0D3A\u0D3B\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D70-\u0D7F]/g,Gurmukhi:/[\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76]/g},Gi=({style:r={},children:n})=>{let p=l=>{let t=maxBy(Object.entries(Ki),([i,d])=>{let c=l.match(d);return c?c.length:0});return t?t[0]:"Latin"},o=l=>[/\b\d{2}\/\d{2}\/\d{4}\b/,/\b\d{2}\s\w{3}\s\d{4}\b/].some(i=>i.test(l));function a(l){return l.replace(/[\uFF01-\uFF5E]/g,t=>`${String.fromCharCode(t.charCodeAt(0)-65248)} `)}let f=l=>{let t=[],i=null,d="";for(let c of l){c=a(c);let de=p(c);de!==i?(d&&t.push({text:d,script:i}),i=de,d=c):d+=c;}return d&&t.push({text:d,script:i}),t},b=[];n&&typeof n=="string"&&!Array.isArray(n)&&!o(n)&&f(n).forEach((t,i)=>{let d=t.script==="Latin"||!t.script?"Noto Sans":`Noto Sans ${t.script}`;b.push(g.createElement(Text,{key:i,style:{fontFamily:d}},t.text));});let V=[],s={fontFamily:"Noto Sans"};return Array.isArray(r)?V=[...r,s]:r&&Object.keys(r).length>0?V=[r,s]:V=[s],g.createElement(Text,{style:V},b?.length?b:n)},e=Gi;var Qi=({startDate:r,endDate:n,reportTiming:p,templeName:o,reportName:a})=>g.createElement(g.Fragment,null,g.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:De}),n?g.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},"Dates: ",r.toDateString()," - ",n.toDateString()):g.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},"Date: ",r.toDateString()),p&&Object.keys(at).includes(p)?g.createElement(e,{style:{fontSize:11,marginTop:5,textAlign:"right"}},at[p]," Report"):null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold"}},a),g.createElement(e,{style:{fontSize:12}},`${o}`)),z=Qi;var Zi=({startDate:r,endDate:n,templeName:p,data:o,reportTiming:a})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,templeName:p,reportTiming:a,reportName:"Temple Prasad (Kitchen) Report"}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"60%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:6,borderRight:"none",width:"20%"}},g.createElement(e,null,"Quantity"))),o.map((f,b)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,b+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"60%"}},g.createElement(e,null,f.name)),g.createElement(View,{style:{padding:6,borderRight:"none",width:"20%"}},g.createElement(e,null,f.quantity))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),zt=Zi;var eo=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayWiseTotals:f,summary:b})=>{let V=b?.totalBookingsAmount??o.reduce((t,i)=>i.status==="cancelled"?t:t+i.bookingAmount,0),s=b?.totalPostalCharges??o.reduce((t,i)=>i.status==="cancelled"?t:t+(i.postalCharges||0),0),l=b?.totalCreditedAmount??o.reduce((t,i)=>i.status==="cancelled"?t:t+i.creditedAmount,0);return g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Transactions Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},g.createElement(View,{style:{marginBottom:15}},g.createElement(e,{style:{fontSize:10}},"Total Bookings Amount: ",V.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),g.createElement(e,{style:{fontSize:10}},"Total Postal Charges Collected: ",s.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),g.createElement(e,{style:{fontSize:10}},"Total Amount Credited to Temple: ",l.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),a&&f&&f.length>0&&g.createElement(View,{style:{marginBottom:20}},g.createElement(View,{style:{marginBottom:8,paddingBottom:4,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:11,fontWeight:"bold"}},"Day Wise Totals")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Puja Amount")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Postal Charges")),g.createElement(View,{style:{padding:6,width:"25%"}},g.createElement(e,null,"Credited Amount"))),f.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.dateDisplay)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.pujaAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.postalCharges.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:6,width:"25%"}},g.createElement(e,null,t.creditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})))))),g.createElement(View,null,a&&g.createElement(View,{style:{marginBottom:8,paddingBottom:4,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:11,fontWeight:"bold"}},"All Bookings")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"6%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"19%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"17%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,"Puja Amt")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"11%"}},g.createElement(e,null,"Delivery")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"14%"}},g.createElement(e,null,"Credited Amt")),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,"Transaction ID"))),o.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"6%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"19%"}},g.createElement(e,null,t.date," ",t.time)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"17%"}},g.createElement(e,null,t.invoiceNumber)),t.status=="cancelled"?g.createElement(View,{style:{padding:6,width:"58%"}},g.createElement(e,{style:{textAlign:"center"}},"CANCELLED")):g.createElement(g.Fragment,null,g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,t.bookingAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"11%"}},g.createElement(e,null,(t.postalCharges||0).toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"14%"}},g.createElement(e,null,t.creditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,t.transactionId))))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))))},Pt=eo;var oo=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f})=>{let b=t=>{let i="";try{let d=JSON.parse(t.address);i=`${d.address}, ${d.locality}, ${d.state} - ${d.pincode}`;}catch(d){console.error("Error parsing address:",d),i=t.address;}return {...t,address:i}},V=o.map(b),s=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"18%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Address")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,width:"15%"}},g.createElement(e,null,"Amount"))),l=(t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,new Date(t.date).toLocaleDateString("en-GB",{day:"2-digit",month:"2-digit",year:"2-digit"}))),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"18%"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.address)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.pujaName)),g.createElement(View,{style:{padding:6,width:"15%"}},g.createElement(e,null,t.amount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))));return g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Delivery Address",templeName:p}),V.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},a&&f&&f.length>0?g.createElement(g.Fragment,null,f.map((t,i)=>{let d=t.items.map(b);return g.createElement(View,{key:t.dateKey,style:{marginBottom:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:8,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},t.dateDisplay),g.createElement(e,{style:{fontSize:10}},t.count," delivery",t.count!==1?" items":" item")),s(),d.map((c,de)=>l(c,de)))})):g.createElement(g.Fragment,null,s(),V.map((t,i)=>l(t,i)))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},kt=oo;var lo=({startDate:r,endDate:n,templeName:p,data:o,reportTiming:a,isDayWiseGrouped:f,dayGroups:b})=>{o.sort((t,i)=>t.invoiceNumber.localeCompare(i.invoiceNumber));let s=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"23%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:6,width:"10%",borderRight:"1px solid black"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,width:"7%"}},g.createElement(e,null,"Mode"))),l=(t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"23%",fontSize:9,flexWrap:"wrap"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%",fontSize:9,flexWrap:"wrap"}},g.createElement(e,null,t.pujaName," - ",t.prasadName)),g.createElement(View,{style:{padding:6,width:"10%",borderRight:"1px solid black"}},g.createElement(e,null,t.quantity)),g.createElement(View,{style:{padding:6,width:"7%"}},g.createElement(e,null,t.collectionMode)));return g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Report",templeName:p,reportTiming:a}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:8}},"C = Collect | D = Distribute | P = Postal")),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},f&&b&&b.length>0?g.createElement(g.Fragment,null,b.map((t,i)=>g.createElement(View,{key:t.dateKey,style:{marginBottom:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:8,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},t.dateDisplay),g.createElement(e,{style:{fontSize:10}},t.count," item",t.count!==1?"s":"")),s(),t.items.map((d,c)=>l(d,c))))):g.createElement(g.Fragment,null,s(),o.map((t,i)=>l(t,i)))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},At=lo;var ao=({startDate:r,endDate:n,templeName:p,pujas:o,reportTiming:a,isDayWiseGrouped:f})=>{let b=0,V=0,s=o.some(l=>l.bookings.some(t=>t.requires_coupon));return !o||o.length===0?g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Puja List",templeName:p,reportTiming:a}),g.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range"))):g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:a,reportName:"",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:8}},"C = Collec | D = Distribute | P = Postal")),o.some(l=>l.bookings.some(t=>t.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(l=>l.bookings.some(t=>t.is_early_reminder&&!t.requires_coupon))?o.flatMap((l,t)=>l.bookings.filter(i=>i.is_early_reminder&&!i.requires_coupon).map((i,d)=>(V++,g.createElement(View,{key:`${t}-${d}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"53%"}},g.createElement(e,null,l.name)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"7%"}},g.createElement(e,null,i.collectionMode||"")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},g.createElement(e,null,i.date?new Date(i.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Puja List"),g.createElement(e,{style:{fontSize:12}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},o.map((l,t)=>{if(l.bookings.every(D=>D.is_early_reminder||D.requires_coupon))return null;b=0;let i=l.bookings.some(D=>D.topping_name),d=f&&l.dayGroups&&l.dayGroups.length>0,c=(D=false)=>i?g.createElement(View,{fixed:true,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:D?void 0:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"5%"}},g.createElement(e,null,"Sr")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"12%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"22%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"31%"}},g.createElement(e,null,"Offerings"))):g.createElement(View,{fixed:true,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:D?void 0:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode"))),de=(D,U,le)=>D.is_early_reminder||D.requires_coupon?null:i?g.createElement(View,{key:U,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"5%"}},g.createElement(e,null,le)),g.createElement(View,{style:{padding:6,fontSize:7,borderRight:"1px solid black",width:"12%"}},g.createElement(e,null,D.invoiceNumber)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,D.devoteeName)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"22%"}},g.createElement(e,null,D.nakshatra)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"31%"}},g.createElement(e,null,D.topping_name||""))):g.createElement(View,{key:U,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,le)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:6,fontSize:7,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,D.invoiceNumber)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${30*1.11111}%`}},g.createElement(e,null,D.devoteeName)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${23*1.11111}%`}},g.createElement(e,null,D.nakshatra)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${10*1.11111}%`}},g.createElement(e,null,D.quantity)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${7*1.11111}%`}},g.createElement(e,null,D.collectionMode||""))),D.priestNote&&g.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,D.priestNote))));return g.createElement(View,{key:t,style:{marginBottom:25}},g.createElement(View,{wrap:false,minPresenceAhead:20},g.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${l.name} - ${l.totalBookings||l.bookings.length}`),!d&&c(true)),d?g.createElement(g.Fragment,null,l.dayGroups.map((D,U)=>{let le=0,Be=D.items.filter($e=>!$e.is_early_reminder&&!$e.requires_coupon);return Be.length===0?null:g.createElement(View,{key:D.dateKey,style:{marginTop:U>0?15:0}},g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",backgroundColor:"#f0f0f0",border:"1px solid black",borderBottom:"none",padding:6}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},D.dateDisplay),g.createElement(e,{style:{fontSize:9}},`${Be.length} booking${Be.length!==1?"s":""}`)),c(false),Be.map(($e,st)=>(le++,de($e,st,le))))})):g.createElement(g.Fragment,null,l.bookings.map((D,U)=>D.is_early_reminder||D.requires_coupon?null:(b++,de(D,U,b)))))}))),s?g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let l=o.flatMap(i=>i.bookings.filter(d=>d.requires_coupon).map(d=>({...d,pujaName:i.name}))),t={};for(let i of l)t[i.invoiceNumber]||(t[i.invoiceNumber]=[]),t[i.invoiceNumber].push(i);return Object.entries(t).map(([i,d],c)=>{let de=d,D=de[0];return g.createElement(View,{key:i,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black",position:"relative"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},g.createElement(e,{style:{fontWeight:"semibold"}},i),g.createElement(e,null,D.date?new Date(D.date).toDateString():r.toDateString())),g.createElement(e,null,D.phone_number)),g.createElement(View,{style:{height:15,width:"100%"}}),de.map((U,le)=>g.createElement(View,{key:le,style:{display:"flex",flexDirection:"row",marginTop:25}},g.createElement(e,null,`${U.devoteeName} ----- ${U.nakshatra} ----- ${U.pujaName}`))),g.createElement(View,null,g.createElement(e,{style:{textAlign:"center",marginTop:10,fontSize:10,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},Ct=ao;var mo=({templeName:r,startDate:n,endDate:p,pujas:o,reportTiming:a})=>{let f=o.sort((b,V)=>{let s=b.nakshatras.length;return V.nakshatras.length-s});return g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:n,endDate:p,reportTiming:a,reportName:"Puja Summary",templeName:r}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},f.map((b,V)=>g.createElement(g.Fragment,null,g.createElement(View,{style:{marginBottom:25}},g.createElement(View,null,g.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${b.name} - ${b.totalCount}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:6,fontSize:10,width:"20%",fontWeight:"semibold"}},g.createElement(e,null,"Quantity"))),b.nakshatras.map((s,l)=>g.createElement(g.Fragment,null,g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"60%"}},g.createElement(e,null,s.name)),g.createElement(View,{style:{padding:6,fontSize:10,width:"20%"}},g.createElement(e,null,s.count))))))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},Ft=mo;var yo=({children:r,splitat:n})=>{if(!r||typeof r!="string")return null;let p="";return n=="words"&&(p=" "),g.createElement(g.Fragment,null,g.createElement(View,{style:{display:"flex",flexDirection:"row",flexWrap:"wrap"}},r.split(p).map((o,a)=>g.createElement(g.Fragment,null,g.createElement(e,{key:a},o,n=="words"?" ":"")))))},q=yo;var xo=({startDate:r,endDate:n,templeName:p,pujaData:o,prasadData:a,deliveryData:f,reportTiming:b})=>{f=f.map(t=>{let i="";try{let d=JSON.parse(t.address);i=`${d.address}, ${d.locality}, ${d.state} - ${d.pincode}`;}catch(d){console.error("Error parsing address:",d),i=t.address;}return {...t,address:i}});let V=0,s=0,l=o.some(t=>t.bookings.some(i=>i.requires_coupon));return o.length==0&&a.length==0&&f.length==0?g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Combined Report",templeName:p}),g.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range"))):g.createElement(g.Fragment,null,g.createElement(Document,null,o.length>0&&g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"",templeName:""}),o.some(t=>t.bookings.some(i=>i.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(t=>t.bookings.some(i=>i.is_early_reminder&&!i.requires_coupon))?o.flatMap((t,i)=>t.bookings.filter(d=>d.is_early_reminder&&!d.requires_coupon).map((d,c)=>(s++,g.createElement(View,{wrap:false,key:`${i}-${c}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,s)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"60%"}},g.createElement(e,null,t.name)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,d.quantity)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},g.createElement(e,null,d.date?new Date(d.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Puja List"),g.createElement(e,{style:{fontSize:12}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},o.map((t,i)=>t.bookings.every(d=>d.is_early_reminder||d.requires_coupon)?null:(V=0,g.createElement(g.Fragment,null,g.createElement(View,{style:{marginBottom:25}},g.createElement(View,null,g.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${t.name} - ${t.bookings.length}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"35%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"25%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty"))),t.bookings.map((d,c)=>d.is_early_reminder||d.requires_coupon?null:(V++,g.createElement(g.Fragment,null,g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,d.invoiceNumber)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${35*1.11111}%`}},g.createElement(e,null,d.devoteeName)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${25*1.11111}%`}},g.createElement(e,null,d.nakshatra)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${10*1.11111}%`}},g.createElement(e,null,d.quantity))),d.priestNote&&g.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,d.priestNote))))))))))))),o.length>0&&l&&g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let t=o.flatMap(d=>d.bookings.filter(c=>c.requires_coupon).map(c=>({...c,pujaName:d.name}))),i={};for(let d of t)i[d.invoiceNumber]||(i[d.invoiceNumber]=[]),i[d.invoiceNumber].push(d);return Object.entries(i).map(([d,c],de)=>{let D=c,U=D[0];return g.createElement(View,{key:d,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},g.createElement(e,{style:{fontWeight:"semibold"}},d),g.createElement(e,null,U.date?new Date(U.date).toDateString():r.toDateString())),g.createElement(e,null,U.phone_number)),g.createElement(View,{style:{height:15,width:"100%"}}),D.map((le,Be)=>g.createElement(View,{key:Be,style:{display:"flex",flexDirection:"row",marginTop:25}},g.createElement(e,null,`${le.devoteeName} ----- ${le.nakshatra} ----- ${le.pujaName}`))))})})())),a.length>0&&g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Prasad Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:6,width:"10%"}},g.createElement(e,null,"Qty"))),a.map((t,i)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,t.prasadName)),g.createElement(View,{style:{padding:6,width:"10%"}},g.createElement(e,null,t.quantity)))))),f.length>0&&g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Prasad Delivery Postal Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20,width:"100%",gap:20,flexWrap:"wrap"}},f&&f.map(t=>{let i=fo.toDataURL(t.qrContent);return g.createElement(View,{wrap:false,key:t.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:6}},g.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:5}},g.createElement(View,null,g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},t.name),g.createElement(View,{style:{fontSize:10}},g.createElement(q,{splitat:"words"},t.address)),g.createElement(e,{style:{fontSize:10}},t.phone)),t.qrContent&&i?g.createElement(View,{style:{flexShrink:0,width:60,maxWidth:60,display:"flex",flexDirection:"column",alignItems:"center"}},g.createElement(Image,{src:i,style:{width:50,height:50,minWidth:50,maxWidth:50}}),g.createElement(e,{style:{fontSize:7}},"BookMyPuja")):null),g.createElement(View,{style:{borderTop:"1px solid black",marginTop:5,paddingTop:3,borderStyle:"dotted"}}),g.createElement(e,{style:{fontSize:9,marginTop:3}},"Note: ",t.pujaDetails))})))))},Wt=xo;var ho=({startDate:r,endDate:n,data:p})=>g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Temple Payment Report",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"S.No.")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"55%"}},g.createElement(e,null,"Temple Name")),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},g.createElement(e,null,"Bookings")),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,"Revenue"))),p?.map((o,a)=>g.createElement(View,{key:a,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,a+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"55%"}},g.createElement(e,null,o.name)),g.createElement(View,{style:{padding:6,borderRight:"1px solid black",width:"15%"}},g.createElement(e,null,o.bookings)),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,"\u20B9",o.revenue))))))),jt=ho;var Vo=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f})=>{let b=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Settlement")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"UTR")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"25%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,"Settlement ID"))),V=(s,l)=>g.createElement(View,{key:l,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:6,width:"15%",borderRight:"1px solid #000"}},g.createElement(e,null,s.date)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,s.settlement_amount)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%",fontSize:9}},g.createElement(e,null,s.utr.split("").map((t,i)=>g.createElement(e,{key:i},t)))),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"25%",fontSize:9}},g.createElement(View,{style:{display:"flex",flexDirection:"column"}},s.invoices.map((t,i)=>g.createElement(e,{key:i},t.number," (",t.amount,")")))),g.createElement(View,{style:{padding:6,width:"20%"}},g.createElement(e,null,s.settlement_id)));return g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Settlements Report",templeName:p}),g.createElement(e,{style:{fontSize:10,marginTop:10}},"Total Credited Amount: ",o.totalCreditedAmount),o.settlements.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},a&&f&&f.length>0?g.createElement(g.Fragment,null,f.map((s,l)=>g.createElement(View,{key:s.dateKey,style:{marginBottom:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:8,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:10}},s.count," settlement",s.count!==1?"s":""," | Total: ",s.dayTotal)),b(),s.items.map((t,i)=>V(t,i))))):g.createElement(g.Fragment,null,b(),o.settlements.map((s,l)=>V(s,l)))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))},Et=Vo;var zo=({data:r})=>g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(View,{style:{display:"flex",flexDirection:"row",width:"100%"}},g.createElement(View,{style:{backgroundColor:"#FFA823",width:20,height:"100%"}}),g.createElement(View,{style:{marginLeft:15,marginTop:10,marginBottom:0,flex:1}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold"}},r.templeName),g.createElement(e,{style:{fontSize:10}},r.templeAddress),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:5,marginTop:10,alignItems:"center"}},g.createElement(e,{style:{fontSize:10,marginTop:-5}},"Powered by"),g.createElement(Image,{style:{height:25,width:95,objectFit:"contain"},src:ot}))),r.qrContent?g.createElement(View,{style:{width:85}},g.createElement(Image,{style:{height:70,width:70,marginBottom:5,objectFit:"contain",position:"absolute",right:"0",bottom:"0"},src:r.qrContent})):null),g.createElement(View,{style:{display:"flex",flexDirection:"column",alignItems:"center",marginTop:20,position:"relative"}},r.status==="confirmed"?g.createElement(Image,{style:{height:85,width:85,marginBottom:5,objectFit:"contain",position:"absolute",right:"0",top:"0"},src:rt}):null,g.createElement(e,{style:{fontSize:12,marginTop:5,fontWeight:"semibold"}},"INVOICE #",r.invoiceNumber),g.createElement(e,{style:{fontSize:10,marginTop:2}},"Status: ",r.status=="confirmed"?"PAID":"PENDING")),g.createElement(View,{style:{marginTop:10}},g.createElement(e,{style:{fontSize:11}},"Bill to:"),g.createElement(e,{style:{fontSize:11}},r.devoteeDetails.name),r.devoteeDetails.phone?g.createElement(e,{style:{fontSize:11}},r.devoteeDetails.phone):null,g.createElement(e,{style:{fontSize:11}},r.bookingDate)),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"50%"}},g.createElement(e,null,"Item Description")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},g.createElement(e,null,"Price")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},g.createElement(e,null,"Quantity")),g.createElement(View,{style:{padding:6,width:"20%",textAlign:"center"}},g.createElement(e,null,"Total"))),r.items.map((n,p)=>g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"50%"}},n.pujaName?g.createElement(e,{style:{fontSize:11}},n.pujaName):null,n.devoteesName?g.createElement(e,{style:{fontSize:9,color:"#333333"}},n.devoteesName):null,n.pujaDate?g.createElement(e,{style:{fontSize:9,color:"#333333"}},n.pujaDate," ",n.timing?`- ${n.timing}`:null):null,n.repeatEndDate&&n.repeatStartDate?g.createElement(e,{style:{fontSize:9,color:"#333333"}},n.repeatStartDate," to ",n.repeatEndDate," ",n.timing?`- ${n.timing}`:null):null),g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},n.basePujPrice)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},`${n.quantity?n.quantity:""}${n.repeatCount?` x ${n.repeatCount}`:""}`)),g.createElement(View,{style:{padding:6,width:"20%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},n.totalPrice))))),g.createElement(View,{style:{display:"flex",flexDirection:"row",marginVertical:20,marginHorizontal:20}},g.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",fontSize:11}},g.createElement(e,{style:{fontWeight:"bold"}},"Payment Method:"),g.createElement(e,null,r.paymentMethod)),g.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"flex-end"}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},g.createElement(View,{style:{width:"50%",textAlign:"right"}},g.createElement(e,null,"Subtotal: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.subTotal))),r.postalCharges?g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Postal Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.postalCharges))):null,g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Payment Gateway Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.paymentGatewayCharges))),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Platform Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.platformCharges))),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"GST (18%): ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.gst))),g.createElement(View,{style:{width:"60%",height:1,backgroundColor:"#757575",marginVertical:5}}),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,fontSize:10,fontWeight:"bold"}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Total: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.totalAmount))))),r.prasadCollectionMode?g.createElement(View,{style:{marginBottom:5}},g.createElement(e,{style:{fontSize:11,marginTop:5}},"Prasad Collection Mode: ",r.prasadCollectionMode)):null,r.devoteeDetails.address?g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:11,maxWidth:400,marginBottom:20}},"Address: ",r.devoteeDetails.address)):null,r.prasads&&(r.prasads.morning.length>0||r.prasads.afternoon.length>0||r.prasads.evening.length>0)?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginBottom:30}},g.createElement(View,{style:{backgroundColor:"#FF266F",padding:5}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold",color:"white"}},"Prasadsam Details")),r.prasads.morning.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Morning:"),r.prasads.morning.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:10}},p+1,". ",n.name," (",n.timings,")"))):null,r.prasads.afternoon.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Afternoon:"),r.prasads.afternoon.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:10}},p+1,". ",n.name," (",n.timings,")"))):null,r.prasads.evening.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:10,paddingVertical:5,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Evening:"),r.prasads.evening.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:10}},p+1,". ",n.name," (",n.timings,")"))):null):null,r.instructions.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginHorizontal:20,fontSize:8,border:"1px solid #757575"}},g.createElement(View,{style:{backgroundColor:"#FFA823",paddingHorizontal:10,paddingVertical:5}},g.createElement(e,null,"IMPORTANT INSTRUCTIONS:")),g.createElement(View,{style:{display:"flex",flexDirection:"column",gap:5,marginVertical:10,paddingHorizontal:10}},r.instructions.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:8}},p+1,") ",n.instruction)))):null,g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},"Terms and Conditions:"),g.createElement(e,{style:{fontSize:8,marginLeft:5}},"https://www.bookmypuja.app/terms-and-condition")))),ct=zo;var Co=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Delivery Postal Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:15,marginTop:10,fontSize:9}},g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"NP")," - Normal Post"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"SP")," - Speed Post"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"IP")," - International Post")),o&&o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:20,width:"100%",gap:20,flexWrap:"wrap"}},o.map(a=>{let f=a.qrContent,b=fo.toDataURL(f);return g.createElement(View,{wrap:false,key:a.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:6}},g.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:5}},g.createElement(View,null,g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},a.name),g.createElement(View,{style:{fontSize:10}},g.createElement(q,{splitat:"words"},a.address)),g.createElement(e,{style:{fontSize:10}},a.phone)),a.qrContent&&b?g.createElement(View,{style:{flexShrink:0,width:60,maxWidth:60,display:"flex",flexDirection:"column",alignItems:"center"}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold",marginBottom:2}},a.deliveryMode==="speedpost"?"SP":a.deliveryMode==="international-post"?"IP":"NP"),g.createElement(Image,{src:b,style:{width:50,height:50,minWidth:50,maxWidth:50}}),g.createElement(e,{style:{fontSize:7}},"BookMyPuja")):null),g.createElement(View,{style:{borderTop:"1px solid black",marginTop:5,paddingTop:3,borderStyle:"dotted"}}),g.createElement(e,{style:{fontSize:9,marginTop:3}},"Note: ",a.pujaDetails))})):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))),_t=Co;var vo=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Payment Settlement Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Amount")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Payment Date")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Settlement Date")),g.createElement(View,{style:{padding:6,borderRight:"none",width:"25%"}},g.createElement(e,null,"Bank UTR No"))),o.map((a,f)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,f+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(q,null,a.invoiceNo)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(q,null,a.amount)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(q,null,a.paymentDate)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"20%"}},g.createElement(q,null,a.settlementDate)),g.createElement(View,{style:{padding:6,borderRight:"none",width:"25%"}},g.createElement(q,null,a.bankUtrNo))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),Lt=vo;var Eo=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Invoice Level Breakup",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:8,fontWeight:"semibold"}},g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"4%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Base Amount")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Platform Fees")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Platform Fees GST")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Gateway Charges")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Gateway GST")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Payment Mode")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Booking Date")),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Settlement Date")),g.createElement(View,{style:{padding:3,borderRight:"none",width:"12%"}},g.createElement(e,null,"UTR Number"))),o.map((a,f)=>g.createElement(View,{key:f,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:8}},g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"4%"}},g.createElement(e,null,f+1)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.invoiceNumber)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.baseAmount)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.platformFees)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.platformFeesGST)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.gatewayCharges)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.gatewayChargesGST)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.paymentMode)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%",fontSize:7}},g.createElement(q,null,a.bookingDate)),g.createElement(View,{style:{padding:3,borderRight:"1px solid #000",width:"9%",fontSize:7}},g.createElement(q,null,a.settlementDate)),g.createElement(View,{style:{padding:3,width:"12%"}},g.createElement(q,null,a.utrNumber))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range")))),qt=Eo;var Lo=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f,summary:b})=>{let V=o.reduce((s,l)=>s+l.quantity,0);return g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Total Puja Count Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:20}},g.createElement(View,{style:{marginBottom:25}},a&&g.createElement(View,{style:{marginBottom:10,paddingBottom:5,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:12,fontWeight:"bold"}},"Monthly Summary")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Total Count")),g.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}},g.createElement(e,null,"Remarks"))),o.map((s,l)=>g.createElement(View,{key:l,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,null,s.name)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,s.quantity)),g.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}}))),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10,fontWeight:"bold",backgroundColor:"#f0f0f0"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,{style:{fontWeight:"bold"}},"Grand Total")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,{style:{fontWeight:"bold"}},V)),g.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}}))),a&&f&&f.length>0&&g.createElement(View,null,g.createElement(View,{style:{marginBottom:10,paddingBottom:5,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:12,fontWeight:"bold"}},"Day-wise Breakdown")),f.map((s,l)=>g.createElement(View,{key:s.dateKey,style:{marginBottom:20}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:8,border:"1px solid #000",borderBottom:"none"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:10}},"Day Total: ",s.dayTotal)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:10,fontWeight:"semibold"}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"55%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}},g.createElement(e,null,"Count"))),s.items.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:10}},g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:6,borderRight:"1px solid #000",width:"55%"}},g.createElement(e,null,t.name)),g.createElement(View,{style:{padding:6,borderRight:"none",width:"35%"}},g.createElement(e,null,t.quantity)))))))):g.createElement(e,{style:{fontSize:18,textAlign:"center",marginTop:100}},"No data available for the selected date range"))))},$t=Lo;var qo=({startDate:r,templeName:n,pujas:p,reportTiming:o})=>{return !p||p.length===0?g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString()),o&&g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},o.charAt(0).toUpperCase()+o.slice(1)," Report")),p.map((f,b)=>{let V=f.bookings.filter(s=>!s.is_early_reminder&&!s.requires_coupon);return V.length===0?null:g.createElement(View,{key:b,style:{marginBottom:20},wrap:false},g.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},f.name),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},V.length," booking",V.length>1?"s":"")),V.map((s,l)=>(g.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11,color:"#666"}},s.invoiceNumber)),g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},s.devoteeName),g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between",marginBottom:s.topping_name?6:0}},g.createElement(e,{style:{fontSize:12}},s.nakshatra),g.createElement(e,{style:{fontSize:12}},"Qty: ",s.quantity)),s.topping_name&&g.createElement(View,{style:{backgroundColor:"#FFF3E0",padding:6,borderRadius:4}},g.createElement(e,{style:{fontSize:11,fontWeight:"semibold",color:"#E65100"}},"Topping: ",s.topping_name)),s.priestNote&&g.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},g.createElement(e,{style:{fontSize:11,color:"#666"}},s.priestNote))))))})))},Ht=qo;var $o=({startDate:r,templeName:n,data:p,reportTiming:o,isDayWiseGrouped:a,dayGroups:f})=>{if(!p||p.length===0)return g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available")));let b=p.sort((s,l)=>s.invoiceNumber.localeCompare(l.invoiceNumber)),V=(s,l)=>g.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11,color:"#666"}},s.invoiceNumber)),g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},s.devoteeName),g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between",alignItems:"center"}},g.createElement(View,{style:{flexDirection:"row",alignItems:"center"}},g.createElement(e,{style:{fontSize:12}},s.prasadName),g.createElement(e,{style:{fontSize:12}}," (qty: ",s.quantity,")")),g.createElement(e,{style:{fontSize:12,color:"#666"}},s.collectionMode)));return g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString()),o&&g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},o.charAt(0).toUpperCase()+o.slice(1)," Report")),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Report"),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},b.length," item",b.length>1?"s":"")),a&&f&&f.length>0?g.createElement(g.Fragment,null,f.map((s,l)=>g.createElement(View,{key:s.dateKey,style:{marginBottom:12}},g.createElement(View,{style:{backgroundColor:"#e0e0e0",padding:8,marginBottom:6}},g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},g.createElement(e,{style:{fontSize:12,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:11}},s.count," item",s.count!==1?"s":""))),s.items.map((t,i)=>V(t,i))))):g.createElement(g.Fragment,null,b.map((s,l)=>V(s,l)))))},Ut=$o;var Mo=({startDate:r,templeName:n,data:p,isDayWiseGrouped:o,dayGroups:a})=>{let f=s=>{let l="";try{let t=JSON.parse(s.address);l=`${t.address}, ${t.locality}, ${t.state} - ${t.pincode}`;}catch{l=s.address;}return {...s,address:l}},b=p.map(f);if(!b||b.length===0)return g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available")));let V=(s,l)=>g.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:8,backgroundColor:"#FFF"},wrap:false},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},s.devoteeName),g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11}},s.address)),s.phoneNumber&&g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:12}},"Ph: ",s.phoneNumber)),g.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},g.createElement(e,{style:{fontSize:11,color:"#666"}},"Note: ",s.note||s.pujaName)));return g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString())),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Delivery"),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},b.length," delivery",b.length>1?" items":" item")),o&&a&&a.length>0?g.createElement(g.Fragment,null,a.map((s,l)=>{let t=s.items.map(f);return g.createElement(View,{key:s.dateKey,style:{marginBottom:12}},g.createElement(View,{style:{backgroundColor:"#e0e0e0",padding:8,marginBottom:6}},g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},g.createElement(e,{style:{fontSize:12,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:11}},s.count," item",s.count!==1?"s":""))),t.map((i,d)=>V(i,d)))})):g.createElement(g.Fragment,null,b.map((s,l)=>V(s,l)))))},Yt=Mo;var Oo=({startDate:r,templeName:n,pujaData:p,prasadData:o,deliveryData:a,reportTiming:f})=>{if(p.length===0&&o.length===0&&a.length===0)return g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available")));let V=o.sort((s,l)=>s.invoiceNumber.localeCompare(l.invoiceNumber));return g.createElement(Document,null,p.length>0&&g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString()),f&&g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},f.charAt(0).toUpperCase()+f.slice(1)," Report")),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Puja List")),p.map((s,l)=>{let t=s.bookings.filter(i=>!i.is_early_reminder&&!i.requires_coupon);return t.length===0?null:g.createElement(View,{key:l,style:{marginBottom:20},wrap:false},g.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},s.name),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},t.length," booking",t.length>1?"s":"")),t.map((i,d)=>(g.createElement(View,{key:d,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11,color:"#666"}},i.invoiceNumber)),g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},i.devoteeName),g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},g.createElement(e,{style:{fontSize:12}},i.nakshatra),g.createElement(e,{style:{fontSize:12}},"Qty: ",i.quantity)),i.priestNote&&g.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},g.createElement(e,{style:{fontSize:11,color:"#666"}},i.priestNote))))))})),o.length>0&&g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString()),f&&g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},f.charAt(0).toUpperCase()+f.slice(1)," Report")),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Prasad Report"),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},V.length," item",V.length>1?"s":"")),V.map((s,l)=>g.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11,color:"#666"}},s.invoiceNumber)),g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},s.devoteeName),g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between",alignItems:"center"}},g.createElement(View,{style:{flexDirection:"row",alignItems:"center"}},g.createElement(e,{style:{fontSize:12}},s.prasadName),g.createElement(e,{style:{fontSize:12}}," (qty: ",s.quantity,")")),g.createElement(e,{style:{fontSize:12,color:"#666"}},s.collectionMode))))),a.length>0&&g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString())),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:12}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Postal Delivery"),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},a.length," delivery",a.length>1?" items":" item")),a.map((s,l)=>g.createElement(View,{key:l,style:{border:"1pt solid #999",padding:10,marginBottom:8,backgroundColor:"#FFF"},wrap:false},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},s.name),g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11}},s.address)),s.phone&&g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:12}},"Ph: ",s.phone)),g.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},g.createElement(e,{style:{fontSize:11,color:"#666"}},"Note: ",s.pujaDetails))))))},Xt=Oo;var Ho=({startDate:r,templeName:n,data:p})=>!p||p.length===0?g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString())),g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:10,marginBottom:8}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},"Postal Labels"),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},p.length," label",p.length>1?"s":"")),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"center",gap:10,marginBottom:12,fontSize:9}},g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"NP"),"-Normal"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"SP"),"-Speed"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"IP"),"-International")),p.map(o=>g.createElement(View,{key:o.id,style:{border:"1pt dashed #000",padding:8,marginBottom:10,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:5}},g.createElement(e,{style:{fontSize:13,fontWeight:"bold"}},o.name),g.createElement(e,{style:{fontSize:10,fontWeight:"bold",backgroundColor:"#f0f0f0",padding:2,paddingLeft:4,paddingRight:4}},o.deliveryMode==="speedpost"?"SP":o.deliveryMode==="international-post"?"IP":"NP")),g.createElement(View,{style:{marginBottom:5}},g.createElement(e,{style:{fontSize:11}},o.address)),g.createElement(e,{style:{fontSize:11,marginBottom:5}},o.phone),g.createElement(View,{style:{borderTop:"0.5pt dashed #CCC",marginTop:5,marginBottom:5}}),g.createElement(e,{style:{fontSize:10,color:"#666"}},"Note: ",o.pujaDetails))))),ti=Ho;var Go=({startDate:r,endDate:n,templeName:p,pujas:o,reportTiming:a,selectedPujaNames:f=[]})=>{let b=0,V=0,s=o.some(l=>l.bookings.some(t=>t.requires_coupon));return !o||o.length===0?g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Custom Puja Report",templeName:p,reportTiming:a}),f.length>0&&g.createElement(View,{style:{marginTop:10,marginBottom:10}},g.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),g.createElement(e,{style:{fontSize:12,marginTop:100,textAlign:"center"}},"No data available for the selected date range and pujas"))):g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:a,reportName:"",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:8}},"C = Collect | D = Distribute | P = Postal")),f.length>0&&g.createElement(View,{style:{marginTop:10,marginBottom:5}},g.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),o.some(l=>l.bookings.some(t=>t.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:10}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(l=>l.bookings.some(t=>t.is_early_reminder&&!t.requires_coupon))?o.flatMap((l,t)=>l.bookings.filter(i=>i.is_early_reminder&&!i.requires_coupon).map((i,d)=>(V++,g.createElement(View,{key:`${t}-${d}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"53%"}},g.createElement(e,null,l.name)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"7%"}},g.createElement(e,null,i.collectionMode||"")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:"20%"}},g.createElement(e,null,i.date?new Date(i.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginTop:20}},"Custom Puja Report"),g.createElement(e,{style:{fontSize:12}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10}},o.map((l,t)=>l.bookings.every(i=>i.is_early_reminder||i.requires_coupon)?null:(b=0,g.createElement(View,{key:t,style:{marginBottom:25}},g.createElement(View,null,g.createElement(e,{style:{fontSize:10,fontWeight:"bold",border:"1px solid black",padding:6,textAlign:"center",borderBottom:"none"}},`${l.name} - ${l.bookings.length}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode"))),l.bookings.map((i,d)=>i.is_early_reminder||i.requires_coupon?null:(b++,g.createElement(View,{key:d,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,b)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,i.invoiceNumber)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${30*1.11111}%`}},g.createElement(e,null,i.devoteeName)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${23*1.11111}%`}},g.createElement(e,null,i.nakshatra)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"1px solid black",width:`${10*1.11111}%`}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:6,fontSize:10,borderRight:"none",width:`${7*1.11111}%`}},g.createElement(e,null,i.collectionMode||""))),i.priestNote&&g.createElement(View,{style:{padding:6,fontSize:10,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,i.priestNote))))))))))),s?g.createElement(Page,{size:"A4",style:{padding:30,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:15,width:75,marginBottom:10},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:10,gap:15}},(()=>{let l=o.flatMap(i=>i.bookings.filter(d=>d.requires_coupon).map(d=>({...d,pujaName:i.name}))),t={};for(let i of l)t[i.invoiceNumber]||(t[i.invoiceNumber]=[]),t[i.invoiceNumber].push(i);return Object.entries(t).map(([i,d],c)=>{let de=d,D=de[0];return g.createElement(View,{key:i,style:{marginBottom:10,fontSize:18,padding:10,border:"1px dotted black",position:"relative"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:10}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10}},g.createElement(e,{style:{fontWeight:"semibold"}},i),g.createElement(e,null,D.date?new Date(D.date).toDateString():r.toDateString())),g.createElement(e,null,D.phone_number)),g.createElement(View,{style:{height:15,width:"100%"}}),de.map((U,le)=>g.createElement(View,{key:le,style:{display:"flex",flexDirection:"row",marginTop:25}},g.createElement(e,null,`${U.devoteeName} ----- ${U.nakshatra} ----- ${U.pujaName}`))),g.createElement(View,null,g.createElement(e,{style:{textAlign:"center",marginTop:10,fontSize:10,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},oi=Go;var Uo=({startDate:r,templeName:n,pujas:p,reportTiming:o,selectedPujaNames:a=[]})=>{return !p||p.length===0?g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:50}},"No data available"))):g.createElement(Document,null,g.createElement(Page,{size:[110*2.83465,297*2.83465],style:{padding:12,fontFamily:"Noto Sans"}},g.createElement(View,{style:{marginBottom:15,paddingBottom:10,borderBottom:"2pt solid #000"}},g.createElement(e,{style:{fontSize:16,fontWeight:"bold",textAlign:"center",marginBottom:4}},n),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginBottom:4,fontWeight:"semibold"}},"Custom Report"),g.createElement(e,{style:{fontSize:12,textAlign:"center"}},r.toLocaleDateString()),o&&g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},o.charAt(0).toUpperCase()+o.slice(1)," ","Report")),a.length>0&&g.createElement(View,{style:{backgroundColor:"#E3F2FD",padding:8,marginBottom:12}},g.createElement(e,{style:{fontSize:10,fontWeight:"semibold"}},"Selected Pujas:"),g.createElement(e,{style:{fontSize:9,marginTop:2}},a.join(", "))),p.map((b,V)=>{let s=b.bookings.filter(l=>!l.is_early_reminder&&!l.requires_coupon);return s.length===0?null:g.createElement(View,{key:V,style:{marginBottom:20},wrap:false},g.createElement(View,{style:{backgroundColor:"#FFE082",padding:10,marginBottom:8}},g.createElement(e,{style:{fontSize:14,fontWeight:"bold",textAlign:"center"}},b.name),g.createElement(e,{style:{fontSize:11,textAlign:"center",marginTop:2}},s.length," booking",s.length>1?"s":"")),s.map((l,t)=>(g.createElement(View,{key:t,style:{border:"1pt solid #999",padding:10,marginBottom:6,backgroundColor:"#FFF"},wrap:false},g.createElement(View,{style:{marginBottom:6}},g.createElement(e,{style:{fontSize:11,color:"#666"}},l.invoiceNumber)),g.createElement(e,{style:{fontSize:14,fontWeight:"bold",marginBottom:6}},l.devoteeName),g.createElement(View,{style:{flexDirection:"row",justifyContent:"space-between"}},g.createElement(e,{style:{fontSize:12}},l.nakshatra),g.createElement(e,{style:{fontSize:12}},"Qty: ",l.quantity)),l.collectionMode&&g.createElement(View,{style:{marginTop:4}},g.createElement(e,{style:{fontSize:11,color:"#666"}},"Mode: ",l.collectionMode)),l.priestNote&&g.createElement(View,{style:{marginTop:6,paddingTop:6,borderTop:"0.5pt dashed #CCC"}},g.createElement(e,{style:{fontSize:11,color:"#666"}},l.priestNote))))))}),g.createElement(View,{style:{marginTop:20,paddingTop:10,borderTop:"1pt solid #CCC"}},g.createElement(e,{style:{fontSize:9,textAlign:"center",color:"#666"}},"bookmypuja.app"))))},li=Uo;var Yo=({startDate:r,endDate:n,templeName:p,data:o,reportTiming:a})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,templeName:p,reportTiming:a,reportName:"Temple Prasad (Kitchen) Report"}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:9,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"60%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:4,borderRight:"none",width:"20%"}},g.createElement(e,null,"Quantity"))),o.map((f,b)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,b+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"60%"}},g.createElement(e,null,f.name)),g.createElement(View,{style:{padding:4,borderRight:"none",width:"20%"}},g.createElement(e,null,f.quantity))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))),si=Yo;var Ro=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayWiseTotals:f,summary:b})=>{let V=b?.totalBookingsAmount??o.reduce((t,i)=>i.status==="cancelled"?t:t+i.bookingAmount,0),s=b?.totalPostalCharges??o.reduce((t,i)=>i.status==="cancelled"?t:t+(i.postalCharges||0),0),l=b?.totalCreditedAmount??o.reduce((t,i)=>i.status==="cancelled"?t:t+i.creditedAmount,0);return g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Transactions Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8}},g.createElement(View,{style:{marginBottom:12}},g.createElement(e,{style:{fontSize:9}},"Total Bookings Amount: ",V.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),g.createElement(e,{style:{fontSize:9}},"Total Postal Charges Collected: ",s.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})),g.createElement(e,{style:{fontSize:9}},"Total Amount Credited to Temple: ",l.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),a&&f&&f.length>0&&g.createElement(View,{style:{marginBottom:15}},g.createElement(View,{style:{marginBottom:6,paddingBottom:3,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"Day Wise Totals")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Puja Amount")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Postal Charges")),g.createElement(View,{style:{padding:4,width:"25%"}},g.createElement(e,null,"Credited Amount"))),f.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.dateDisplay)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.pujaAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.postalCharges.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:4,width:"25%"}},g.createElement(e,null,t.creditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"})))))),g.createElement(View,null,a&&g.createElement(View,{style:{marginBottom:6,paddingBottom:3,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},"All Bookings")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"6%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"19%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"17%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,"Puja Amt")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"11%"}},g.createElement(e,null,"Delivery")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"14%"}},g.createElement(e,null,"Credited Amt")),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,"Transaction ID"))),o.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"6%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"19%"}},g.createElement(e,null,t.date," ",t.time)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"17%"}},g.createElement(e,null,t.invoiceNumber)),t.status=="cancelled"?g.createElement(View,{style:{padding:4,width:"58%"}},g.createElement(e,{style:{textAlign:"center"}},"CANCELLED")):g.createElement(g.Fragment,null,g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,t.bookingAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"11%"}},g.createElement(e,null,(t.postalCharges||0).toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"14%"}},g.createElement(e,null,t.creditedAmount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,t.transactionId))))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range"))))},di=Ro;var ir=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f})=>{let b=t=>{let i="";try{let d=JSON.parse(t.address);i=`${d.address}, ${d.locality}, ${d.state} - ${d.pincode}`;}catch(d){console.error("Error parsing address:",d),i=t.address;}return {...t,address:i}},V=o.map(b),s=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"18%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,"Address")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,width:"15%"}},g.createElement(e,null,"Amount"))),l=(t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,new Date(t.date).toLocaleDateString("en-GB",{day:"2-digit",month:"2-digit",year:"2-digit"}))),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"13%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"18%"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"25%"}},g.createElement(e,null,t.address)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.pujaName)),g.createElement(View,{style:{padding:4,width:"15%"}},g.createElement(e,null,t.amount.toLocaleString("en-IN",{maximumFractionDigits:2,style:"currency",currency:"INR"}))));return g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Delivery Address",templeName:p}),V.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},a&&f&&f.length>0?g.createElement(g.Fragment,null,f.map((t,i)=>{let d=t.items.map(b);return g.createElement(View,{key:t.dateKey,style:{marginBottom:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:6,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},t.dateDisplay),g.createElement(e,{style:{fontSize:9}},t.count," delivery",t.count!==1?" items":" item")),s(),d.map((c,de)=>l(c,de)))})):g.createElement(g.Fragment,null,s(),V.map((t,i)=>l(t,i)))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))},ai=ir;var nr=({startDate:r,endDate:n,templeName:p,data:o,reportTiming:a,isDayWiseGrouped:f,dayGroups:b})=>{o.sort((t,i)=>t.invoiceNumber.localeCompare(i.invoiceNumber));let s=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"23%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:4,width:"10%",borderRight:"1px solid black"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,width:"7%"}},g.createElement(e,null,"Mode"))),l=(t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"23%",fontSize:8,flexWrap:"wrap"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%",fontSize:8,flexWrap:"wrap"}},g.createElement(e,null,t.pujaName," - ",t.prasadName)),g.createElement(View,{style:{padding:4,width:"10%",borderRight:"1px solid black"}},g.createElement(e,null,t.quantity)),g.createElement(View,{style:{padding:4,width:"7%"}},g.createElement(e,null,t.collectionMode)));return g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Report",templeName:p,reportTiming:a}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:7}},"C = Collect | D = Distribute | P = Postal")),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},f&&b&&b.length>0?g.createElement(g.Fragment,null,b.map((t,i)=>g.createElement(View,{key:t.dateKey,style:{marginBottom:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:6,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:9,fontWeight:"bold"}},t.dateDisplay),g.createElement(e,{style:{fontSize:9}},t.count," item",t.count!==1?"s":"")),s(),t.items.map((d,c)=>l(d,c))))):g.createElement(g.Fragment,null,s(),o.map((t,i)=>l(t,i)))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))},pi=nr;var sr=({startDate:r,endDate:n,templeName:p,pujas:o,reportTiming:a,isDayWiseGrouped:f})=>{let b=0,V=0,s=o.some(l=>l.bookings.some(t=>t.requires_coupon));return !o||o.length===0?g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Puja List",templeName:p,reportTiming:a}),g.createElement(e,{style:{fontSize:11,marginTop:80,textAlign:"center"}},"No data available for the selected date range"))):g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:a,reportName:"",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:7}},"C = Collect | D = Distribute | P = Postal")),o.some(l=>l.bookings.some(t=>t.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:8}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(l=>l.bookings.some(t=>t.is_early_reminder&&!t.requires_coupon))?o.flatMap((l,t)=>l.bookings.filter(i=>i.is_early_reminder&&!i.requires_coupon).map((i,d)=>(V++,g.createElement(View,{key:`${t}-${d}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"53%"}},g.createElement(e,null,l.name)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"7%"}},g.createElement(e,null,i.collectionMode||"")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:"20%"}},g.createElement(e,null,i.date?new Date(i.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:15}},"Puja List"),g.createElement(e,{style:{fontSize:10}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8}},o.map((l,t)=>{if(l.bookings.every(D=>D.is_early_reminder||D.requires_coupon))return null;b=0;let i=l.bookings.some(D=>D.topping_name),d=f&&l.dayGroups&&l.dayGroups.length>0,c=(D=false)=>i?g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:D?void 0:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"5%"}},g.createElement(e,null,"Sr")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"12%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"22%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"31%"}},g.createElement(e,null,"Topping"))):g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:D?void 0:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode"))),de=(D,U,le)=>D.is_early_reminder||D.requires_coupon?null:i?g.createElement(View,{key:U,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"5%"}},g.createElement(e,null,le)),g.createElement(View,{style:{padding:4,fontSize:6,borderRight:"1px solid black",width:"12%"}},g.createElement(e,null,D.invoiceNumber)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,D.devoteeName)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"22%"}},g.createElement(e,null,D.nakshatra)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:"31%"}},g.createElement(e,null,D.topping_name||""))):g.createElement(View,{key:U,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,le)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:4,fontSize:6,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,D.invoiceNumber)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${30*1.11111}%`}},g.createElement(e,null,D.devoteeName)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${23*1.11111}%`}},g.createElement(e,null,D.nakshatra)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${10*1.11111}%`}},g.createElement(e,null,D.quantity)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:`${7*1.11111}%`}},g.createElement(e,null,D.collectionMode||""))),D.priestNote&&g.createElement(View,{style:{padding:4,fontSize:9,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,D.priestNote))));return g.createElement(View,{key:t,style:{marginBottom:20}},g.createElement(View,{wrap:false,minPresenceAhead:15},g.createElement(e,{style:{fontSize:9,fontWeight:"bold",border:"1px solid black",padding:4,textAlign:"center",borderBottom:"none"}},`${l.name} - ${l.totalBookings||l.bookings.length}`),!d&&c(true)),d?g.createElement(g.Fragment,null,l.dayGroups.map((D,U)=>{let le=0,Be=D.items.filter($e=>!$e.is_early_reminder&&!$e.requires_coupon);return Be.length===0?null:g.createElement(View,{key:D.dateKey,style:{marginTop:U>0?12:0}},g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",backgroundColor:"#f0f0f0",border:"1px solid black",borderBottom:"none",padding:4}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},D.dateDisplay),g.createElement(e,{style:{fontSize:8}},`${Be.length} booking${Be.length!==1?"s":""}`)),c(false),Be.map(($e,st)=>(le++,de($e,st,le))))})):g.createElement(g.Fragment,null,l.bookings.map((D,U)=>D.is_early_reminder||D.requires_coupon?null:(b++,de(D,U,b)))))}))),s?g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:12,width:60,marginBottom:8},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8,gap:12}},(()=>{let l=o.flatMap(i=>i.bookings.filter(d=>d.requires_coupon).map(d=>({...d,pujaName:i.name}))),t={};for(let i of l)t[i.invoiceNumber]||(t[i.invoiceNumber]=[]),t[i.invoiceNumber].push(i);return Object.entries(t).map(([i,d],c)=>{let de=d,D=de[0];return g.createElement(View,{key:i,style:{marginBottom:8,fontSize:14,padding:8,border:"1px dotted black",position:"relative"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8}},g.createElement(e,{style:{fontWeight:"semibold"}},i),g.createElement(e,null,D.date?new Date(D.date).toDateString():r.toDateString())),g.createElement(e,null,D.phone_number)),g.createElement(View,{style:{height:10,width:"100%"}}),de.map((U,le)=>g.createElement(View,{key:le,style:{display:"flex",flexDirection:"row",marginTop:18}},g.createElement(e,null,`${U.devoteeName} ----- ${U.nakshatra} ----- ${U.pujaName}`))),g.createElement(View,null,g.createElement(e,{style:{textAlign:"center",marginTop:8,fontSize:8,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},mi=sr;var pr=({templeName:r,startDate:n,endDate:p,pujas:o,reportTiming:a})=>{let f=o.sort((b,V)=>{let s=b.nakshatras.length;return V.nakshatras.length-s});return g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:n,endDate:p,reportTiming:a,reportName:"Puja Summary",templeName:r}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},f.map((b,V)=>g.createElement(g.Fragment,null,g.createElement(View,{style:{marginBottom:20}},g.createElement(View,null,g.createElement(e,{style:{fontSize:9,fontWeight:"bold",border:"1px solid black",padding:4,textAlign:"center",borderBottom:"none"}},`${b.name} - ${b.totalCount}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:4,fontSize:9,width:"20%",fontWeight:"semibold"}},g.createElement(e,null,"Quantity"))),b.nakshatras.map((s,l)=>g.createElement(g.Fragment,null,g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"60%"}},g.createElement(e,null,s.name)),g.createElement(View,{style:{padding:4,fontSize:9,width:"20%"}},g.createElement(e,null,s.count))))))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))},ui=pr;var mr=({startDate:r,endDate:n,templeName:p,pujaData:o,prasadData:a,deliveryData:f,reportTiming:b})=>{f=f.map(t=>{let i="";try{let d=JSON.parse(t.address);i=`${d.address}, ${d.locality}, ${d.state} - ${d.pincode}`;}catch(d){console.error("Error parsing address:",d),i=t.address;}return {...t,address:i}});let V=0,s=0,l=o.some(t=>t.bookings.some(i=>i.requires_coupon));return o.length==0&&a.length==0&&f.length==0?g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Combined Report",templeName:p}),g.createElement(e,{style:{fontSize:10,marginTop:80,textAlign:"center"}},"No data available for the selected date range"))):g.createElement(g.Fragment,null,g.createElement(Document,null,o.length>0&&g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"",templeName:""}),o.some(t=>t.bookings.some(i=>i.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:8}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"60%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(t=>t.bookings.some(i=>i.is_early_reminder&&!i.requires_coupon))?o.flatMap((t,i)=>t.bookings.filter(d=>d.is_early_reminder&&!d.requires_coupon).map((d,c)=>(s++,g.createElement(View,{wrap:false,key:`${i}-${c}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,s)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"60%"}},g.createElement(e,null,t.name)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,d.quantity)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:"20%"}},g.createElement(e,null,d.date?new Date(d.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:15}},"Puja List"),g.createElement(e,{style:{fontSize:10}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8}},o.map((t,i)=>t.bookings.every(d=>d.is_early_reminder||d.requires_coupon)?null:(V=0,g.createElement(g.Fragment,null,g.createElement(View,{style:{marginBottom:20}},g.createElement(View,null,g.createElement(e,{style:{fontSize:9,fontWeight:"bold",border:"1px solid black",padding:4,textAlign:"center",borderBottom:"none"}},`${t.name} - ${t.bookings.length}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"35%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"25%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty"))),t.bookings.map((d,c)=>d.is_early_reminder||d.requires_coupon?null:(V++,g.createElement(g.Fragment,null,g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,d.invoiceNumber)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${35*1.11111}%`}},g.createElement(e,null,d.devoteeName)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${25*1.11111}%`}},g.createElement(e,null,d.nakshatra)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:`${10*1.11111}%`}},g.createElement(e,null,d.quantity))),d.priestNote&&g.createElement(View,{style:{padding:4,fontSize:9,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,d.priestNote))))))))))))),o.length>0&&l&&g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:12,width:60,marginBottom:8},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8,gap:12}},(()=>{let t=o.flatMap(d=>d.bookings.filter(c=>c.requires_coupon).map(c=>({...c,pujaName:d.name}))),i={};for(let d of t)i[d.invoiceNumber]||(i[d.invoiceNumber]=[]),i[d.invoiceNumber].push(d);return Object.entries(i).map(([d,c],de)=>{let D=c,U=D[0];return g.createElement(View,{key:d,style:{marginBottom:8,fontSize:14,padding:8,border:"1px dotted black"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8}},g.createElement(e,{style:{fontWeight:"semibold"}},d),g.createElement(e,null,U.date?new Date(U.date).toDateString():r.toDateString())),g.createElement(e,null,U.phone_number)),g.createElement(View,{style:{height:10,width:"100%"}}),D.map((le,Be)=>g.createElement(View,{key:Be,style:{display:"flex",flexDirection:"row",marginTop:18}},g.createElement(e,null,`${le.devoteeName} ----- ${le.nakshatra} ----- ${le.pujaName}`))))})})())),a.length>0&&g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Prasad Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,"Prasad Name")),g.createElement(View,{style:{padding:4,width:"10%"}},g.createElement(e,null,"Qty"))),a.map((t,i)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"20%"}},g.createElement(e,null,t.invoiceNumber)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,t.devoteeName)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"30%"}},g.createElement(e,null,t.prasadName)),g.createElement(View,{style:{padding:4,width:"10%"}},g.createElement(e,null,t.quantity)))))),f.length>0&&g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:b,reportName:"Prasad Delivery Postal Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:15,width:"100%",gap:15,flexWrap:"wrap"}},f&&f.map(t=>{let i=fo.toDataURL(t.qrContent);return g.createElement(View,{wrap:false,key:t.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:5}},g.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:4}},g.createElement(View,null,g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},t.name),g.createElement(View,{style:{fontSize:8}},g.createElement(q,{splitat:"words"},t.address)),g.createElement(e,{style:{fontSize:8}},t.phone)),t.qrContent&&i?g.createElement(View,{style:{flexShrink:0,width:45,maxWidth:45,display:"flex",flexDirection:"column",alignItems:"center"}},g.createElement(Image,{src:i,style:{width:40,height:40,minWidth:40,maxWidth:40}}),g.createElement(e,{style:{fontSize:6}},"BookMyPuja")):null),g.createElement(View,{style:{borderTop:"1px solid black",marginTop:4,paddingTop:2,borderStyle:"dotted"}}),g.createElement(e,{style:{fontSize:7,marginTop:2}},"Note: ",t.pujaDetails))})))))},xi=mr;var fr=({startDate:r,endDate:n,data:p})=>g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Temple Payment Report",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black",fontWeight:"semibold",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,"S.No.")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"55%"}},g.createElement(e,null,"Temple Name")),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"15%"}},g.createElement(e,null,"Bookings")),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,"Revenue"))),p?.map((o,a)=>g.createElement(View,{key:a,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,a+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"55%"}},g.createElement(e,null,o.name)),g.createElement(View,{style:{padding:4,borderRight:"1px solid black",width:"15%"}},g.createElement(e,null,o.bookings)),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,"\u20B9",o.revenue))))))),wi=fr;var br=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f})=>{let b=()=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:8,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Date")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Settlement")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"UTR")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"25%"}},g.createElement(e,null,"Invoice")),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,"Settlement ID"))),V=(s,l)=>g.createElement(View,{key:l,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:4,width:"15%",borderRight:"1px solid #000"}},g.createElement(e,null,s.date)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,s.settlement_amount)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%",fontSize:7}},g.createElement(e,null,s.utr.split("").map((t,i)=>g.createElement(e,{key:i},t)))),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"25%",fontSize:7}},g.createElement(View,{style:{display:"flex",flexDirection:"column"}},s.invoices.map((t,i)=>g.createElement(e,{key:i},t.number," (",t.amount,")")))),g.createElement(View,{style:{padding:4,width:"20%"}},g.createElement(e,null,s.settlement_id)));return g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Settlements Report",templeName:p}),g.createElement(e,{style:{fontSize:9,marginTop:8}},"Total Credited Amount: ",o.totalCreditedAmount),o.settlements.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},a&&f&&f.length>0?g.createElement(g.Fragment,null,f.map((s,l)=>g.createElement(View,{key:s.dateKey,style:{marginBottom:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:6,border:"1px solid black",borderBottom:"none"}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:8}},s.count," settlement",s.count!==1?"s":""," | ",s.dayTotal)),b(),s.items.map((t,i)=>V(t,i))))):g.createElement(g.Fragment,null,b(),o.settlements.map((s,l)=>V(s,l)))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))},bi=br;var Dr=({data:r})=>g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(View,{style:{display:"flex",flexDirection:"row",width:"100%"}},g.createElement(View,{style:{backgroundColor:"#FFA823",width:15,height:"100%"}}),g.createElement(View,{style:{marginLeft:10,marginTop:8,marginBottom:0,flex:1}},g.createElement(e,{style:{fontSize:13,fontWeight:"bold"}},r.templeName),g.createElement(e,{style:{fontSize:8}},r.templeAddress),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:4,marginTop:8,alignItems:"center"}},g.createElement(e,{style:{fontSize:8,marginTop:-4}},"Powered by"),g.createElement(Image,{style:{height:20,width:75,objectFit:"contain"},src:ot}))),r.qrContent?g.createElement(View,{style:{width:65}},g.createElement(Image,{style:{height:55,width:55,marginBottom:4,objectFit:"contain",position:"absolute",right:"0",bottom:"0"},src:r.qrContent})):null),g.createElement(View,{style:{display:"flex",flexDirection:"column",alignItems:"center",marginTop:15,position:"relative"}},r.status==="confirmed"?g.createElement(Image,{style:{height:65,width:65,marginBottom:4,objectFit:"contain",position:"absolute",right:"0",top:"0"},src:rt}):null,g.createElement(e,{style:{fontSize:10,marginTop:4,fontWeight:"semibold"}},"INVOICE #",r.invoiceNumber),g.createElement(e,{style:{fontSize:8,marginTop:2}},"Status: ",r.status=="confirmed"?"PAID":"PENDING")),g.createElement(View,{style:{marginTop:8}},g.createElement(e,{style:{fontSize:9}},"Bill to:"),g.createElement(e,{style:{fontSize:9}},r.devoteeDetails.name),r.devoteeDetails.phone?g.createElement(e,{style:{fontSize:9}},r.devoteeDetails.phone):null,g.createElement(e,{style:{fontSize:9}},r.bookingDate)),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:8,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"50%"}},g.createElement(e,null,"Item Description")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},g.createElement(e,null,"Price")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center"}},g.createElement(e,null,"Quantity")),g.createElement(View,{style:{padding:4,width:"20%",textAlign:"center"}},g.createElement(e,null,"Total"))),r.items.map((n,p)=>g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"row",borderBottom:"1px solid #757575",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"50%"}},n.pujaName?g.createElement(e,{style:{fontSize:9}},n.pujaName):null,n.devoteesName?g.createElement(e,{style:{fontSize:7,color:"#333333"}},n.devoteesName):null,n.pujaDate?g.createElement(e,{style:{fontSize:7,color:"#333333"}},n.pujaDate," ",n.timing?`- ${n.timing}`:null):null,n.repeatEndDate&&n.repeatStartDate?g.createElement(e,{style:{fontSize:7,color:"#333333"}},n.repeatStartDate," to ",n.repeatEndDate," ",n.timing?`- ${n.timing}`:null):null),g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},n.basePujPrice)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #b5b5b5",width:"15%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},`${n.quantity?n.quantity:""}${n.repeatCount?` x ${n.repeatCount}`:""}`)),g.createElement(View,{style:{padding:4,width:"20%",textAlign:"center",display:"flex",alignItems:"center",justifyContent:"center"}},g.createElement(e,{style:{}},n.totalPrice))))),g.createElement(View,{style:{display:"flex",flexDirection:"row",marginVertical:15,marginHorizontal:15}},g.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",fontSize:9}},g.createElement(e,{style:{fontWeight:"bold"}},"Payment Method:"),g.createElement(e,null,r.paymentMethod)),g.createElement(View,{style:{width:"50%",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"flex-end"}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8}},g.createElement(View,{style:{width:"50%",textAlign:"right"}},g.createElement(e,null,"Subtotal: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.subTotal))),r.postalCharges?g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Postal Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.postalCharges))):null,g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Payment Gateway Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.paymentGatewayCharges))),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Platform Charges: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.platformCharges))),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"GST (18%): ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.gst))),g.createElement(View,{style:{width:"60%",height:1,backgroundColor:"#757575",marginVertical:4}}),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8,fontSize:8,fontWeight:"bold"}},g.createElement(View,{style:{width:"70%",textAlign:"right"}},g.createElement(e,null,"Total: ")),g.createElement(View,{style:{width:"30%",textAlign:"right"}},g.createElement(e,null,r.totalAmount))))),r.prasadCollectionMode?g.createElement(View,{style:{marginBottom:4}},g.createElement(e,{style:{fontSize:9,marginTop:4}},"Prasad Collection Mode: ",r.prasadCollectionMode)):null,r.devoteeDetails.address?g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:9,maxWidth:300,marginBottom:15}},"Address: ",r.devoteeDetails.address)):null,r.prasads&&(r.prasads.morning.length>0||r.prasads.afternoon.length>0||r.prasads.evening.length>0)?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginBottom:20}},g.createElement(View,{style:{backgroundColor:"#FF266F",padding:4}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold",color:"white"}},"Prasadsam Details")),r.prasads.morning.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:8,paddingVertical:4,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:7,fontWeight:"bold"}},"Morning:"),r.prasads.morning.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:8}},p+1,". ",n.name," (",n.timings,")"))):null,r.prasads.afternoon.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:8,paddingVertical:4,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:7,fontWeight:"bold"}},"Afternoon:"),r.prasads.afternoon.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:8}},p+1,". ",n.name," (",n.timings,")"))):null,r.prasads.evening.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",paddingHorizontal:8,paddingVertical:4,borderBottom:"1px solid #757575",borderRight:"1px solid #757575",borderLeft:"1px solid #757575"}},g.createElement(e,{style:{fontSize:7,fontWeight:"bold"}},"Evening:"),r.prasads.evening.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:8}},p+1,". ",n.name," (",n.timings,")"))):null):null,r.instructions.length>0?g.createElement(View,{wrap:false,style:{display:"flex",flexDirection:"column",marginHorizontal:15,fontSize:7,border:"1px solid #757575"}},g.createElement(View,{style:{backgroundColor:"#FFA823",paddingHorizontal:8,paddingVertical:4}},g.createElement(e,null,"IMPORTANT INSTRUCTIONS:")),g.createElement(View,{style:{display:"flex",flexDirection:"column",gap:4,marginVertical:8,paddingHorizontal:8}},r.instructions.map((n,p)=>g.createElement(e,{key:p,style:{fontSize:7}},p+1,") ",n.instruction)))):null,g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:15}},g.createElement(e,{style:{fontSize:7,fontWeight:"bold"}},"Terms and Conditions:"),g.createElement(e,{style:{fontSize:7,marginLeft:4}},"https://www.bookmypuja.app/terms-and-condition")))),hi=Dr;var Pr=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Prasad Delivery Postal Report",templeName:p}),g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:10,marginTop:8,fontSize:7}},g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"NP")," - Normal Post"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"SP")," - Speed Post"),g.createElement(e,null,g.createElement(e,{style:{fontWeight:"bold"}},"IP")," - International Post")),o&&o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"row",marginTop:15,width:"100%",gap:15,flexWrap:"wrap"}},o.map(a=>{let f=a.qrContent,b=fo.toDataURL(f);return g.createElement(View,{wrap:false,key:a.id,style:{width:"46%",display:"flex",flexDirection:"column",border:"1px solid black",borderStyle:"dotted",borderWidth:1.5,padding:5}},g.createElement(View,{style:{flexGrow:1,display:"flex",flexDirection:"row",justifyContent:"space-between",gap:4}},g.createElement(View,null,g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},a.name),g.createElement(View,{style:{fontSize:8}},g.createElement(q,{splitat:"words"},a.address)),g.createElement(e,{style:{fontSize:8}},a.phone)),a.qrContent&&b?g.createElement(View,{style:{flexShrink:0,width:45,maxWidth:45,display:"flex",flexDirection:"column",alignItems:"center"}},g.createElement(e,{style:{fontSize:7,fontWeight:"bold",marginBottom:1}},a.deliveryMode==="speedpost"?"SP":a.deliveryMode==="international-post"?"IP":"NP"),g.createElement(Image,{src:b,style:{width:40,height:40,minWidth:40,maxWidth:40}}),g.createElement(e,{style:{fontSize:6}},"BookMyPuja")):null),g.createElement(View,{style:{borderTop:"1px solid black",marginTop:4,paddingTop:2,borderStyle:"dotted"}}),g.createElement(e,{style:{fontSize:7,marginTop:2}},"Note: ",a.pujaDetails))})):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range"))),Ti=Pr;var Nr=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Payment Settlement Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:8,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Amount")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Payment Date")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(e,null,"Settlement Date")),g.createElement(View,{style:{padding:4,borderRight:"none",width:"25%"}},g.createElement(e,null,"Bank UTR No"))),o.map((a,f)=>g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:8}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,f+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(q,null,a.invoiceNo)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(q,null,a.amount)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(q,null,a.paymentDate)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"20%"}},g.createElement(q,null,a.settlementDate)),g.createElement(View,{style:{padding:4,borderRight:"none",width:"25%"}},g.createElement(q,null,a.bankUtrNo))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))),Di=Nr;var Br=({startDate:r,endDate:n,templeName:p,data:o})=>g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Invoice Level Breakup",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:6,fontWeight:"semibold"}},g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"4%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Invoice Number")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Base Amount")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Platform Fees")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Platform Fees GST")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Gateway Charges")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Gateway GST")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Payment Mode")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Booking Date")),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(e,null,"Settlement Date")),g.createElement(View,{style:{padding:2,borderRight:"none",width:"12%"}},g.createElement(e,null,"UTR Number"))),o.map((a,f)=>g.createElement(View,{key:f,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:6}},g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"4%"}},g.createElement(e,null,f+1)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.invoiceNumber)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.baseAmount)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.platformFees)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.platformFeesGST)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.gatewayCharges)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.gatewayChargesGST)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%"}},g.createElement(q,null,a.paymentMode)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%",fontSize:5}},g.createElement(q,null,a.bookingDate)),g.createElement(View,{style:{padding:2,borderRight:"1px solid #000",width:"9%",fontSize:5}},g.createElement(q,null,a.settlementDate)),g.createElement(View,{style:{padding:2,width:"12%"}},g.createElement(q,null,a.utrNumber))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range")))),Vi=Br;var jr=({startDate:r,endDate:n,templeName:p,data:o,isDayWiseGrouped:a,dayGroups:f,summary:b})=>{let V=o.reduce((s,l)=>s+l.quantity,0);return g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Total Puja Count Report",templeName:p}),o.length>0?g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:15}},g.createElement(View,{style:{marginBottom:20}},a&&g.createElement(View,{style:{marginBottom:8,paddingBottom:4,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},"Monthly Summary")),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:9,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,"Total Count")),g.createElement(View,{style:{padding:4,borderRight:"none",width:"35%"}},g.createElement(e,null,"Remarks"))),o.map((s,l)=>g.createElement(View,{key:l,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,l+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,null,s.name)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,null,s.quantity)),g.createElement(View,{style:{padding:4,borderRight:"none",width:"35%"}}))),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:9,fontWeight:"bold",backgroundColor:"#f0f0f0"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"40%"}},g.createElement(e,{style:{fontWeight:"bold"}},"Grand Total")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"15%"}},g.createElement(e,{style:{fontWeight:"bold"}},V)),g.createElement(View,{style:{padding:4,borderRight:"none",width:"35%"}}))),a&&f&&f.length>0&&g.createElement(View,null,g.createElement(View,{style:{marginBottom:8,paddingBottom:4,borderBottom:"2px solid #333"}},g.createElement(e,{style:{fontSize:10,fontWeight:"bold"}},"Day-wise Breakdown")),f.map((s,l)=>g.createElement(View,{key:s.dateKey,style:{marginBottom:15}},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",backgroundColor:"#e0e0e0",padding:6,border:"1px solid #000",borderBottom:"none"}},g.createElement(e,{style:{fontSize:8,fontWeight:"bold"}},s.dateDisplay),g.createElement(e,{style:{fontSize:8}},"Day Total: ",s.dayTotal)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid #000",fontSize:9,fontWeight:"semibold"}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,"Sr no")),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"55%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,borderRight:"none",width:"35%"}},g.createElement(e,null,"Count"))),s.items.map((t,i)=>g.createElement(View,{key:i,style:{display:"flex",flexDirection:"row",border:"1px solid #000",borderTop:"none",fontSize:9}},g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"10%"}},g.createElement(e,null,i+1)),g.createElement(View,{style:{padding:4,borderRight:"1px solid #000",width:"55%"}},g.createElement(e,null,t.name)),g.createElement(View,{style:{padding:4,borderRight:"none",width:"35%"}},g.createElement(e,null,t.quantity)))))))):g.createElement(e,{style:{fontSize:14,textAlign:"center",marginTop:80}},"No data available for the selected date range"))))},Si=jr;var cr=({startDate:r,endDate:n,templeName:p,pujas:o,reportTiming:a,selectedPujaNames:f=[]})=>{let b=0,V=0,s=o.some(l=>l.bookings.some(t=>t.requires_coupon));return !o||o.length===0?g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportName:"Custom Puja Report",templeName:p,reportTiming:a}),f.length>0&&g.createElement(View,{style:{marginTop:8,marginBottom:8}},g.createElement(e,{style:{fontSize:9,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),g.createElement(e,{style:{fontSize:10,marginTop:80,textAlign:"center"}},"No data available for the selected date range and pujas"))):g.createElement(g.Fragment,null,g.createElement(Document,null,g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(z,{startDate:r,endDate:n,reportTiming:a,reportName:"",templeName:""}),g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"flex-end",marginTop:1}},g.createElement(e,{style:{fontSize:7}},"C = Collect | D = Distribute | P = Postal")),f.length>0&&g.createElement(View,{style:{marginTop:8,marginBottom:4}},g.createElement(e,{style:{fontSize:9,fontWeight:"semibold"}},"Selected Pujas: ",f.join(", "))),o.some(l=>l.bookings.some(t=>t.is_early_reminder))&&g.createElement(g.Fragment,null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:8}},"Early Reminders for Upcoming Pujas"),g.createElement(View,{style:{marginTop:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"53%"}},g.createElement(e,null,"Puja Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Date"))))),o.some(l=>l.bookings.some(t=>t.is_early_reminder&&!t.requires_coupon))?o.flatMap((l,t)=>l.bookings.filter(i=>i.is_early_reminder&&!i.requires_coupon).map((i,d)=>(V++,g.createElement(View,{key:`${t}-${d}`,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,V)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"53%"}},g.createElement(e,null,l.name)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"7%"}},g.createElement(e,null,i.collectionMode||"")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:"20%"}},g.createElement(e,null,i.date?new Date(i.date).toDateString():"")))))):null,g.createElement(e,{style:{fontSize:12,fontWeight:"bold",marginTop:15}},"Custom Puja Report"),g.createElement(e,{style:{fontSize:10}},`${p}`),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8}},o.map((l,t)=>l.bookings.every(i=>i.is_early_reminder||i.requires_coupon)?null:(b=0,g.createElement(View,{key:t,style:{marginBottom:20}},g.createElement(View,null,g.createElement(e,{style:{fontSize:9,fontWeight:"bold",border:"1px solid black",padding:4,textAlign:"center",borderBottom:"none"}},`${l.name} - ${l.bookings.length}`)),g.createElement(View,{style:{display:"flex",flexDirection:"row",border:"1px solid black"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Sr No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"20%"}},g.createElement(e,null,"Invoice No")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"30%"}},g.createElement(e,null,"Devotee Name")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"23%"}},g.createElement(e,null,"Nakshatra")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",fontWeight:"semibold",width:"10%"}},g.createElement(e,null,"Qty")),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",fontWeight:"semibold",width:"7%"}},g.createElement(e,null,"Mode"))),l.bookings.map((i,d)=>i.is_early_reminder||i.requires_coupon?null:(b++,g.createElement(View,{key:d,wrap:false,style:{display:"flex",flexDirection:"row",border:"1px solid black",borderTop:"none",width:"100%"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:"10%"}},g.createElement(e,null,b)),g.createElement(View,{style:{display:"flex",flexDirection:"column",width:"90%"}},g.createElement(View,{style:{display:"flex",flexDirection:"row"}},g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${20*1.11111}%`}},g.createElement(e,null,i.invoiceNumber)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${30*1.11111}%`}},g.createElement(e,null,i.devoteeName)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${23*1.11111}%`}},g.createElement(e,null,i.nakshatra)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"1px solid black",width:`${10*1.11111}%`}},g.createElement(e,null,i.quantity)),g.createElement(View,{style:{padding:4,fontSize:9,borderRight:"none",width:`${7*1.11111}%`}},g.createElement(e,null,i.collectionMode||""))),i.priestNote&&g.createElement(View,{style:{padding:4,fontSize:9,borderTop:"1px solid black",width:"100%"}},g.createElement(e,null,i.priestNote))))))))))),s?g.createElement(Page,{size:"A5",style:{padding:20,fontFamily:"Noto Sans"}},g.createElement(Image,{fixed:true,style:{height:12,width:60,marginBottom:8},src:De}),g.createElement(View,{style:{display:"flex",flexDirection:"column",marginTop:8,gap:12}},(()=>{let l=o.flatMap(i=>i.bookings.filter(d=>d.requires_coupon).map(d=>({...d,pujaName:i.name}))),t={};for(let i of l)t[i.invoiceNumber]||(t[i.invoiceNumber]=[]),t[i.invoiceNumber].push(i);return Object.entries(t).map(([i,d],c)=>{let de=d,D=de[0];return g.createElement(View,{key:i,style:{marginBottom:8,fontSize:14,padding:8,border:"1px dotted black",position:"relative"},wrap:false},g.createElement(View,{style:{display:"flex",flexDirection:"row",justifyContent:"space-between",gap:8}},g.createElement(View,{style:{display:"flex",flexDirection:"row",gap:8}},g.createElement(e,{style:{fontWeight:"semibold"}},i),g.createElement(e,null,D.date?new Date(D.date).toDateString():r.toDateString())),g.createElement(e,null,D.phone_number)),g.createElement(View,{style:{height:10,width:"100%"}}),de.map((U,le)=>g.createElement(View,{key:le,style:{display:"flex",flexDirection:"row",marginTop:18}},g.createElement(e,null,`${U.devoteeName} ----- ${U.nakshatra} ----- ${U.pujaName}`))),g.createElement(View,null,g.createElement(e,{style:{textAlign:"center",marginTop:8,fontSize:8,opacity:.5}},"~~~ bookmypuja.app - Your Puja, Our Commitment ~~~")))})})())):null))},zi=cr;var Ai={kitchen:{A4:zt,A5:si},transaction:{A4:Pt,A5:di},"prasad-delivery":{A4:kt,A5:ai,"110mm":Yt},prasad:{A4:At,A5:pi,"110mm":Ut},"puja-detailed":{A4:Ct,A5:mi,"110mm":Ht},"puja-summary":{A4:Ft,A5:ui},"combined-report":{A4:Wt,A5:xi,"110mm":Xt},"multi-temple-payment":{A4:jt,A5:wi},"settlements-report":{A4:Et,A5:bi},invoice:{A4:ct,A5:hi},"postal-report":{A4:_t,A5:Ti,"110mm":ti},"payment-settlement-report":{A4:Lt,A5:Di},"invoice-breakup":{A4:qt,A5:Vi},"puja-count":{A4:$t,A5:Si},"custom-report":{A4:oi,A5:zi,"110mm":li}},Ni=class{constructor(n,p){dt(this,"option");dt(this,"size");this.option=n,this.size=p,[{family:"Noto Sans SC",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-serif-sc@latest/chinese-simplified-400-normal.ttf"},{family:"Noto Sans Arabic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-arabic@latest/arabic-400-normal.ttf"},{family:"Noto Sans Devanagari",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-devanagari@latest/devanagari-400-normal.ttf"},{family:"Noto Sans Kannada",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kannada@latest/kannada-400-normal.ttf"},{family:"Noto Sans Tamil",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tamil@latest/tamil-400-normal.ttf"},{family:"Noto Sans Gurmukhi",src:"https://cdn.jsdelivr.net/fontsource/fonts/anek-gurmukhi@latest/gurmukhi-400-normal.ttf"},{family:"Noto Sans Lao",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-lao@latest/lao-400-normal.ttf"},{family:"Noto Sans Thai",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-thai@latest/thai-400-normal.ttf"},{family:"Noto Sans Kr",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kr@latest/korean-400-normal.ttf"},{family:"Noto Sans Bengali",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-bengali@latest/bengali-400-normal.ttf"},{family:"Noto Sans Cyrillic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kr@latest/cyrillic-400-normal.ttf"},{family:"Noto Sans JP",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-jp@latest/japanese-400-normal.ttf"},{family:"Noto Sans Greek",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/greek-400-normal.ttf"},{family:"Noto Sans Latin",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-400-normal.ttf"},{family:"Noto Sans Myanmar",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-myanmar@latest/myanmar-400-normal.ttf"},{family:"Noto Sans Ethiopic",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-ethiopic@latest/ethiopic-400-normal.ttf"},{family:"Noto Sans Khmer",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-khmer@latest/khmer-400-normal.ttf"},{family:"Noto Sans Armenian",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-armenian@latest/armenian-400-normal.ttf"},{family:"Noto Sans Hebrew",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-hebrew@latest/hebrew-400-normal.ttf"},{family:"Noto Sans Georgian",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-georgian@latest/georgian-400-normal.ttf"},{family:"Noto Sans Canadian Aboriginal",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-canadian-aboriginal@latest/canadian-aboriginal-400-normal.ttf"},{family:"Noto Sans Sinhala",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-sinhala@latest/sinhala-400-normal.ttf"},{family:"Noto Sans Ol Chiki",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-ol-chiki@latest/ol-chiki-400-normal.ttf"},{family:"Noto Sans Tibetan",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-serif-tibetan@latest/tibetan-400-normal.ttf"},{family:"Noto Sans Tifinagh",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tifinagh@latest/tifinagh-400-normal.ttf"},{family:"Noto Sans Yi",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-yi@latest/yi-400-normal.ttf"},{family:"Noto Sans Syriac",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-syriac@latest/syriac-400-normal.ttf"},{family:"Noto Sans Thaana",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-thaana@latest/thaana-400-normal.ttf"},{family:"Noto Sans Vai",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-vai@latest/vai-400-normal.ttf"},{family:"Noto Sans Cherokee",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-cherokee@latest/cherokee-400-normal.ttf"},{family:"Noto Sans Tai Tham",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tai-tham@latest/tai-tham-400-normal.ttf"},{family:"Noto Sans Tai Viet",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tai-viet@latest/tai-viet-400-normal.ttf"},{family:"Noto Sans Javanese",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-javanese@latest/javanese-400-normal.ttf"},{family:"Noto Sans Gujarati",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-gujarati@latest/gujarati-400-normal.ttf"},{family:"Noto Sans Malayalam",src:"https://res.cloudinary.com/dpaigt2bx/raw/upload/v1748450359/Manjari-Regular_nrgfti.ttf"},{family:"Noto Sans Telugu",src:"https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-telugu@latest/telugu-400-normal.ttf"}].forEach(({family:a,src:f})=>Font.register({family:a,src:f})),Font.register({family:"Noto Sans",fontWeight:"normal",src:xt}),Font.register({family:"Noto Sans",fontWeight:"bold",src:wt}),Font.register({family:"Noto Sans",fontWeight:"semibold",src:bt});}async print(n){let o=Ai[this.option][this.size],a=g.createElement(o,{...n}),f=pdf(a).toBlob();return f.then(b=>{var V=URL.createObjectURL(b);if(window!=null){let s=window.open(V,"_blank");setTimeout(()=>{s?.print();},1e3);}}),f}async getBlob(n){let o=Ai[this.option][this.size],a=g.createElement(o,{...n});return pdf(a).toBlob()}};
|
|
2
|
+
export{ci as A4Print,Oi as T2Inch,Ni as reportPrinter};
|
package/package.json
CHANGED