Spaces:
Sleeping
Sleeping
File size: 10,642 Bytes
4be2b2b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | import html2canvas from 'html2canvas';
import jsPDF from 'jspdf';
/**
* Export invoice element as high-quality image
*/
export async function exportInvoiceAsImage(
element: HTMLElement,
options?: { scale?: number; format?: 'png' | 'jpeg'; quality?: number }
): Promise<string> {
const { scale = 3, format = 'png', quality = 0.95 } = options || {};
const canvas = await html2canvas(element, {
scale, // Higher quality for better readability
useCORS: true,
backgroundColor: '#ffffff',
logging: false,
windowWidth: element.scrollWidth,
windowHeight: element.scrollHeight,
});
const imageFormat = format === 'jpeg' ? 'image/jpeg' : 'image/png';
return canvas.toDataURL(imageFormat, quality);
}
/**
* Downloads the invoice as an image file
* @param base64Image - Base64 encoded image string
* @param filename - Name of the file to download
*/
export function downloadInvoiceImage(base64Image: string, filename: string = 'invoice.png') {
const link = document.createElement('a');
link.href = base64Image;
link.download = filename;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
/**
* Shares invoice via WhatsApp Web
* @param phoneNumber - Customer's phone number (with country code, e.g., 919876543210)
* @param billNumber - Invoice/Bill number
* @param amount - Total amount
* @param base64Image - Base64 encoded image (optional, for future file sharing)
*/
export function shareInvoiceViaWhatsApp(
phoneNumber: string,
billNumber: string,
amount: number,
language: 'en' | 'mr' = 'mr'
) {
// Clean phone number (remove spaces, hyphens, etc.)
const cleanedNumber = phoneNumber.replace(/[^\d+]/g, '');
// Ensure country code is present
const formattedNumber = cleanedNumber.startsWith('+') || cleanedNumber.startsWith('91')
? cleanedNumber
: `91${cleanedNumber}`;
// Create message text based on language
const message = language === 'mr'
? `नमस्कार,\n\nतुमचे बिल नंबर *${billNumber}* तयार झाले आहे.\n\nएकूण रक्कम: ₹${amount.toLocaleString('en-IN')}\n\nकृपया रक्कम वेळेवर भरावी.\n\nधन्यवाद!`
: `Hello,\n\nYour bill number *${billNumber}* is ready.\n\nTotal Amount: ₹${amount.toLocaleString('en-IN')}\n\nPlease pay on time.\n\nThank you!`;
// WhatsApp Web/API URL
const whatsappUrl = `https://wa.me/${formattedNumber}?text=${encodeURIComponent(message)}`;
// Open WhatsApp
window.open(whatsappUrl, '_blank');
}
/**
* Shares invoice image via WhatsApp using the device's native share (mobile)
* @param base64Image - Base64 encoded image
* @param billNumber - Invoice number
* @param partyName - Customer name
*/
export async function shareInvoiceImageNative(
base64Image: string,
billNumber: string,
partyName: string
) {
try {
// Convert base64 to blob
const response = await fetch(base64Image);
const blob = await response.blob();
// Create a file from blob
const file = new File([blob], `Invoice_${billNumber}.png`, { type: 'image/png' });
// Check if Web Share API is supported
if (navigator.share && navigator.canShare({ files: [file] })) {
await navigator.share({
title: `Invoice ${billNumber}`,
text: `Invoice for ${partyName}`,
files: [file],
});
return true;
} else {
// Fallback: Download the image
downloadInvoiceImage(base64Image, `Invoice_${billNumber}_${partyName}.png`);
return false;
}
} catch (error) {
console.error('Error sharing invoice:', error);
// Fallback: Download the image
downloadInvoiceImage(base64Image, `Invoice_${billNumber}_${partyName}.png`);
return false;
}
}
/**
* Formats phone number for WhatsApp
* @param phone - Phone number in any format
* @returns Formatted phone number with country code
*/
export function formatPhoneForWhatsApp(phone: string): string {
const cleaned = phone.replace(/[^\d+]/g, '');
if (cleaned.startsWith('+91')) {
return cleaned;
} else if (cleaned.startsWith('91') && cleaned.length === 12) {
return `+${cleaned}`;
} else if (cleaned.length === 10) {
return `+91${cleaned}`;
}
return cleaned;
}
/**
* Validates Indian phone number
* @param phone - Phone number to validate
* @returns true if valid
*/
export function isValidIndianPhoneNumber(phone: string): boolean {
const cleaned = phone.replace(/[^\d]/g, '');
// Check if it's a 10-digit number starting with 6-9
if (cleaned.length === 10 && /^[6-9]\d{9}$/.test(cleaned)) {
return true;
}
// Check if it's a 12-digit number starting with 91
if (cleaned.length === 12 && cleaned.startsWith('91') && /^91[6-9]\d{9}$/.test(cleaned)) {
return true;
}
return false;
}
/**
* Export invoice as PDF
*/
export async function exportInvoiceAsPDF(
element: HTMLElement,
filename: string = 'invoice.pdf',
options?: { orientation?: 'portrait' | 'landscape'; format?: 'a4' | 'letter' }
): Promise<void> {
const { orientation = 'portrait', format = 'a4' } = options || {};
// Generate high-quality image first
const imageData = await exportInvoiceAsImage(element, { scale: 3, format: 'jpeg', quality: 0.95 });
// Create PDF
const pdf = new jsPDF({
orientation,
unit: 'mm',
format,
});
// Calculate dimensions to fit page
const imgProps = pdf.getImageProperties(imageData);
const pdfWidth = pdf.internal.pageSize.getWidth();
const pdfHeight = (imgProps.height * pdfWidth) / imgProps.width;
// Add image to PDF
pdf.addImage(imageData, 'JPEG', 0, 0, pdfWidth, pdfHeight);
// Save PDF
pdf.save(filename);
}
/**
* Generate invoice text for WhatsApp or SMS
*/
export function generateInvoiceText(
billNumber: string,
partyName: string,
items: Array<{ name: string; quantity: number; rate: number; amount: number }>,
charges: { bardhana?: number; hamali?: number; adhath?: number; cess?: number; gaadiBharni?: number },
total: number,
language: 'en' | 'mr' = 'mr'
): string {
if (language === 'mr') {
let text = `🧾 *बिल नंबर:* ${billNumber}\n`;
text += `👤 *पार्टी:* ${partyName}\n`;
text += `📅 *तारीख:* ${new Date().toLocaleDateString('mr-IN')}\n\n`;
text += `*📦 माल तपशील:*\n`;
text += `${'─'.repeat(35)}\n`;
items.forEach((item, i) => {
text += `${i + 1}. ${item.name}\n`;
text += ` ${item.quantity} पोत्या × ₹${item.rate} = ₹${item.amount.toLocaleString('en-IN')}\n`;
});
text += `${'─'.repeat(35)}\n`;
// Add charges if any
const totalCharges = (charges.bardhana || 0) + (charges.hamali || 0) +
(charges.adhath || 0) + (charges.cess || 0) + (charges.gaadiBharni || 0);
if (totalCharges > 0) {
text += `\n*💰 खर्च:*\n`;
if (charges.bardhana) text += ` बर्धाना: ₹${charges.bardhana.toLocaleString('en-IN')}\n`;
if (charges.hamali) text += ` हमाली: ₹${charges.hamali.toLocaleString('en-IN')}\n`;
if (charges.adhath) text += ` अडत: ₹${charges.adhath.toLocaleString('en-IN')}\n`;
if (charges.cess) text += ` सेस: ₹${charges.cess.toLocaleString('en-IN')}\n`;
if (charges.gaadiBharni) text += ` गाडी भरणी: ₹${charges.gaadiBharni.toLocaleString('en-IN')}\n`;
text += `${'─'.repeat(35)}\n`;
}
text += `\n*💵 एकूण रक्कम: ₹${total.toLocaleString('en-IN')}*\n\n`;
text += `कृपया रक्कम वेळेवर भरावी.\n\n`;
text += `धन्यवाद! 🙏`;
return text;
} else {
let text = `🧾 *Bill No:* ${billNumber}\n`;
text += `👤 *Party:* ${partyName}\n`;
text += `📅 *Date:* ${new Date().toLocaleDateString('en-IN')}\n\n`;
text += `*📦 Items:*\n`;
text += `${'─'.repeat(35)}\n`;
items.forEach((item, i) => {
text += `${i + 1}. ${item.name}\n`;
text += ` ${item.quantity} bags × ₹${item.rate} = ₹${item.amount.toLocaleString('en-IN')}\n`;
});
text += `${'─'.repeat(35)}\n`;
const totalCharges = (charges.bardhana || 0) + (charges.hamali || 0) +
(charges.adhath || 0) + (charges.cess || 0) + (charges.gaadiBharni || 0);
if (totalCharges > 0) {
text += `\n*💰 Charges:*\n`;
if (charges.bardhana) text += ` Bardhana: ₹${charges.bardhana.toLocaleString('en-IN')}\n`;
if (charges.hamali) text += ` Hamali: ₹${charges.hamali.toLocaleString('en-IN')}\n`;
if (charges.adhath) text += ` Commission: ₹${charges.adhath.toLocaleString('en-IN')}\n`;
if (charges.cess) text += ` Cess: ₹${charges.cess.toLocaleString('en-IN')}\n`;
if (charges.gaadiBharni) text += ` Loading: ₹${charges.gaadiBharni.toLocaleString('en-IN')}\n`;
text += `${'─'.repeat(35)}\n`;
}
text += `\n*💵 Total Amount: ₹${total.toLocaleString('en-IN')}*\n\n`;
text += `Please pay on time.\n\n`;
text += `Thank you! 🙏`;
return text;
}
}
/**
* Share detailed invoice text via WhatsApp
*/
export function shareDetailedInvoiceText(
phoneNumber: string,
invoiceText: string
): void {
const formattedPhone = formatPhoneForWhatsApp(phoneNumber);
const encodedText = encodeURIComponent(invoiceText);
const whatsappUrl = `https://wa.me/${formattedPhone}?text=${encodedText}`;
window.open(whatsappUrl, '_blank');
}
/**
* Prints the invoice
* @param element - The invoice element to print
*/
export function printInvoice(element?: HTMLElement) {
if (element) {
// Create a new window with just the invoice content
const printWindow = window.open('', '_blank');
if (printWindow) {
printWindow.document.write(`
<!DOCTYPE html>
<html>
<head>
<title>Print Invoice</title>
<style>
body { margin: 0; padding: 20px; font-family: Arial, sans-serif; }
@media print {
body { margin: 0; }
@page { margin: 10mm; }
}
</style>
</head>
<body>
${element.innerHTML}
</body>
</html>
`);
printWindow.document.close();
setTimeout(() => {
printWindow.print();
printWindow.close();
}, 250);
}
} else {
// Default browser print
window.print();
}
}
|