d6c51b83

Rp 0

11 Tangkai

Product Details

Field LabelField Value
Kode BarangB.20-3
NamaBunga Gantung Artificial Ungu 11 Tangkai
Deskripsi11 Tangkai
Quantity1
Harga Sewa25.000
Harga Perolehan330.000
Keyd6c51b83
Status BarangValio

Dimensions

Field LabelField Value
Panjang90
Lebar50

Storage Details

TaxonomyTerms
Ruang SimpanGudang Lt.2
Tempat SimpanRak.B
Box SimpanBox C

Additional Details

TaxonomyTerms
Kategori BarangBunga
JenisBunga Gantung
MaterialArtificial
TemaGlamour
WarnaUngu
Status BarangValio
Placeholder

Rp 0

Quantity
Add to cart
SKU: B.20-3 Category:

Product Recently View

Read More

jQuery(document).ready(function ($) { // Hook into the form submission event $('form#frm_form_3').on('submit', function (e) { e.preventDefault(); // Prevent form submission temporarily // Get the SKU field value var productSku = $('#field_sku2').val(); // Replace 'field_sku2' with your SKU field ID if (!productSku) { alert('Please enter a SKU.'); return false; // Stop submission } // Check if SKU is unique via AJAX $.ajax({ url: ajaxurl, // WordPress AJAX endpoint type: 'POST', data: { action: 'validate_unique_sku', sku: productSku, }, success: function (response) { if (response.success) { // SKU is unique, proceed with form submission $('form#frm_form_3').unbind('submit').submit(); // Re-enable and submit the form } else { // SKU is not unique, display an alert alert('SKU "' + productSku + '" is already taken. Please use a unique SKU.'); } }, error: function () { alert('An error occurred while validating the SKU. Please try again.'); }, }); }); });