diff --git a/PDA/PDA/pages/allBindQuery/allBindQuery.vue b/PDA/PDA/pages/allBindQuery/allBindQuery.vue index 4e43c59..c27e815 100644 --- a/PDA/PDA/pages/allBindQuery/allBindQuery.vue +++ b/PDA/PDA/pages/allBindQuery/allBindQuery.vue @@ -220,6 +220,10 @@ duration: 3000 }); this.clear(); + + this.shelfCode = ''; + this.locationCode = ''; + return; } //有物料信息 @@ -275,7 +279,7 @@ //清空当前界面所有内容 clear: function() { - this.placeholderText = '请先扫描货架码'; + this.placeholderText = '输入物料编码搜索'; this.cardData = null; this.recordCount = 0; }, diff --git a/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js b/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js index bccc353..276eea8 100644 --- a/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js +++ b/PDA/PDA/unpackage/dist/dev/app-plus/app-service.js @@ -6614,6 +6614,8 @@ if (uni.restoreGlobal) { duration: 3e3 }); this.clear(); + this.shelfCode = ""; + this.locationCode = ""; return; } this.cardData = res.data.data.lists; @@ -6651,13 +6653,13 @@ if (uni.restoreGlobal) { this.clear(); }, complete: (event) => { - formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:269", "请求完成", event); + formatAppLog("log", "at pages/allBindQuery/allBindQuery.vue:273", "请求完成", event); } }); }, //清空当前界面所有内容 clear: function() { - this.placeholderText = "请先扫描货架码"; + this.placeholderText = "输入物料编码搜索"; this.cardData = null; this.recordCount = 0; }, diff --git a/WCS.BLL/Services/Service/PDAMatBindService.cs b/WCS.BLL/Services/Service/PDAMatBindService.cs index f29235d..b7fce3c 100644 --- a/WCS.BLL/Services/Service/PDAMatBindService.cs +++ b/WCS.BLL/Services/Service/PDAMatBindService.cs @@ -266,7 +266,7 @@ namespace WCS.BLL.Services.Service #endregion var endLocation = await DbHelp.db.Queryable() - .LeftJoin((li, si) => (li.Id == si.CurrentLocationId && si.TransStatus == TransStatusEnum.静止) || (li.Id == si.DestinationLocationId && si.TransStatus == TransStatusEnum.运输中)) + .LeftJoin((li, si) => (li.Id == si.CurrentLocationId) || (li.Id == si.DestinationLocationId && si.TransStatus == TransStatusEnum.运输中)) .Where((li, si) => li.LocationAreaId == request.SendBackLocationAreaId) .Where((li, si) => li.IsEnable == true) .Where((li, si) => li.Id != shelf.CurrentLocationId) diff --git a/WCS.WebApi/Controllers/PDAProductionLineCallOutController.cs b/WCS.WebApi/Controllers/PDAProductionLineCallOutController.cs index 20f2f76..4262d91 100644 --- a/WCS.WebApi/Controllers/PDAProductionLineCallOutController.cs +++ b/WCS.WebApi/Controllers/PDAProductionLineCallOutController.cs @@ -377,7 +377,7 @@ namespace WCS.WebApi.Controllers //根据选择的区域信息获取终点 var endLocation = await DbHelp.db.Queryable() - .LeftJoin((li, si) => (li.Id == si.CurrentLocationId && si.TransStatus == TransStatusEnum.静止) || (li.Id == si.DestinationLocationId && si.TransStatus == TransStatusEnum.运输中)) + .LeftJoin((li, si) => (li.Id == si.CurrentLocationId) || (li.Id == si.DestinationLocationId && si.TransStatus == TransStatusEnum.运输中)) .Where((li, si) => li.LocationAreaId == request.DestinationLocationAreaId) .Where((li, si) => li.IsEnable == true) .Where((li, si) => li.Id != shelfInfo.CurrentLocationId) diff --git a/版本履历表.xlsx b/版本履历表.xlsx index e432b44..4224a7e 100644 Binary files a/版本履历表.xlsx and b/版本履历表.xlsx differ