Tjiny
2025-06-24 4c7cbee3e351f289fac1400e976bc8f10dc7e169
HH.WCS.Mobox3.RiDong/wms/WCSHelper.cs
@@ -180,7 +180,7 @@
                task.N_B_STATE = 2;
                task.S_B_STATE = Task.GetStateStr(task.N_B_STATE);
                // task.T_START_TIME = DateTime.Now;
                db.Updateable(task).UpdateColumns(it => new { it.N_B_STATE, it.S_B_STATE }).ExecuteCommand();
                db.Updateable(task).UpdateColumns(it => new { it.N_B_STATE, it.S_B_STATE, it.T_START_TIME }).ExecuteCommand();
            }
        }
    }
@@ -193,11 +193,8 @@
        {
            if (task.N_B_STATE == 1)
            {
                if (task.T_START_TIME == null)
                {
                    task.T_START_TIME = DateTime.Now;
                    db.Updateable(task).UpdateColumns(it => new { it.T_START_TIME }).ExecuteCommand();
                }
            }
        }
    }