From 9b7ec0d2252f5f3333730ea3c68191d59d422f41 Mon Sep 17 00:00:00 2001 From: gandhimathi Bharathirajan Date: Sun, 30 Jul 2017 03:54:06 +0530 Subject: [PATCH] Department Issue fixed --- application/models/store_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/store_model.php b/application/models/store_model.php index 2e5cd68c..1e0b3f3f 100755 --- a/application/models/store_model.php +++ b/application/models/store_model.php @@ -6,7 +6,7 @@ class store_model extends CI_Model function viewStock() { - $this->db->select('st.*,MM.*'); + $this->db->select('st.*,st.Remarks as storeremarks,MM.*'); $this->db->from('T_Store_Stockdetails st '); $this->db->join('T_MaterialMaster MM','st.MaterialCode=MM.MaterialCode');