huangxiaoqiang
2025-06-11 8c8532db8fc7fa76b7fe4c254a36d67c6af24ace
Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/demo_Product/Dt_BillGroupStockDetail.vue
@@ -6,8 +6,8 @@
 -->
<template>
    <vol-box :lazy="true" v-model="model1" title="库存明细信息" :width="1820" :padding="5" :onModelClose="onModelClose">
        <view-grid ref="grid" :columns="columns" :searchFormFields="searchFormFields"
            :searchFormOptions="searchFormOptions" :table="table" :extend="extend">
        <view-grid ref="grid" :columns="columns" :searchFormFields="searchFormFields" :editFormFields="editFormFields"
            :editFormOptions="editFormOptions" :searchFormOptions="searchFormOptions" :table="table" :extend="extend">
        </view-grid>
        <template #footer>
            <div>
@@ -20,20 +20,20 @@
<script>
import extend from "@/extension/widesea_wms/stock/Dt_BillGroupStockDetail.js";
import VolBox from '@/components/basic/VolBox.vue';
import { ref, defineComponent } from "vue";
import { ref, defineComponent, getCurrentInstance } from "vue";
export default defineComponent({
    setup() {
        const table = ref({
            key: 'groupDetailId',
            key: 'id',
            footer: "Foots",
            cnName: '库存明细信息',
            name: 'stock/Dt_BillGroupStockDetail',
            url: "/StockInfoDetail/",
            sortName: "GroupId"
            sortName: "id"
        });
        const editFormFields = ref({
            "palletCode": "",
            "materialNo": ""
            "materialNo": "",
        });
        const editFormOptions = ref([
            [
@@ -43,7 +43,8 @@
        ]);
        const searchFormFields = ref({
            "palletCode": "",
            "materialNo": ""
            "materialNo": "",
            "stockId": 0
        });
        const searchFormOptions = ref([
            [
@@ -51,25 +52,19 @@
                { "title": "物料编号", "field": "materialNo", type: "text" },
            ]
        ]);
        const columns = ref([{ field: 'groupDetailId', title: '库存明细ID', type: 'int', width: 110, hidden: true, readonly: true, require: true, align: 'left' },
        { field: 'groupId', title: '外健', type: 'int', width: 110, hidden: true, align: 'left', sort: true },
        { field: 'palletCode', title: '托盘号', type: 'string', width: 110, align: 'left' },
        const columns = ref([{ field: 'id', title: '库存明细ID', type: 'int', width: 110, hidden: true, readonly: true, require: true, align: 'left' },
        { field: 'stockId', title: '外健', type: 'int', width: 110, hidden: true, align: 'left', sort: true },
        { field: 'orderNo', title: '单据编号', type: 'string', width: 110, align: 'left' },
        { field: 'orderDate', title: '单据日期', type: 'datetime', width: 150, align: 'left', sort: true },
        { field: 'batchNo', title: '批次号', type: 'string', width: 110, align: 'left' },
        { field: 'materialNo', title: '物料编号', type: 'string', width: 110, align: 'left' },
        { field: 'materialName', title: '物料名称', type: 'string', width: 110, align: 'left' },
        { field: 'outBoxCode', title: '外箱码', type: 'string', width: 120, align: 'left' },
        { field: 'inBoxCode', title: '内箱码', type: 'string', width: 120, align: 'left' },
        { field: 'emptyPalletCode', title: '空托盘码', type: 'string', width: 120, align: 'left' },
        { field: 'palletUnit', title: '组盘单位', type: 'string', width: 110, align: 'left' },
        { field: 'palletQuantity', title: '组盘数量', type: 'decimal', width: 110, align: 'left' },
        { field: 'basicUnit', title: '单位', type: 'string', width: 110, align: 'left' },
        { field: 'basicQuantity', title: '计量', type: 'decimal', width: 110, align: 'left' },
        { field: 'createID', title: '创建ID', type: 'int', sort: true, width: 100, hidden: true, align: 'left' },
        { field: 'materielCode', title: '物料编号', type: 'string', width: 110, align: 'left' },
        { field: 'materielName', title: '物料名称', type: 'string', width: 110, align: 'left' },
        { field: 'serialNumber', title: '序列号', type: 'string', width: 120, align: 'left' },
        { field: 'stockQuantity', title: '库存数量', type: 'string', width: 120, align: 'left' },
        { field: 'outboundQuantity', title: '出库数量', type: 'string', width: 120, align: 'left' },
        { field: 'status', title: '库存状态', type: 'string', width: 110, align: 'left' },
        { field: 'remark', title: '备注', type: 'decimal', width: 110, align: 'left' },
        { field: 'creater', title: '创建人', type: 'string', sort: true, width: 110, align: 'left' },
        { field: 'createDate', title: '创建时间', type: 'datetime', sort: true, width: 150, align: 'left', sort: true },
        { field: 'modifyID', title: '修改人ID', type: 'int', sort: true, width: 100, hidden: true, align: 'left' },
        { field: 'modifier', title: '修改人', type: 'string', sort: true, width: 100, align: 'left' },
        { field: 'modifyDate', title: '修改时间', type: 'datetime', sort: true, width: 150, align: 'left', sort: true }]);
        const detail = ref({
@@ -83,11 +78,11 @@
        const model1 = ref(false);
        const palletCode = ref("");
        const openModel1 = (row)=>{
        const openModel1 = (row) => {
            palletCode.value = row.palletCode;
            searchFormFields.value.stockId = row.id;
            model1.value = true;
        }
        return {
            table,
@@ -105,7 +100,7 @@
        };
    },
    components: {
        'vol-box': VolBox
        'vol-box': VolBox
    },
});
</script>