|
@@ -26,6 +26,13 @@
|
|
|
ref="table"
|
|
|
>
|
|
|
<el-table-column show-overflow-tooltip type="selection" fixed="left"/>
|
|
|
+ <el-table-column show-overflow-tooltip label="默认采购组织" align="center" prop="orgName" width="250px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-input clearable :disabled="scope.row.status !== '1' || lineDisable" size="mini" v-model="scope.row.orgName" @clear="clean(scope.row, '默认采购组织')" @focus="chooseMxHW(scope.$index, 'ORG_PARAM', true, '默认采购组织')">
|
|
|
+ <el-button size="mini" :disabled="scope.row.status !== '1' || lineDisable" slot="append" icon="el-icon-more" @click="chooseMxHW(scope.$index, 'ORG_PARAM', true, '默认采购组织')"></el-button>
|
|
|
+ </el-input>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column show-overflow-tooltip label="需求单号" align="center" prop="code" width="100"/>
|
|
|
<!-- <el-table-column show-overflow-tooltip label="序号" align="center" type="index" width="55" fixed="left"/> -->
|
|
|
<el-table-column show-overflow-tooltip label="行号" align="center" prop="rowNo">
|
|
@@ -106,13 +113,6 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column show-overflow-tooltip label="供应仓库" align="center" prop="lastWarehouseName" width="100"/>
|
|
|
<el-table-column show-overflow-tooltip label="供应货位" align="center" prop="lastAllocationName" width="120"/>
|
|
|
- <el-table-column show-overflow-tooltip label="默认采购组织" align="center" prop="orgName" width="250px">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-input clearable :disabled="scope.row.status !== '1' || lineDisable" size="mini" v-model="scope.row.orgName" @clear="clean(scope.row, '默认采购组织')" @focus="chooseMxHW(scope.$index, 'ORG_PARAM', true, '默认采购组织')">
|
|
|
- <el-button size="mini" :disabled="scope.row.status !== '1' || lineDisable" slot="append" icon="el-icon-more" @click="chooseMxHW(scope.$index, 'ORG_PARAM', true, '默认采购组织')"></el-button>
|
|
|
- </el-input>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column show-overflow-tooltip label="业务类型" align="center" prop="billType" width="120" :formatter="formatterBillType"/>
|
|
|
<el-table-column show-overflow-tooltip label="行状态" align="center" prop="status" width="100px" :formatter="hangStatus"/>
|
|
|
<el-table-column show-overflow-tooltip label="收货仓库" align="center" prop="deliveryWarehouseName" width="200">
|