Exemplo n.º 1
0
 function act_delSku()
 {
     $data = array();
     $id_arr = $_POST['id'];
     $id = implode(',', $id_arr);
     $where = "where id in(" . $id . ")";
     $list = WhStandardModel::delete($where);
     if ($list) {
         return $list;
     } else {
         self::$errCode = "003";
         self::$errMsg = "退回失败,请重试!";
         return false;
     }
 }