出入库完成

This commit is contained in:
hoteas
2021-12-15 05:56:31 +08:00
parent 9482404265
commit ac66331535
7 changed files with 413 additions and 18 deletions
+10 -3
View File
@@ -44,12 +44,17 @@ var material_inoutCtr = Ctr{
rule := that.Req.FormValue("rule")
materialId := ObjToInt(that.Req.FormValue("material_id"))
produceId := ObjToInt(that.Req.FormValue("produce_id"))
count := ObjToInt(that.Req.FormValue("count"))
count := ObjToInt(that.Req.FormValue("num"))
state := ObjToInt(that.Req.FormValue("state"))
content := that.Req.FormValue("content")
description := that.Req.FormValue("description")
if rule == "" || materialId == 0 || count == 0 {
that.Display(3, "参数不足,请补充参数")
return
}
count1 := count
if state > 0 {
count = -count
}
@@ -61,15 +66,17 @@ var material_inoutCtr = Ctr{
"rule": rule,
"admin_id": adminID,
"material_id": materialId,
"count": count,
"count": count1,
"saved": material.GetCeilInt("count"),
"create_time": time.Now().Unix(),
"modify_time": time.Now().Unix(),
"produce_id": produceId,
"description": description,
"content": content,
"state": state,
}
id := that.Db.Insert("material_inout", data)
if id == 0 {
that.Display(4, "添加出入库记录失败,请重新添加")
return