Beispiel #1
0
function clearupData()
{
    $result = array();
    $idlist = isset($_POST['ids']) ? trim($_POST['ids']) : 0;
    if (empty($idlist)) {
        return $result;
    }
    $idarray = explode(',', $idlist);
    $po_obj = new PackingOrderModel();
    $result = $po_obj->getOrderInfoByIdList($idarray);
    return $result;
}
Beispiel #2
0
function clearupData2($idlist)
{
    $result = array();
    $idarray = explode(',', $idlist);
    $po_obj = new PackingOrderModel();
    $result = $po_obj->getOrderInfoByIdList($idarray);
    return $result;
}