This commit is contained in:
2026-02-03 11:40:02 +08:00
parent 0744b3de01
commit 7340260cb2
6 changed files with 80 additions and 123 deletions

View File

@@ -143,6 +143,7 @@
<el-table-column label="物料描述" align="center" prop="wlMs" width="250" />
<el-table-column label="供应商名称" align="center" prop="gysMc" width="200" />
<el-table-column label="合同单价" align="center" prop="htDj" />
<el-table-column label="总计" align="center" prop="totalAmount" />
<el-table-column label="订单编号" align="center" prop="sapNo" width="150" />
<el-table-column label="计量单位" align="center" prop="dw" />
<el-table-column label="实际入库数量" align="center" prop="realQty" width="120" />
@@ -368,16 +369,6 @@
</el-input>
</template>
</el-table-column>
<el-table-column label="备注" align="center" width="200">
<template #default="scope">
<el-input v-model="scope.row.remark" placeholder="请输入备注"></el-input>
</template>
</el-table-column>
<el-table-column label="容器码" align="center" width="150">
<template #default="scope">
<el-input v-model="scope.row.trayCode" placeholder="请输入容器码"></el-input>
</template>
</el-table-column>
<el-table-column label="身份码" align="center" width="200">
<template #default="scope">
<el-input v-model="scope.row.entityId" placeholder="请输入身份码"></el-input>
@@ -403,6 +394,16 @@
<el-input v-if="scope.row.isnew" v-model="scope.row.gysMc" placeholder="供应商"></el-input>
</template>
</el-table-column>
<el-table-column label="容器码" align="center" width="150">
<template #default="scope">
<el-input v-model="scope.row.trayCode" placeholder="请输入容器码"></el-input>
</template>
</el-table-column>
<el-table-column label="备注" align="center" width="200">
<template #default="scope">
<el-input v-model="scope.row.remark" placeholder="请输入备注"></el-input>
</template>
</el-table-column>
<el-table-column label="一次封样号" align="center" width="200">
<template #default="scope">
<el-input v-model="scope.row.fycde1" placeholder="请输入一次封样号"></el-input>

View File

@@ -22,9 +22,9 @@
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="单据号" prop="billNoCk">
<el-form-item label="单据号" prop="billNo">
<el-input
v-model="queryParams.billNoCk"
v-model="queryParams.billNo"
placeholder="请输入单据号"
clearable
@keyup.enter="handleQuery"
@@ -147,7 +147,7 @@
<el-button
link
type="primary"
@click="picDetailFun(scope.row.billNoCk)"
@click="picDetailFun(scope.row.billNo)"
>图片</el-button
>
<el-button
@@ -282,6 +282,7 @@
prop="htDj"
width="120"
/>
<el-table-column label="总计" align="center" prop="totalAmount" />
<el-table-column label="计量单位" align="center" prop="dw" />
<el-table-column
label="实际出库数量"
@@ -1275,10 +1276,10 @@ function reset() {
/** 搜索按钮操作 */
function handleQuery() {
if (ckTime.value && ckTime.value.length > 0) {
queryParams.value.statDate = ckTime.value[0];
queryParams.value.startDate = ckTime.value[0];
queryParams.value.endDate = ckTime.value[1];
} else {
queryParams.value.statDate = "";
queryParams.value.startDate = "";
queryParams.value.endDate = "";
}
queryParams.value.pageNum = 1;
@@ -1546,8 +1547,8 @@ const handleStockDelete = (row) => {
function picDetailFun(billNoCk) {
picDetail({ billNo: billNoCk, photoType: 1 }).then((response) => {
function picDetailFun(billNo) {
picDetail({ billNo: billNo, photoType: 1 }).then((response) => {
if (response.data.length > 0) {
dialogPicDetailVisible.value = true;
picList.value = response.data;

View File

@@ -119,6 +119,8 @@
<el-table-column label="物料号" align="center" prop="wlNo" width="100" />
<el-table-column label="物料描述" align="center" prop="wlMs" width="150" />
<el-table-column label="单位" align="center" prop="dw" />
<el-table-column label="合同单价" align="center" prop="htDj" />
<el-table-column label="总计" align="center" prop="totalAmount" />
<el-table-column label="数量" align="center" prop="realQty" width="120" />
<el-table-column label="项目号" align="center" prop="xmNo" width="150" />
<el-table-column label="项目描述" align="center" prop="xmMs" width="150" />

View File

@@ -121,6 +121,7 @@
<el-table-column label="物料描述" align="center" prop="wlMs" width="150" />
<el-table-column label="供应商名称" align="center" prop="gysMc" width="150" />
<el-table-column label="合同单价" align="center" prop="htDj" />
<el-table-column label="总计" align="center" prop="totalAmount" />
<el-table-column label="单位" align="center" prop="dw" />
<el-table-column label="实际入库数量" align="center" prop="realQty" width="120" />
<el-table-column label="库位码" align="center" prop="pcode" width="120" />