Browse Source

2024.9.26 一、物料成本信息维护

二、加工中心功能改造
三、标准工序
四、商品组 - 标准工序
五、商品组 - Process Time Matrix

功能修正
java8
yuejiayang 1 year ago
parent
commit
7f05c23641
  1. 6
      src/views/modules/part/partProductGroupInformation.vue

6
src/views/modules/part/partProductGroupInformation.vue

@ -404,7 +404,7 @@
<el-dialog title="工序Process Time编辑" :close-on-click-modal="false" v-drag :visible.sync="ptmConditionProcessUpdateFlag" @close="closePtmConditionProcessUpdateDialog" width="888px"> <el-dialog title="工序Process Time编辑" :close-on-click-modal="false" v-drag :visible.sync="ptmConditionProcessUpdateFlag" @close="closePtmConditionProcessUpdateDialog" width="888px">
<el-table <el-table
:height="height - 350"
height="215px"
:data="copyProcessAttributeList" :data="copyProcessAttributeList"
border border
style="width: 100%"> style="width: 100%">
@ -426,9 +426,9 @@
</div> </div>
<div v-else> <div v-else>
<el-input v-model="scope.row.machCycleTime" v-if="item.columnProp === 'machCycleTime'" @change="changeMachCycleTime(scope.row)" class="inlineNumber numInput"></el-input> <el-input v-model="scope.row.machCycleTime" v-if="item.columnProp === 'machCycleTime'" @change="changeMachCycleTime(scope.row)" class="inlineNumber numInput"></el-input>
<el-input v-model="scope.row.machRunFactor" v-if="item.columnProp === 'machRunFactor'" @change="changeMachRunFactor(scope.row)" class="inlineNumber numInput"></el-input>
<el-input v-model="scope.row.machRunFactor" v-if="item.columnProp === 'machRunFactor'" @change="changeMachRunFactor(scope.row)" placeholder="将保留2位小数" class="inlineNumber numInput"></el-input>
<el-input v-model="scope.row.laborCycleTime" v-if="item.columnProp === 'laborCycleTime'" @change="changeLaborCycleTime(scope.row)" class="inlineNumber numInput"></el-input> <el-input v-model="scope.row.laborCycleTime" v-if="item.columnProp === 'laborCycleTime'" @change="changeLaborCycleTime(scope.row)" class="inlineNumber numInput"></el-input>
<el-input v-model="scope.row.laborRunFactor" v-if="item.columnProp === 'laborRunFactor'" class="inlineNumber numInput"></el-input>
<el-input v-model="scope.row.laborRunFactor" v-if="item.columnProp === 'laborRunFactor'" placeholder="将保留2位小数" class="inlineNumber numInput"></el-input>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save