647556386
2026-01-27 1378fc4cd7abc24ed3a982e09437c2c8a74e9f2f
ÏîÄ¿´úÂë/WIDESEA_WMSClient/src/views/stock/stockInfoDetail.vue
@@ -54,18 +54,28 @@
          type: "string",
        },
      ],
    ]);
    const searchFormFields = ref({
      materielCode: "",
      materielName: "",
      orderNo: "",
      palletCode: ""
    });
    const searchFormOptions = ref([
      [
        { title: "物料编号", field: "materielCode" },
        { title: "物料名称", field: "materielName" },
        { title: "单据编号", field: "orderNo" },
        { title: "物料编号", field: "materielCode", type: 'like' },
        { title: "物料名称", field: "materielName", type: 'like' },
        { title: "单据编号", field: "orderNo", type: 'like' },
      ], [
        { title: "托盘号", field: "palletCode", type: 'like' },
        { title: "批次", field: "batchNo", type: 'like' },
        { title: "条码", field: "barcode", type: 'like' },
      ],
      [
        { title: "库存状态", field: "status", type: 'select', dataKey: "stockStatusEmun", data: [] },
        { title: "仓库", field: "warehouseCode", type: 'select', dataKey: "warehouse", data: [] },
      ],
    ]);
    const columns = ref([
@@ -87,6 +97,20 @@
        align: "left",
      },
      {
        field: "palletCode",
        title: "托盘编号",
        type: "string",
        width: 120,
        align: "left",
      },
      {
        field: "locationCode",
        title: "货位编号",
        type: "string",
        width: 150,
        align: "left",
      },
      {
        field: "materielCode",
        title: "物料编号",
        type: "string",
@@ -99,19 +123,20 @@
        type: "string",
        width: 150,
        align: "left",
        bind: { key: "materielInfo", data: [] },
      },
      {
        field: "orderNo",
        title: "单据编号",
        type: "decimal",
        width: 90,
        width: 150,
        align: "left",
      },
      {
        field: "batchNo",
        title: "批次号",
        type: "string",
        width: 90,
        width: 150,
        align: "left",
      },
      {
@@ -120,20 +145,44 @@
        type: "int",
        width: 120,
        align: "left",
        hidden: true,
      },
      {
        field: "supplyCode",
        title: "供应商编号",
        type: "string",
        width: 120,
        align: "left",
      },
      {
        field: "warehouseCode",
        title: "仓库号",
        type: "string",
        width: 160,
        align: "left",
        bind: { key: "wareHouse", data: [] },
      },
      {
        field: "barcode",
        title: "条码",
        type: "string",
        width: 120,
        align: "left",
      },
      {
        field: "stockQuantity",
        title: "库存数量",
        type: "string",
        width: 200,
        width: 110,
        align: "left",
      },
      {
        field: "outboundQuantity",
        title: "出库数量",
        type: "string",
        width: 180,
        width: 110,
        align: "left",
        hidden: true,
      },
      {
        field: "status",
@@ -142,6 +191,13 @@
        width: 120,
        align: "left",
        bind: { key: "stockStatusEmun", data: [] },
      },
      {
        field: "validDate",
        title: "有效期",
        type: "datetime",
        width: 160,
        align: "left",
      },
      {
        field: "creater",
@@ -177,6 +233,7 @@
        type: "string",
        width: 100,
        align: "left",
        hidden: true,
      },
    ]);
    const detail = ref({