| | |
| | | </div> |
| | | <div class="info-group"> |
| | | <div class="info-item"> |
| | | <span class="info-label">需求数量</span> |
| | | <span class="info-label">预计生产数量</span> |
| | | <span class="info-value">{{ transferCardRowData.planQuantity }}</span> |
| | | </div> |
| | | <div class="info-item"> |
| | |
| | | placeholder="请输入报废数量" |
| | | @input="handleScrapQtyInput" /> |
| | | </el-form-item> |
| | | <el-form-item label="检品数量" |
| | | prop="inspectedQuantity"> |
| | | <el-input-number v-model.number="reportForm.inspectedQuantity" |
| | | :min="0" |
| | | :step="1" |
| | | style="width: 300px" |
| | | controls-position="right" |
| | | placeholder="请输入检品数量"/> |
| | | </el-form-item> |
| | | <el-form-item label="班组信息"> |
| | | <el-select v-model="reportForm.userId" |
| | | style="width: 300px" |
| | |
| | | prop: "totalInvestment", |
| | | }, |
| | | { |
| | | label: "需求数量", |
| | | label: "预计生产数量", |
| | | prop: "planQuantity", |
| | | width: "140", |
| | | }, |
| | |
| | | totalInvestment: 0, |
| | | quantity: null, |
| | | scrapQty: null, |
| | | inspectedQuantity: null, |
| | | userName: "", |
| | | workOrderId: "", |
| | | reportWork: "", |
| | |
| | | reportForm.workOrderId = row.id; |
| | | reportForm.reportWork = row.reportWork; |
| | | reportForm.productMainId = row.productMainId; |
| | | reportForm.inspectedQuantity = row.inspectedQuantity; |
| | | reportForm.scrapQty = |
| | | row.scrapQty !== undefined && row.scrapQty !== null ? row.scrapQty : null; |
| | | nextTick(() => { |