final product description
This commit is contained in:
parent
4dc917858c
commit
96fdf32201
@ -595,7 +595,7 @@ class batchcard_model extends CI_Model
|
||||
function getinvoice_products()
|
||||
{
|
||||
|
||||
$this->db->select('product_id,product_name');
|
||||
$this->db->select('product_id,product_name,product_description');
|
||||
$this->db->from('ip_products');
|
||||
$supp = $this->db->get();
|
||||
return $supp->result();
|
||||
|
||||
@ -114,7 +114,7 @@ $(function() {
|
||||
foreach ($inv_final_product as $SID):
|
||||
|
||||
|
||||
$options2[$SID->product_id] = $SID->product_id.' '.' - '.' '.$SID->product_name;
|
||||
$options2[$SID->product_id] = $SID->product_id.' '.' - '.' '.$SID->product_name.' '.' ('.' '.$SID->product_description.')';
|
||||
|
||||
endforeach;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user