Saya cuba menambah produk pada troli dengan mengimbas kod bar. In common.js saya tambah
$('body').on('keydown', '#form-for-saler-add-to-cart', function(e) { if (e.keyCode == 13) { function getIdByEan(ean) { $.ajax({ type: "POST", url: 'index.php?route=checkout/cart/getIdByEan', data: ean, success: function(data) { // Run the code here that needs // to access the data returned return data; } }); } idbyean = getIdByEan($(this).val()); console.log($(this).val()); console.log(idbyean); cart.add(idbyean); // cart.add($(this).val()); $(this).val(''); $(this).html(''); } });
Tambah fungsi dalam pengawal/checkout/cart.php:
public function getIdByEan() { $this->load->model('catalog/product'); if (isset($this->request->post['ean'])) { $product_id = (int)$this->model_catalog_product->productIDByEan($this->request->post['ean']); } else { $product_id = 0; } $this->request->post['product_id'] = $product_id; }
dan model/katalog/produk.php
public function productIDByEan($ean) { $query = $this->db->query("select product_id from " . DB_PREFIX . "product where ean = '" . $this->db->escape($ean) . "'"); return $query->row['product_id']; }
Tetapi saya mendapat idbyean sebagai tidak ditentukan. Apa yang saya buat salah?
Saya telah menyelesaikannya. In common.js
Dalam pengawal/checkout/cart.php
Dalam model/katalog/produk.php