Compare commits

..

No commits in common. "9f980ea5e5fcf7f28927a18b1ae39ac89012d216" and "2a5cd848331729b0e2f2c99700d5555dafcbbcaf" have entirely different histories.

3 changed files with 4 additions and 9 deletions

View File

@ -191,9 +191,9 @@
<!-- 添加或修改出库计划管理对话框 -->
<el-dialog :close-on-click-modal="false" :title="title" :visible.sync="open" append-to-body width="60%">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<!-- <el-form-item label="计划编号" prop="planCode">-->
<!-- <el-input v-model="form.planCode" placeholder="请输入计划编号" :readonly="title == '修改出库计划管理'"/>-->
<!-- </el-form-item>-->
<el-form-item label="计划编号" prop="planCode">
<el-input v-model="form.planCode" placeholder="请输入计划编号" :readonly="title == '修改出库计划管理'"/>
</el-form-item>
<el-form-item label="出库类型" prop="wmsBusinessTypeId">
<el-select v-model="form.wmsBusinessTypeId" placeholder="请选择出库类型">
<el-option

View File

@ -14,10 +14,6 @@ export default {
planTypeId: {
type: String,
require: true
},
planTypeCode: {
type: String,
require: true
}
},
data() {
@ -29,7 +25,7 @@ export default {
},
computed: {
getKnifeType() {
if (["CDHK", "ZDHK"].includes(this.planTypeCode)) {
if (this.planTypeId == 9 || this.planTypeId == 15) {
return "整刀"
} else {
return "刀柄类"

View File

@ -230,7 +230,6 @@ export default {
<wms-in-plan-detail-entity-table-cmps
:entityList.sync="wmsInPlanDetailEntityList"
:planTypeId="localDataForm.planTypeId"
:planTypeCode="localDataForm.planTypeCode"
></wms-in-plan-detail-entity-table-cmps>
</el-form>
<div slot="footer" class="dialog-footer">