wangxinhui
昨天 9ce6731460179c71f0f2c636b2a1598324d5194e
ÏîÄ¿´úÂë/WMS/WMSClient/src/views/stock/stockInfo.vue
@@ -45,11 +45,20 @@
      const searchFormFields = ref({
        palletCode: "",
        locationCode: "",
        materielCode: "",
        materielWide: "",
      });
      const searchFormOptions = ref([
        [
          { title: "托盘编号", field: "palletCode" },
          { title: "货位编号", field: "locationCode" },
          { title: "托盘编号", field: "palletCode",type:"like" },
          { title: "货位编号", field: "locationCode",type:"like" },
          {title: "库存组织", field:"materielInvOrgId",type:"select",dataKey:"materielInvOrgEnum",data:[]},
          {title: "物料编号", field:"materielCode",type:"like"},
        ],
        [
          {title: "物料幅宽", field:"materielWide",type:"int"},
          {title: "库存状态", field:"stockStatus",type:"select",dataKey:"stockStatusEmun",data:[]},
          { title: "创建时间", field: "createDate", type: "datetime" },
        ],
      ]);
      const columns = ref([
@@ -64,34 +73,107 @@
          align: "left",
        },
        {
          field: "warehouseId",
          title: "仓库",
          type: "select",
          width: 90,
          align: "left",
          bind: { key: "warehouses", data: [] },
        },
        {
          field: "palletCode",
          title: "托盘编号",
          type: "string",
          width: 90,
          width: 190,
          align: "left",
        },
        {
          field: "locationCode",
          title: "货位编号",
          type: "string",
          width: 150,
          width: 190,
          align: "left",
        },
        // {
        //   field: "isFull",
        //   title: "是否满盘",
        //   type: "string",
        //   width: 150,
        //   align: "left",
        //   bind: { key: "yesno", data: [] },
        // },
         {
          field: "warehouseId",
          title: "仓库",
          type: "select",
        {
          field: "palletType",
          title: "托盘类型",
          type: "string",
          width: 110,
          align: "left",
          bind:{key: "locationTypeEnum", data: []}
        },
        {
          field: "materielInvOrgId",
          title: "库存组织",
          type: "string",
          width: 110,
          align: "left",
          bind:{key: "materielInvOrgEnum", data: []}
        },
        {
          field: "materielCode",
          title: "物料编号",
          type: "string",
          width: 120,
          align: "left",
      },
      {
          field: "materielName",
          title: "物料名称",
          type: "string",
          width: 120,
          align: "left",
      },
        {
          field: "stockAttribute",
          title: "物料类型",
          type: "string",
          width: 100,
          align: "left",
          bind: { key: "warehouses", data: [] },
          bind: { key: "materielTypeEnum", data: [] },
        },
        {
        field: "stockStatus",
        title: "库存状态",
        type: "string",
        width: 180,
        align: "left",
        bind: { key: "stockStatusEmun", data: [] },
      },
      {
          field: "stockLength",
          title: "库存总长",
          type: "string",
          width: 110,
          align: "left",
      },
      {
          field: "materielWeight",
          title: "物料重量",
          type: "string",
          width: 110,
          align: "left",
      },
      {
          field: "materielThickness",
          title: "物料直径",
          type: "string",
          width: 110,
          align: "left",
      },
      {
          field: "materielWide",
          title: "物料幅宽",
          type: "string",
          width: 110,
          align: "left",
      },
        {
          field: "unit",
          title: "单位",
          type: "string",
          width: 80,
          align: "left",
        },
        {
          field: "creater",