MerDoLive / AdminPanel

MIT License
0 stars 0 forks source link

Admin Terminal - Product Management #43

Open merzido opened 5 years ago

merzido commented 5 years ago

When clicked on Product Management all product to be displayed. It should display all the column from table . Good to have Can we make it flexible with giving user a option of choosing which column he is interested in . Page to have edit , delete , view , Add button , copy selected . Page have checkbox for bulk action . Admin to edit all attributes of Product except ID Page to have multiple level of filter , ( Seller Name , Category , Status ( all possible status ) ADD - admin can add product one by one or in Bulk .

User Can Upload the product in csv or xls format . TBD

roshani1991 commented 5 years ago
merzido commented 5 years ago
roshani1991 commented 5 years ago

***** Following Issue Resolved by me* here post not working for attribute values $data1=array('attributes' => $attribute_group0,'values' => $values_group0); $data2=array('attributes' => $attribute_group1,'values' => $values_group1); $data['view1'] = $this->load->view('products/getAttr',$data1,true); $data['view2'] = $this->load->view('products/getAttr',$data2,true); $this->load->view('products/view_attr',$data); when i submit view_attr all attribute value comes as null in post here public function add_product() { $prdt_attr=explode(';', $_POST['prdt_attr']);
$prdt_attr_name=explode(';',$_POST['prdt_attr_name']);
$prdt_attr_display=explode(';',$_POST['prdt_attr_display']);


rushikeshnakhate commented 5 years ago
roshani1991 commented 5 years ago