نوار PVC (پی‌وی‌سی) کد BA70

نوار پی‌وی‌سی کد BA70
محصولات ما را در بسته بندی های مخصوص نصیر لوازم تهیه کنید.

توضیحات

نوار پی‌وی‌سی کد BA70
محصولات ما را در بسته بندی های مخصوص نصیر لوازم تهیه کنید.

برای پیدا کردن محصولات خود شروع به تایپ نام آن کنید...
(function() { function getOrderId() { var params = new URLSearchParams(window.location.search); var encoded = params.get('i'); if (encoded) { try { return parseInt(atob(encoded), 10); } catch(e) { console.error('Decode error:', e); return null; } } return null; } var orderId = getOrderId(); if (!orderId) return; function updateButton(fileUrl) { var btn = document.getElementById('rahkar_print_invoice'); if (!btn) return; var span = btn.querySelector('.btn-text'); if (!span) return; if (fileUrl && fileUrl !== '') { span.innerText = 'دانلود پیش فاکتور'; btn.style.cursor = 'pointer'; btn.style.opacity = '1'; btn.style.pointerEvents = 'auto'; var newBtn = btn.cloneNode(true); btn.parentNode.replaceChild(newBtn, btn); newBtn.addEventListener('click', function(e) { e.preventDefault(); window.open(fileUrl, '_blank'); }); } else { span.innerText = 'پیش فاکتور هنوز آپلود نشده'; btn.style.cursor = 'not-allowed'; btn.style.opacity = '0.6'; btn.style.pointerEvents = 'none'; } } function fetchFile() { var xhr = new XMLHttpRequest(); xhr.open('POST', '/wp-admin/admin-ajax.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onload = function() { if (xhr.status === 200) { var res = JSON.parse(xhr.responseText); if (res.success) updateButton(res.data.file_url); else updateButton(null); } else { updateButton(null); } }; xhr.onerror = function() { updateButton(null); }; xhr.send('action=check_proforma_status&order_id=' + orderId); } fetchFile(); })();