修正代码合并的问题

This commit is contained in:
bobwang 2024-03-21 13:00:07 +08:00
commit 6ddd51ad0b
1 changed files with 153 additions and 151 deletions

View File

@ -18,23 +18,23 @@ using System.Threading;
namespace DeiNiu.wms.Logical namespace DeiNiu.wms.Logical
{ {
[Serializable] [Serializable]
public class lWmsPlate :lbase public class lWmsPlate : lbase
{ {
WmsPlate _obj; WmsPlate _obj;
public lWmsPlate() public lWmsPlate()
{ {
initialize(); initialize();
} }
public WmsPlate getWmsPlate public WmsPlate getWmsPlate
{ {
get get
{ {
if (_obj == null) if (_obj == null)
{ {
_obj = new WmsPlate(); _obj = new WmsPlate();
} }
_obj.operater = operId; _obj.operater = operId;
return _obj; return _obj;
} }
@ -61,13 +61,13 @@ namespace DeiNiu.wms.Logical
{ {
get get
{ {
if (_lop == null || _lop.operId!=operId) if (_lop == null || _lop.operId != operId)
{ {
// log.Debug(string.Format("_lop is null? {0},lop.operId {1}, operId {2}", _lop == null, lop.operId, operId)); // log.Debug(string.Format("_lop is null? {0},lop.operId {1}, operId {2}", _lop == null, lop.operId, operId));
_lop = new lWmsOutPickRequest(operId); _lop = new lWmsOutPickRequest(operId);
} }
return _lop; return _lop;
} }
} }
@ -77,14 +77,14 @@ namespace DeiNiu.wms.Logical
{ {
initialize(); initialize();
} }
/// <summary> /// <summary>
/// get all data /// get all data
/// </summary> /// </summary>
public DataSet getAllData() public DataSet getAllData()
{ {
return _obj.Query(); return _obj.Query();
} }
/// <summary> /// <summary>
@ -97,13 +97,13 @@ namespace DeiNiu.wms.Logical
/// <summary> /// <summary>
/// get a record by id /// get a record by id
/// </summary> /// </summary>
public void initialize(int id) public void initialize(int id)
{ {
_obj = id != 0 ? new WmsPlate(id) : new WmsPlate(); _obj = id != 0 ? new WmsPlate(id) : new WmsPlate();
} }
/// <summary> /// <summary>
/// get a record by id 0 /// get a record by id 0
@ -113,41 +113,41 @@ namespace DeiNiu.wms.Logical
initialize(0); initialize(0);
} }
/// <summary> /// <summary>
/// get a record by id /// get a record by id
/// </summary> /// </summary>
public void initialize(DataRow dr) public void initialize(DataRow dr)
{ {
_obj = new WmsPlate(dr); _obj = new WmsPlate(dr);
} }
protected override DeiNiu.Data.BaseObject.BaseModel getModel() protected override DeiNiu.Data.BaseObject.BaseModel getModel()
{ {
return _obj; return _obj;
} }
//begin cust db operation, query, excute sql etc. //begin cust db operation, query, excute sql etc.
internal int add(WmsPlate obj,int count) internal int add(WmsPlate obj, int count)
{ {
for (int i = 0; i < count; i++) for (int i = 0; i < count; i++)
{ {
obj.inPlate = ""; obj.inPlate = "";
obj.Add(); obj.Add();
obj.plateId = Util.getBoxId((enumPlateLevel)obj.type, obj.color, plateStk.getNextSeq("seqplate" + obj.type + obj.color)); obj.plateId = Util.getBoxId((enumPlateLevel)obj.type, obj.color, plateStk.getNextSeq("seqplate" + obj.type + obj.color));
obj.Update(); obj.Update();
} }
return 1; return 1;
} }
/// <summary> /// <summary>
/// put goods into a plate /// put goods into a plate
/// </summary> /// </summary>
public enumRegPlateResult inPlate(string plateId,enumPlateStatus type, string goodsId,string barcode,int skuId,decimal count,string orderNo) public enumRegPlateResult inPlate(string plateId, enumPlateStatus type, string goodsId, string barcode, int skuId, decimal count, string orderNo)
{ {
/*if (valid( plateId, type, goodsId, skuId) == enumRegPlateResult.) /*if (valid( plateId, type, goodsId, skuId) == enumRegPlateResult.)
{ {
@ -206,7 +206,7 @@ namespace DeiNiu.wms.Logical
return enumRegPlateResult.; return enumRegPlateResult.;
} }
private enumRegPlateResult valid(string plateId, enumPlateStatus type, string goodsId, int skuId) private enumRegPlateResult valid(string plateId, enumPlateStatus type, string goodsId, int skuId)
{ {
@ -224,12 +224,12 @@ namespace DeiNiu.wms.Logical
{ {
return enumRegPlateResult.; return enumRegPlateResult.;
} }
} }
WmsGoods wg = new WmsGoods(goodsId); WmsGoods wg = new WmsGoods(goodsId);
foreach (DataRow dr in dt.Rows) foreach (DataRow dr in dt.Rows)
{ {
if ( Convert.ToInt32(dr["goodsType"].ToString()) == wg.goodsType)//存在goods type if (Convert.ToInt32(dr["goodsType"].ToString()) == wg.goodsType)//存在goods type
{ {
return enumRegPlateResult.; return enumRegPlateResult.;
} }
@ -239,10 +239,10 @@ namespace DeiNiu.wms.Logical
return enumRegPlateResult.使; return enumRegPlateResult.使;
} }
return enumRegPlateResult.;
return enumRegPlateResult.;
} }
/// <summary> /// <summary>
@ -275,11 +275,11 @@ namespace DeiNiu.wms.Logical
{ {
return enumRegPlateResult.; return enumRegPlateResult.;
} }
WmsPlatePack wpp = new WmsPlatePack();
// wpp.getUpPlateId(fromPlate);
WmsPlatePack wpp = new WmsPlatePack();
// wpp.getUpPlateId(fromPlate);
wpp.plateId = toPlate; wpp.plateId = toPlate;
wpp.subPlateId = fromPlate; wpp.subPlateId = fromPlate;
@ -294,7 +294,7 @@ namespace DeiNiu.wms.Logical
if (toP.type == (int)enumPlateLevel.) if (toP.type == (int)enumPlateLevel.)
{ {
WmsPlateStock_tmp ptmp = new WmsPlateStock_tmp(); WmsPlateStock_tmp ptmp = new WmsPlateStock_tmp();
if (new WmsPlatePack(toPlate, fromPlate).ID > 0) if (new WmsPlatePack(toPlate, fromPlate).ID > 0)
@ -303,11 +303,11 @@ namespace DeiNiu.wms.Logical
} }
custId = requests[0].customerId; custId = requests[0].customerId;
List<WmsFlow> jflows = new List<WmsFlow>(); List<WmsFlow> jflows = new List<WmsFlow>();
foreach(WmsOutPickRequest wop in requests) foreach (WmsOutPickRequest wop in requests)
{ {
jflows.Add(new WmsFlow(wop.pickOrderNo + fromPlate)); jflows.Add(new WmsFlow(wop.pickOrderNo + fromPlate));
} }
@ -338,7 +338,7 @@ namespace DeiNiu.wms.Logical
toP.Update(); toP.Update();
} }
DataTable dt1 = ptmp.getOutPort(ptmp.outPortId); DataTable dt1 = ptmp.getOutPort(ptmp.outPortId);
foreach (DataRow dr1 in dt1.Rows) foreach (DataRow dr1 in dt1.Rows)
@ -355,12 +355,12 @@ namespace DeiNiu.wms.Logical
flow = new WmsFlow(ptmp.orderNo + ptmp.plateId); flow = new WmsFlow(ptmp.orderNo + ptmp.plateId);
} }
*/ */
foreach(WmsFlow flow in jflows) foreach (WmsFlow flow in jflows)
{ {
flow.finishedTasksPlus(operId, 1); flow.finishedTasksPlus(operId, 1);
} }
ptmp.inPlate = toPlate; ptmp.inPlate = toPlate;
ptmp.Update(); ptmp.Update();
@ -384,11 +384,11 @@ namespace DeiNiu.wms.Logical
{ {
ldTask = req.loadTruckJob; //每个订单一个装车任务,在开始分拣时生成 ldTask = req.loadTruckJob; //每个订单一个装车任务,在开始分拣时生成
} }
break; break;
} }
} }
WmsFlow wmsflow = new WmsFlow(ldTask); WmsFlow wmsflow = new WmsFlow(ldTask);
@ -400,7 +400,7 @@ namespace DeiNiu.wms.Logical
} }
toP.customerId = custId; toP.customerId = custId;
@ -420,10 +420,10 @@ namespace DeiNiu.wms.Logical
{ {
if (string.IsNullOrEmpty(req.loadTruckJob) && string.IsNullOrEmpty(toP.jobNo)) if (string.IsNullOrEmpty(req.loadTruckJob) && string.IsNullOrEmpty(toP.jobNo))
{ {
req.loadTruckJob = toP.jobNo; req.loadTruckJob = toP.jobNo;
req.Update(); req.Update();
} }
if (req.state == (int)enumOutStockRequestStatus.) if (req.state == (int)enumOutStockRequestStatus.)
{ {
@ -437,15 +437,15 @@ namespace DeiNiu.wms.Logical
req.Update(); req.Update();
} }
} }
} }
} }
} }
scope.Complete(); scope.Complete();
} }
@ -535,7 +535,7 @@ namespace DeiNiu.wms.Logical
toP.lineId = fromP.lineId; toP.lineId = fromP.lineId;
} }
else if (WmsConstants.IS_PLATE_IN_LINE && toP.lineId != (fromP.lineId) && fromP.lineId > 0) else if (WmsConstants.IS_PLATE_IN_LINE && toP.lineId != (fromP.lineId) && fromP.lineId > 0)
{ {
return enumRegPlateResult.线; return enumRegPlateResult.线;
} }
@ -686,7 +686,7 @@ namespace DeiNiu.wms.Logical
// log.Debug(string.Format("to plate custid {0}, to plate lineid {1} ", toP.customerId, toP.lineId )); // log.Debug(string.Format("to plate custid {0}, to plate lineid {1} ", toP.customerId, toP.lineId ));
return enumRegPlateResult.; return enumRegPlateResult.;
} }
@ -706,7 +706,7 @@ namespace DeiNiu.wms.Logical
return enumRegPlateResult.; return enumRegPlateResult.;
} }
/* /*
@ -732,7 +732,7 @@ namespace DeiNiu.wms.Logical
*/ */
List<WmsOutPickRequest> requests = getWmsPlate.getPlateRequests(fromPlate, true); List<WmsOutPickRequest> requests = getWmsPlate.getPlateRequests(fromPlate, true);
@ -746,17 +746,17 @@ namespace DeiNiu.wms.Logical
} }
WmsPlateStock_tmp ptmp = new WmsPlateStock_tmp(); WmsPlateStock_tmp ptmp = new WmsPlateStock_tmp();
WmsFlow jflow = new WmsFlow(); WmsFlow jflow = new WmsFlow();
// List<WmsFlow> jflows = new List<WmsFlow>(); // List<WmsFlow> jflows = new List<WmsFlow>();
WmsPlate toP = new WmsPlate(toPlate); WmsPlate toP = new WmsPlate(toPlate);
int lineId = fromP.lineId; int lineId = fromP.lineId;
if (fromP.ID == 0 || fromP.volume==0 ) //临时容器 if (fromP.ID == 0 || fromP.volume == 0) //临时容器
{ {
DataTable dt2 = ptmp.getStockLst(fromPlate); DataTable dt2 = ptmp.getStockLst(fromPlate);
@ -767,7 +767,7 @@ namespace DeiNiu.wms.Logical
{ {
jflow = new WmsFlow(ptmp.jobNo); // 拣货任务?? jflow = new WmsFlow(ptmp.jobNo); // 拣货任务??
} }
DataTable dt1 = ptmp.getOutPort(ptmp.outPortId); DataTable dt1 = ptmp.getOutPort(ptmp.outPortId);
foreach (DataRow dr1 in dt1.Rows) foreach (DataRow dr1 in dt1.Rows)
@ -796,20 +796,20 @@ namespace DeiNiu.wms.Logical
toP.plateId = toPlate; toP.plateId = toPlate;
toP.type = (int)enumPlateLevel.; toP.type = (int)enumPlateLevel.;
toP.plateLevel = toP.type; toP.plateLevel = toP.type;
toP.lineId = lineId; toP.lineId = lineId;
} }
if(WmsConstants.IS_PLATE_IN_LINE && lineId>0 && lineId != toP.lineId) if (WmsConstants.IS_PLATE_IN_LINE && lineId > 0 && lineId != toP.lineId)
{ {
return enumRegPlateResult.线; return enumRegPlateResult.线;
} }
WmsPlatePack wpp = new WmsPlatePack();
WmsPlatePack wpp = new WmsPlatePack();
wpp.plateId = toPlate; wpp.plateId = toPlate;
wpp.subPlateId = fromPlate; wpp.subPlateId = fromPlate;
@ -818,7 +818,7 @@ namespace DeiNiu.wms.Logical
DataView dv = dt.DefaultView; DataView dv = dt.DefaultView;
dv.RowFilter = String.Format("orderNo='{0}'", requests[0].pickOrderNo); dv.RowFilter = String.Format("orderNo='{0}'", requests[0].pickOrderNo);
using (TransactionScope scope = new TransactionScope()) using (TransactionScope scope = new TransactionScope())
{ {
@ -826,21 +826,21 @@ namespace DeiNiu.wms.Logical
if (jflow.ID > 0) if (jflow.ID > 0)
{ {
jflow.finishedTasksPlus(operId,1, false, true); jflow.finishedTasksPlus(operId, 1, false, true);
} }
wpp.removeUp(); wpp.removeUp();
int id= wpp.Add(); int id = wpp.Add();
log.Debug("load truck add plate pack id " + id); log.Debug("load truck add plate pack id " + id);
//支持跳过线路集货,直接装车 //支持跳过线路集货,直接装车
if (string.IsNullOrEmpty(toP.transNo)) if (string.IsNullOrEmpty(toP.transNo))
{ {
toP.transNo = Util.getOrderNo(enumCreateOrderType.transOrder, _obj.getNextSeq(enumCreateOrderType.transOrder)); toP.transNo = Util.getOrderNo(enumCreateOrderType.transOrder, _obj.getNextSeq(enumCreateOrderType.transOrder));
logPlate.Debug(string.Format("2 plate {0} start new trans {1}, top.ID {2}", toPlate, toP.transNo,toP.ID)); logPlate.Debug(string.Format("2 plate {0} start new trans {1}, top.ID {2}", toPlate, toP.transNo, toP.ID));
new lTmsTranRequest(operId).createSimpleTran(requests, toP);// req.transNo = toP.transNo; new lTmsTranRequest(operId).createSimpleTran(requests, toP);// req.transNo = toP.transNo;
// return enumRegPlateResult.完成装车集货后才能装车; // return enumRegPlateResult.完成装车集货后才能装车;
@ -900,7 +900,7 @@ namespace DeiNiu.wms.Logical
} }
} }
if (WmsConstants.IS_PLATE_IN_LINE && !WmsConstants.AUTO_LOAD_TRUCK ) if (WmsConstants.IS_PLATE_IN_LINE && !WmsConstants.AUTO_LOAD_TRUCK)
{ {
if (fromP.ID > 0) if (fromP.ID > 0)
{ {
@ -919,7 +919,9 @@ namespace DeiNiu.wms.Logical
//to release plate of Line //to release plate of Line
// 线路码头容器里面的客户容器是否已经全部装车了,如果都已装车(释放),则释放线路容器 // 线路码头容器里面的客户容器是否已经全部装车了,如果都已装车(释放),则释放线路容器
if (fromP.plateLevel == (int)enumPlateLevel.) if (fromP.plateLevel == (int)enumPlateLevel.)
{ {
@ -936,12 +938,12 @@ namespace DeiNiu.wms.Logical
} }
} }
string ldTask = fromP.jobNo; string ldTask = fromP.jobNo;
// if (string.IsNullOrEmpty(ldTask)) // 非固定容器、非客户集货类型的容器,容器没有装车任务信息 // if (string.IsNullOrEmpty(ldTask)) // 非固定容器、非客户集货类型的容器,容器没有装车任务信息
{ {
foreach (WmsOutPickRequest req in requests) //容器里可能有多个分拣单,多个装车任务 foreach (WmsOutPickRequest req in requests) //容器里可能有多个分拣单,多个装车任务
{ {
@ -954,7 +956,7 @@ namespace DeiNiu.wms.Logical
} }
//客户容器的装车任务 //客户容器的装车任务
scope.Complete(); scope.Complete();
@ -965,19 +967,19 @@ namespace DeiNiu.wms.Logical
internal enumRegPlateResult startTran(string plateId) internal enumRegPlateResult startTran(string plateId)
{ {
WmsPlate plate = new WmsPlate(plateId); WmsPlate plate = new WmsPlate(plateId);
if (plate.ID > 0 && plate.type != (int)enumPlateLevel.) if (plate.ID > 0 && plate.type != (int)enumPlateLevel.)
{ {
// return enumRegPlateResult.发车需要运输类型的容器; // return enumRegPlateResult.发车需要运输类型的容器;
} }
if (string.IsNullOrEmpty(plate.transNo)) if (string.IsNullOrEmpty(plate.transNo))
{ {
return enumRegPlateResult.; return enumRegPlateResult.;
} }
TmsTranRequest tmsTranRequest = new TmsTranRequest(plate.transNo); TmsTranRequest tmsTranRequest = new TmsTranRequest(plate.transNo);
if (tmsTranRequest.state == (int)enumTranStatus.) if (tmsTranRequest.state == (int)enumTranStatus.)
{ {
@ -994,7 +996,7 @@ namespace DeiNiu.wms.Logical
} }
} }
plate.partion = 0; plate.partion = 0;
@ -1002,7 +1004,7 @@ namespace DeiNiu.wms.Logical
Thread threadPreProcess = new Thread(new ParameterizedThreadStart(porcessStock4TransStart)); Thread threadPreProcess = new Thread(new ParameterizedThreadStart(porcessStock4TransStart));
threadPreProcess.IsBackground = true; threadPreProcess.IsBackground = true;
threadPreProcess.Start(plate); threadPreProcess.Start(plate);
return enumRegPlateResult.; return enumRegPlateResult.;
} }
@ -1045,23 +1047,23 @@ namespace DeiNiu.wms.Logical
foreach (DataRow dr in dt2.Rows) foreach (DataRow dr in dt2.Rows)
{ {
wop = new WmsOutPickPort(dr); wop = new WmsOutPickPort(dr);
WmsStock st = new WmsStock(wop.locationId, Convert.ToInt32(dr["skuId"].ToString()), dr["goodsId"].ToString());
if (wop.virtialCnt > 0) //还回未出库虚拟库存 WmsStock st = new WmsStock(wop.locationId, Convert.ToInt32(dr["skuId"].ToString()), dr["goodsId"].ToString());
{
st.virtialCount -= wop.virtialCnt;
st.virtialCount = st.virtialCount > 0 ? st.virtialCount : 0;
WmsStock virSt = st.getVirStock(st.goodsId); if (wop.virtialCnt > 0) //还回未出库虚拟库存
virSt.countOuting -= wop.virtialCnt; {
virSt.updateCountOut(); st.virtialCount -= wop.virtialCnt;
} st.virtialCount = st.virtialCount > 0 ? st.virtialCount : 0;
st.countOuting -= wop.count; WmsStock virSt = st.getVirStock(st.goodsId);
st.countOuting = st.countOuting > 0 ? st.countOuting : 0; ; virSt.countOuting -= wop.virtialCnt;
virSt.updateCountOut();
}
st.updateCountOut(); st.countOuting -= wop.count;
st.countOuting = st.countOuting > 0 ? st.countOuting : 0; ;
st.updateCountOut();
} }
wop.closePickPorts(req.pickOrderNo); wop.closePickPorts(req.pickOrderNo);
@ -1090,7 +1092,7 @@ namespace DeiNiu.wms.Logical
{ {
tranP.Delete(); tranP.Delete();
} }
scope.Complete(); scope.Complete();
} }
@ -1142,29 +1144,30 @@ namespace DeiNiu.wms.Logical
return 0; return 0;
} }
public void releasePlateStock(string plateId,decimal count, int inPortId =0,int outPortId =0) public void releasePlateStock(string plateId, decimal count, int inPortId = 0, int outPortId = 0)
{ {
logPlate.Debug(string.Format("plateId {0},count {1},inPortId {2},outPortId {3}", plateId, count, inPortId, outPortId)); logPlate.Debug(string.Format("plateId {0},count {1},inPortId {2},outPortId {3}", plateId, count, inPortId, outPortId));
WmsPlateStock_tmp plateStock = new WmsPlateStock_tmp(); WmsPlateStock_tmp plateStock = new WmsPlateStock_tmp();
if(count==0 && inPortId==0 && outPortId == 0) if (count == 0 && inPortId == 0 && outPortId == 0)
{ {
int cnt= plateStock.releasePlate(plateId); int cnt = plateStock.releasePlate(plateId);
logPlate.Debug(string.Format("release plate {0} ",plateId)); logPlate.Debug(string.Format("release plate {0} ", plateId));
return; return;
} }
DataTable dt; DataTable dt;
if (inPortId > 0) { if (inPortId > 0)
dt = plateStock.getPlateIn(plateId, inPortId); {
dt = plateStock.getPlateIn(plateId, inPortId);
} }
else else
dt = plateStock.getPlateOut(plateId, outPortId); dt = plateStock.getPlateOut(plateId, outPortId);
logPlate.Debug(string.Format(" stk items count {0} ", dt.Rows.Count)); logPlate.Debug(string.Format(" stk items count {0} ", dt.Rows.Count));
foreach (DataRow dr in dt.Rows) foreach (DataRow dr in dt.Rows)
@ -1187,27 +1190,27 @@ namespace DeiNiu.wms.Logical
} }
public DataTable getPateJobsDt(string plateId, bool showSub = false) public DataTable getPateJobsDt(string plateId, bool showSub = false)
{ {
DataTable dt = getWmsPlate.getPateJobsDt( plateId, showSub ); DataTable dt = getWmsPlate.getPateJobsDt(plateId, showSub);
logTest.Debug(string.Format("plate {0} ,showSub {1}, all contents size {2}", plateId, showSub, dt.Rows.Count)); logTest.Debug(string.Format("plate {0} ,showSub {1}, all contents size {2}", plateId, showSub, dt.Rows.Count));
return dt; return dt;
} }
internal DataTable queryRegistedPlate(string flowNo) internal DataTable queryRegistedPlate(string flowNo)
{ {
return getWmsPlate.queryRegistedPlate(flowNo); return getWmsPlate.queryRegistedPlate(flowNo);
} }
internal DataTable getFromPlate(string flowNo) internal DataTable getFromPlate(string flowNo)
{ {
return getWmsPlate.queryFromPlate(flowNo); return getWmsPlate.queryFromPlate(flowNo);
} }
internal enumRegPlateResult takeOutPlate(string fromPlate, string plate) internal enumRegPlateResult takeOutPlate(string fromPlate, string plate)
{ {
WmsPlatePack wpp = new WmsPlatePack(fromPlate,plate); WmsPlatePack wpp = new WmsPlatePack(fromPlate, plate);
log.Debug(string.Format("fromPlate {0}, plate {1}", fromPlate, plate)); log.Debug(string.Format("fromPlate {0}, plate {1}", fromPlate, plate));
if (wpp.ID == 0) if (wpp.ID == 0)
{ {
@ -1227,7 +1230,7 @@ namespace DeiNiu.wms.Logical
scope.Complete(); scope.Complete();
} }
return enumRegPlateResult.; return enumRegPlateResult.;
} }
/// <summary> /// <summary>
@ -1242,20 +1245,20 @@ namespace DeiNiu.wms.Logical
/// <param name="validReason"></param> /// <param name="validReason"></param>
/// <param name="finialValidation">是否只纠正账目,品相正确只是数量差异,则按实际拿的发</param> /// <param name="finialValidation">是否只纠正账目,品相正确只是数量差异,则按实际拿的发</param>
/// <returns></returns> /// <returns></returns>
internal enumOutValidResult plateValidation(string plateId,int portId,int skuId,string productDate,string validDate,string batch, decimal validationCnt, string validReason,bool finialValidation=true) internal enumOutValidResult plateValidation(string plateId, int portId, int skuId, string productDate, string validDate, string batch, decimal validationCnt, string validReason, bool finialValidation = true)
{ {
log.Debug(string.Format("容器复核。。。。 portId {0}, skuId {1}, productDate {2}, validDate {3}, batch {4}, validationCnt {5}, validReason {6}, finialValidation {7}", log.Debug(string.Format("容器复核。。。。 portId {0}, skuId {1}, productDate {2}, validDate {3}, batch {4}, validationCnt {5}, validReason {6}, finialValidation {7}",
portId, skuId, productDate, validDate, batch, validationCnt, validReason, finialValidation)); portId, skuId, productDate, validDate, batch, validationCnt, validReason, finialValidation));
WmsPlateStock_tmp wst = new WmsPlateStock_tmp().getModelByOutPort(plateId,portId); WmsPlateStock_tmp wst = new WmsPlateStock_tmp().getModelByOutPort(plateId, portId);
WmsOutPickPort wpp = new WmsOutPickPort(portId); WmsOutPickPort wpp = new WmsOutPickPort(portId);
WmsOutPickDetail wpd = new WmsOutPickDetail(wpp.pickDetailId); WmsOutPickDetail wpd = new WmsOutPickDetail(wpp.pickDetailId);
// WmsOrderRequest wor = new WmsOrderRequest(); // WmsOrderRequest wor = new WmsOrderRequest();
wpp.validationCnt = validationCnt; wpp.validationCnt = validationCnt;
wpp.checkBy = operId; wpp.checkBy = operId;
wpp.checkTime = wpp.getDateTime(); wpp.checkTime = wpp.getDateTime();
@ -1272,18 +1275,18 @@ namespace DeiNiu.wms.Logical
log.Debug(string.Format("容器复核 原数量 {0}, 差异 {1} ", wst.count, diffCnt)); log.Debug(string.Format("容器复核 原数量 {0}, 差异 {1} ", wst.count, diffCnt));
WmsStock stk = null; WmsStock stk = null;
WmsStockRecord wsr = null; WmsStockRecord wsr = null;
if (diffCnt != 0) if (diffCnt != 0)
{ {
wst.count = validationCnt; wst.count = validationCnt;
wsr = new WmsStockRecord(wpp.recordId); wsr = new WmsStockRecord(wpp.recordId);
stk = new WmsStock(wpp.locationId, skuId); stk = new WmsStock(wpp.locationId, skuId);
// stk.adjustingCnt += diffCnt; // stk.adjustingCnt += diffCnt;
stk.count += diffCnt; stk.count += diffCnt;
log.Debug(string.Format("容器复核 volType {0}, 差异 {1}, pickdetail id {2} ,pick bulk cnt {3}, seeded cnt {4} pick batch cnt {5} ", wst.count, diffCnt,wpd.ID, wpd.bulkPicked,wpd.seeded,wpd.batchPicked)); log.Debug(string.Format("容器复核 volType {0}, 差异 {1}, pickdetail id {2} ,pick bulk cnt {3}, seeded cnt {4} pick batch cnt {5} ", wst.count, diffCnt, wpd.ID, wpd.bulkPicked, wpd.seeded, wpd.batchPicked));
//少拿不补 //少拿不补
//多拿不退 //多拿不退
@ -1300,17 +1303,17 @@ namespace DeiNiu.wms.Logical
} }
using (TransactionScope scope = new TransactionScope()) using (TransactionScope scope = new TransactionScope())
{ {
wpp.Update(); wpp.Update();
if (diffCnt != 0) if (diffCnt != 0)
{ {
string description = string.Format("\n 业务类型:{0} {5},拣货任务{1},计划数量 {2} 实际数量{3} 备注:{4}", "容器复核", string description = string.Format("\n 业务类型:{0} {5},拣货任务{1},计划数量 {2} 实际数量{3} 备注:{4}", "容器复核",
wpp.ID,wpp.count,validationCnt, validReason, finialValidation ? " 按拣货数量发货" :" 实物多退少补,按需求发" ); wpp.ID, wpp.count, validationCnt, validReason, finialValidation ? " 按拣货数量发货" : " 实物多退少补,按需求发");
log.Debug(description); log.Debug(description);
int i = wpd.Update(); int i = wpd.Update();
log.Debug(" pick detail count updated rows " + i); log.Debug(" pick detail count updated rows " + i);
@ -1333,7 +1336,7 @@ namespace DeiNiu.wms.Logical
wsr.locationId = stk.locationId; wsr.locationId = stk.locationId;
wsr.operater = operId; wsr.operater = operId;
wsr.rectype = (int)enumStockRecordType.; wsr.rectype = (int)enumStockRecordType.;
wsr.Add(); //新增记录 wsr.Add(); //新增记录
} }
@ -1351,11 +1354,11 @@ namespace DeiNiu.wms.Logical
return getWmsPlate.getLatestPlate(custId, goodsId).plateId; return getWmsPlate.getLatestPlate(custId, goodsId).plateId;
} }
public DataTable getUnLoadTruckStks(string toPlate, int cnt) public DataTable getUnLoadTruckStks(string toPlate, int cnt)
{ {
log.Debug(string.Format("...... to getUnLoadTruckStks plateId {0}",toPlate)); log.Debug(string.Format("...... to getUnLoadTruckStks plateId {0}", toPlate));
WmsPlate toP = new WmsPlate(toPlate); WmsPlate toP = new WmsPlate(toPlate);
return plateStk.getUnLoadTruckStks(toP.transNo,cnt); return plateStk.getUnLoadTruckStks(toP.transNo, cnt);
} }
public DataTable getLoadContent(string toPlate) public DataTable getLoadContent(string toPlate)
@ -1365,12 +1368,11 @@ namespace DeiNiu.wms.Logical
internal string getGoodsById(string goodsId) internal string getGoodsById(string goodsId)
{ {
WmsGoods goods = new WmsGoods(goodsId,0,""); WmsGoods goods = new WmsGoods(goodsId, 0, "");
return goods.stockAvCount+""; return goods.stockAvCount + "";
} }
} }
} }