Commit 1c2e2eca by wangchunyang

统计页面文字调整

parent 2c73e2a2
...@@ -63,10 +63,10 @@ ...@@ -63,10 +63,10 @@
</template> </template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item label="物料" prop="materialId"> <el-form-item label="物料名称" prop="materialId">
<el-input <el-input
v-model="queryParams.materialId" v-model="queryParams.materialId"
placeholder="请输入物料或编码" placeholder="请输入物料名称"
clearable clearable
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
<el-form-item label="SAP物料号" prop="materialId"> <el-form-item label="SAP物料号" prop="materialId">
<el-input <el-input
v-model="queryParams.materialId" v-model="queryParams.materialId"
placeholder="请输入物料编码" placeholder="请输入SAP物料号"
clearable clearable
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
......
...@@ -146,9 +146,9 @@ ...@@ -146,9 +146,9 @@
<!-- 盘点对话框--> <!-- 盘点对话框-->
<el-dialog :title="checkTitle" :visible.sync="checkOpen" width="1500px" append-to-body> <el-dialog :title="checkTitle" :visible.sync="checkOpen" width="1500px" append-to-body>
<el-form ref="checkFormRef" :model="form" :rules="rules" label-width="80px"> <el-form ref="checkFormRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="盘点单号" prop="stocktakeId" > <!-- <el-form-item label="盘点单号" prop="stocktakeId" >
<el-input v-model="form.stocktakeId" placeholder="请输入盘点单号" disabled /> <el-input v-model="form.stocktakeId" placeholder="请输入盘点单号" disabled />
</el-form-item> </el-form-item> -->
<el-form-item label="计划日期" prop="plannedDate"> <el-form-item label="计划日期" prop="plannedDate">
<el-date-picker clearable disabled <el-date-picker clearable disabled
v-model="form.plannedDate" v-model="form.plannedDate"
...@@ -178,9 +178,9 @@ ...@@ -178,9 +178,9 @@
<!-- 盘点确认弹窗--> <!-- 盘点确认弹窗-->
<el-dialog :title="confirmTitle" :visible.sync="confirmOpen" width="1500px" append-to-body> <el-dialog :title="confirmTitle" :visible.sync="confirmOpen" width="1500px" append-to-body>
<el-form ref="confirmFormRef" :model="form" :rules="rules" label-width="80px"> <el-form ref="confirmFormRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="盘点单号" prop="stocktakeId" > <!-- <el-form-item label="盘点单号" prop="stocktakeId" >
<el-input v-model="form.stocktakeId" placeholder="请输入盘点单号" disabled /> <el-input v-model="form.stocktakeId" placeholder="请输入盘点单号" disabled />
</el-form-item> </el-form-item> -->
<el-form-item label="计划日期" prop="plannedDate"> <el-form-item label="计划日期" prop="plannedDate">
<el-date-picker clearable disabled <el-date-picker clearable disabled
v-model="form.plannedDate" v-model="form.plannedDate"
......
...@@ -353,10 +353,10 @@ console.log(this.isConfirm) ...@@ -353,10 +353,10 @@ console.log(this.isConfirm)
/** 打开库位选择器 */ /** 打开库位选择器 */
openLocationSelector() { openLocationSelector() {
if (!this.searchParams.warehouseId) { // if (!this.searchParams.warehouseId) {
this.$message.warning("请先选择仓库") // this.$message.warning("请先选择仓库")
return // return
} // }
this.locationSelectorVisible = true this.locationSelectorVisible = true
}, },
......
...@@ -220,7 +220,7 @@ ...@@ -220,7 +220,7 @@
<where> <where>
and i.quantity != 0 and i.inventory_status = 1 and i.is_used = 1 and i.quantity != 0 and i.inventory_status = 1 and i.is_used = 1
<if test="inventoryType != null "> and i.inventory_type = #{inventoryType}</if> <if test="inventoryType != null "> and i.inventory_type = #{inventoryType}</if>
<if test="materialId != null and materialId != ''"> and m.material_code like concat('%', #{materialId}, '%')</if> <if test="materialId != null and materialId != ''"> and m.material_name like concat('%', #{materialId}, '%')</if>
<if test="batchId != null and batchId != ''"> and i.batch_id like concat('%', #{batchId}, '%')</if> <if test="batchId != null and batchId != ''"> and i.batch_id like concat('%', #{batchId}, '%')</if>
<if test="warehousesId != null and warehousesId != ''"> and w.warehouses_id = #{warehousesId}</if> <if test="warehousesId != null and warehousesId != ''"> and w.warehouses_id = #{warehousesId}</if>
<if test="locationId != null and locationId != ''"> and i.location_id = #{locationId}</if> <if test="locationId != null and locationId != ''"> and i.location_id = #{locationId}</if>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论