<?php

include_once "basicsubitem.php";
$item = $_POST;
$item["mainMaterialPrice"] = $item["mainMaterialPrice"];
$item["auxiliaryMaterialPrice"] = $item["auxiliaryMaterialPrice"];
$item["manpowerPrice"] = $item["manpowerPrice"];
$item["machineryPrice"] = $item["machineryPrice"];
$item["lossPercent"] = $item["lossPercent"];
$item["cost"] = $item["cost"];
$item["remark"] = $item["remark"];
echo editBasicSubItem($item);
Ejemplo n.º 2
0
<?php

include_once "conn.php";
include_once "subitemDB.php";
$action = strtolower($_REQUEST["action"]);
$res = array('status' => 'successful', 'errMsg' => '');
switch ($action) {
    case "add":
        $res = addBasicSubItem($_POST);
        break;
    case "addsome":
        $res = addBunchBasicSubItems($_POST);
        break;
    case "edit":
        $res = editBasicSubItem($_POST);
        break;
    case "delete":
        $res = deleteBasicSubItem($_POST['subItemId']);
        break;
    case "get":
        $res = getBasicSubItems($_GET['parentId']);
        break;
    default:
        throw new Exception("unknown action:" . $action);
}
if (is_array($res) && empty($res)) {
    // todo
} else {
    if (!$res) {
        $res = array('status' => 'successful', 'errMsg' => '');
    }