修复bug
This commit is contained in:
Binary file not shown.
@@ -128,9 +128,8 @@ namespace WMS.Web.Domain.Entitys
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
d.Qty = d.Qty + qty;
|
||||||
d.Qty = qty;
|
|
||||||
}
|
|
||||||
return Result.ReSuccess();
|
return Result.ReSuccess();
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -320,7 +320,6 @@ namespace WMS.Web.Domain.Services
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<Result> ChangeBox_BackRecord(BackRecord backRecord, LoginInDto loginInfo, bool isTransaction = true)
|
public async Task<Result> ChangeBox_BackRecord(BackRecord backRecord, LoginInDto loginInfo, bool isTransaction = true)
|
||||||
{
|
{
|
||||||
return Result.ReSuccess();
|
|
||||||
if (backRecord.Method == InventoryInOutMethod.Box) return Result.ReSuccess();
|
if (backRecord.Method == InventoryInOutMethod.Box) return Result.ReSuccess();
|
||||||
List<SaveChangeBoxRecordRequest> dtoList = new List<SaveChangeBoxRecordRequest>();
|
List<SaveChangeBoxRecordRequest> dtoList = new List<SaveChangeBoxRecordRequest>();
|
||||||
var boxIds = backRecord.Details.Select(s => s.BoxId).Distinct().ToList();
|
var boxIds = backRecord.Details.Select(s => s.BoxId).Distinct().ToList();
|
||||||
|
|||||||
Reference in New Issue
Block a user