Browse Source

opt:单据管理字段优化

feature/forewarning_management
zhangzq 3 weeks ago
parent
commit
1d360075f1
  1. 23
      nladmin-ui/src/views/wms/pm_manage/form_data/index.vue

23
nladmin-ui/src/views/wms/pm_manage/form_data/index.vue

@ -222,22 +222,15 @@
:data="crud.data"
>
<el-table-column type="selection" width="55" />
<el-table-column prop="code" label="单据编码" show-overflow-tooltip width="120">
<template slot-scope="scope">
<el-link v-if="scope.row.hasChildren" type="warning" @click="toView(scope.row)">{{
scope.row.code
}}
</el-link>
<span v-else>{{ scope.row.code }}</span>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="form_type" min-width="120" :formatter="bill_typeFormat" label="单据类型" />
<el-table-column prop="code" label="单据编码" show-overflow-tooltip width="120" />
<el-table-column show-overflow-tooltip prop="stor_name" min-width="120" label="仓库" />
<el-table-column prop="qty" label="单据物料数量" show-overflow-tooltip />
<el-table-column prop="actual_qty" label="明细实际数量" show-overflow-tooltip width="120" />
<el-table-column prop="material_code" label="物料编码" show-overflow-tooltip :min-width="flexWidth('material_code',crud.data,'物料编码')" />
<el-table-column prop="material_name" label="物料名称" show-overflow-tooltip :min-width="flexWidth('material_name',crud.data,'物料名称')" />
<el-table-column prop="material_spec" label="物料规格" show-overflow-tooltip :min-width="flexWidth('material_spec',crud.data,'物料规格')" />
<el-table-column show-overflow-tooltip prop="form_type" min-width="120" :formatter="bill_typeFormat" label="单据类型" />
<el-table-column prop="material_code" label="物料编码" show-overflow-tooltip width="180" />
<el-table-column prop="material_name" label="物料名称" show-overflow-tooltip width="180" />
<el-table-column prop="material_spec" label="物料规格" show-overflow-tooltip width="180" />
<el-table-column prop="qty" label="计划数量" show-overflow-tooltip />
<el-table-column prop="actual_qty" label="分配数量" show-overflow-tooltip width="120" />
<el-table-column prop="actual_qty" label="处理处理" show-overflow-tooltip width="120" />
<el-table-column prop="pcsn" label="批次" show-overflow-tooltip width="120" />
<el-table-column prop="unit_name" label="单位" show-overflow-tooltip width="120" />
<el-table-column prop="source_form_date" label="源单日期" show-overflow-tooltip width="120" />

Loading…
Cancel
Save