修改包材出库新增数据结构

yangwl
LAPTOP-R6EHHS26\86155 10 months ago
parent dcf77c4de4
commit 3b1c4f1b80

@ -62,8 +62,8 @@
<td style="width: 18%;">{{n.equipmentName}}</td> <td style="width: 18%;">{{n.equipmentName}}</td>
<td style="width: 20%;">{{n.department}}</td> <td style="width: 20%;">{{n.department}}</td>
<td style="width: 10%;">{{n.equipmentStatus}}</td> <td style="width: 10%;">{{n.equipmentStatus}}</td>
<td style="width: 12%;">{{n.failureRate !=null ?n.failureRate+'%':'--'}}</td> <td style="width: 12%;">{{n.failureRate !=null ?n.failureRate.toFix(2)+'%':'--'}}</td>
<td style="width: 12%;">{{n.utilizationRatio !=null?n.utilizationRatio+'%':'--'}}</td> <td style="width: 12%;">{{n.utilizationRatio !=null?n.utilizationRatio.toFix(2)+'%':'--'}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

@ -203,6 +203,11 @@ export default {
produceCode: '', produceCode: '',
warehouseNo: '', warehouseNo: '',
}, },
queryParams2: {
orderNo: '',
warehouseNo: '',
orderLines:[],
},
// //
form: {}, form: {},
// //
@ -420,7 +425,10 @@ export default {
// this.getList(); // this.getList();
// }); // });
} else { } else {
addPurchaseOrderOutbound(_this.selectedRows).then(response => { this.queryParams2.orderNo = this.queryParams1.produceCode
this.queryParams2.warehouseCode = this.queryParams1.warehouseCode
this.queryParams2.orderLines = _this.selectedRows
addPurchaseOrderOutbound(_this.queryParams2).then(response => {
if (response.data) { if (response.data) {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;

Loading…
Cancel
Save