Commit d35bbbd0 authored by xioln's avatar xioln

问题修改

parent fab5134f
...@@ -70,7 +70,6 @@ export default { ...@@ -70,7 +70,6 @@ export default {
this.selection = val this.selection = val
}, },
submitEvent() { submitEvent() {
console.log(this.selection)
const selection = this.selection.filter(r => { const selection = this.selection.filter(r => {
if (!this.basicData.inStorageRequestItems) { if (!this.basicData.inStorageRequestItems) {
return true return true
......
...@@ -44,8 +44,11 @@ export default { ...@@ -44,8 +44,11 @@ export default {
const row = data.row const row = data.row
const form = { const form = {
aircraftType: { defName: row.source.aircraftType.defName }, aircraftType: { defName: row.source.aircraftType.defName },
aircraftTypeId: row.source.aircraftType.id,
aircraftSorties: { defName: row.source.defName }, aircraftSorties: { defName: row.source.defName },
soritesType: { type: row.target.type } aircraftSortiesId: row.source.id,
soritesType: { type: row.target.type },
soritesTypeId: row.target.id
} }
this.form = form this.form = form
} }
......
/** /**
* @Description: 召回出库物料明细 * @Description: 返厂出库物料明细
* @author xioln * @author xioln
* @date 2023-08-02 * @date 2023-08-02
*/ */
......
...@@ -75,7 +75,9 @@ export default { ...@@ -75,7 +75,9 @@ export default {
return Array.isArray(row.withProductMaterial) ? row.withProductMaterial.join(';') : row.withProductMaterial return Array.isArray(row.withProductMaterial) ? row.withProductMaterial.join(';') : row.withProductMaterial
} }
}, },
{ title: '紧急程度', key: 'urgency', align: 'center', headerAlign: 'center' }, { title: '紧急程度', key: 'urgency', align: 'center', headerAlign: 'center', formatter: (row, column, cellValue, index) => {
return row.urgency ? '紧急' : '正常'
} },
{ title: '入库单价', key: 'stockUnitPrice', align: 'center', headerAlign: 'center' }, { title: '入库单价', key: 'stockUnitPrice', align: 'center', headerAlign: 'center' },
{ title: '入库金额', key: 'stockPrice', align: 'center', headerAlign: 'center' }, { title: '入库金额', key: 'stockPrice', align: 'center', headerAlign: 'center' },
{ title: '含税单价', key: 'taxUnitPrice', align: 'center', headerAlign: 'center' }, { title: '含税单价', key: 'taxUnitPrice', align: 'center', headerAlign: 'center' },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment