|
|
|
|
@ -23,15 +23,15 @@
|
|
|
|
|
<n-descriptions-item :span="1" label="应入数量:">
|
|
|
|
|
{{ RecptInfo.quantityRecived }}
|
|
|
|
|
</n-descriptions-item>
|
|
|
|
|
<n-descriptions-item :span="1" label="应入重量:">
|
|
|
|
|
{{ RecptInfo.weightRecived }}
|
|
|
|
|
</n-descriptions-item>
|
|
|
|
|
<!-- <n-descriptions-item :span="1" label="应入重量:">-->
|
|
|
|
|
<!-- {{ RecptInfo.weightRecived }}-->
|
|
|
|
|
<!-- </n-descriptions-item>-->
|
|
|
|
|
<n-descriptions-item :span="1" label="入库数量:">
|
|
|
|
|
{{ num }}
|
|
|
|
|
</n-descriptions-item>
|
|
|
|
|
<n-descriptions-item :span="1" label="入库重量:">
|
|
|
|
|
{{ weight }}
|
|
|
|
|
</n-descriptions-item>
|
|
|
|
|
<!-- <n-descriptions-item :span="1" label="入库重量:">-->
|
|
|
|
|
<!-- {{ weight }}-->
|
|
|
|
|
<!-- </n-descriptions-item>-->
|
|
|
|
|
<n-descriptions-item :span="1" label="入库仓库:">
|
|
|
|
|
<n-select
|
|
|
|
|
v-model:value="RecptInfo.warehouseId"
|
|
|
|
|
@ -293,6 +293,11 @@ const columns: Ref<DataTableColumns<wms.recptLineRawType.columns>> = ref([
|
|
|
|
|
key: 'specification',
|
|
|
|
|
width: 120
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '颜色',
|
|
|
|
|
key: 'colorName',
|
|
|
|
|
width: 120
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// title: '应入数量',
|
|
|
|
|
// key: 'quantityRecived',
|
|
|
|
|
@ -334,21 +339,21 @@ const columns: Ref<DataTableColumns<wms.recptLineRawType.columns>> = ref([
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '入库重量',
|
|
|
|
|
key: 'weight',
|
|
|
|
|
width: 180,
|
|
|
|
|
render: row => {
|
|
|
|
|
return (
|
|
|
|
|
<div class="flex-center">
|
|
|
|
|
<sapn class="color-red mr-5px">*</sapn>
|
|
|
|
|
<n-form-item path={`weight${row.recptId}`}>
|
|
|
|
|
<n-input disabled={info.value} v-model:value={row.weight}></n-input>
|
|
|
|
|
</n-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// title: '入库重量',
|
|
|
|
|
// key: 'weight',
|
|
|
|
|
// width: 180,
|
|
|
|
|
// render: row => {
|
|
|
|
|
// return (
|
|
|
|
|
// <div class="flex-center">
|
|
|
|
|
// <sapn class="color-red mr-5px">*</sapn>
|
|
|
|
|
// <n-form-item path={`weight${row.recptId}`}>
|
|
|
|
|
// <n-input disabled={info.value} v-model:value={row.weight}></n-input>
|
|
|
|
|
// </n-form-item>
|
|
|
|
|
// </div>
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
title: '仓库名称',
|
|
|
|
|
key: 'warehouseName',
|
|
|
|
|
@ -687,5 +692,6 @@ function init() {
|
|
|
|
|
// 获取部门信息
|
|
|
|
|
// getDeptTree();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init();
|
|
|
|
|
</script>
|