final product description

This commit is contained in:
venbatechnologies@gmail.com 2018-09-11 18:30:08 +05:30
parent 4dc917858c
commit 96fdf32201
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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;
}