Browse Source

添加预算计划采购查看库存代码

dev
long 2 years ago
parent
commit
8341f2c1c9
  1. 69
      src/views/activiti/form/ProcessUdgetPlanForm.vue

69
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -131,12 +131,23 @@
<template v-slot:actionPrice="props"> <template v-slot:actionPrice="props">
<a-tooltip placement="top"> <a-tooltip placement="top">
<template v-slot:title="props"> <template v-slot:title="props">
<p v-for="(item,index) in historyPrices" :key="index">历史价格{{ item.price }} 历史数量{{item.quantity}} 修改人{{item.createBy_dictText}}</p> <p v-for="(item,index) in historyPrices" :key="index">历史价格{{ item.price }} 历史数量{{item.quantity}}
修改人{{item.createBy_dictText}}</p>
</template> </template>
<a-button @mouseenter="seeHistoryPrice(props)">记录</a-button> <a-button @mouseenter="seeHistoryPrice(props)">记录</a-button>
</a-tooltip> </a-tooltip>
<!-- <a-button @click="chaKan(props)">查看</a-button>--> <!-- <a-button @click="chaKan(props)">查看</a-button>-->
</template> </template>
<template v-slot:materialWateNumber="props">
<a-tooltip placement="top">
<template v-slot:title="props">
库存数{{ wateNumber }}
</template>
<a-button @mouseenter="seeWateNumber(props)">库存</a-button>
</a-tooltip>
<!-- <a-button @click="chaKan(props)">查看</a-button>-->
</template>
</p-editable-table> </p-editable-table>
</a-tab-pane> </a-tab-pane>
@ -181,6 +192,8 @@
<script> <script>
import Template1 from '../../jeecg/JVxeDemo/layout-demo/Template1'
const VALIDATE_NO_PASSED = Symbol() const VALIDATE_NO_PASSED = Symbol()
import pick from 'lodash.pick' import pick from 'lodash.pick'
import { getAction, httpAction, getCurrentTime, getStringArry, getRecord, downFile } from '@/api/manage' import { getAction, httpAction, getCurrentTime, getStringArry, getRecord, downFile } from '@/api/manage'
@ -235,6 +248,7 @@
name: 'ProcessUdgetPlanForm', name: 'ProcessUdgetPlanForm',
mixins: [JEditableTableMixin], mixins: [JEditableTableMixin],
components: { components: {
Template1,
JFormContainer, JFormContainer,
JDate, JDate,
JUpload, JUpload,
@ -268,8 +282,8 @@
hiegs: true, hiegs: true,
historyBigId: [], historyBigId: [],
historyPrices: [], historyPrices: [],
historyPrice:{ wateNumber: 0,
}, historyPrice: {},
isHistoryBigId: false, isHistoryBigId: false,
isIfInspection: false, isIfInspection: false,
bigIdMerchandiseNews: [], bigIdMerchandiseNews: [],
@ -459,6 +473,17 @@
slotName: 'actionPrice' slotName: 'actionPrice'
// scopedSlots: {customRender: 'fileSlot'} // scopedSlots: {customRender: 'fileSlot'}
}, },
{
title: '库存数量',
key: 'materialWateNumber',
type: FormTypes.slot,
disabled: this.disabled,
width: '80px',
// placeholder: '${title}',
// defaultValue: '',
slotName: 'materialWateNumber'
// scopedSlots: {customRender: 'fileSlot'}
},
{ {
title: '数量', title: '数量',
key: 'materialQuantity', key: 'materialQuantity',
@ -536,6 +561,7 @@
descriptionRake: '/description/processDescription/descriptionName', descriptionRake: '/description/processDescription/descriptionName',
merchandiseNewsList: '/merchandisenews/processMerchandiseNews/merchandiseNewsList', merchandiseNewsList: '/merchandisenews/processMerchandiseNews/merchandiseNewsList',
historyUrl: '/suppliesstronger/processSuppliesStronger/list', historyUrl: '/suppliesstronger/processSuppliesStronger/list',
stock: '/suppliesstronger/processSuppliesStronger/stock',
priceQuantityHistory: '/hy/priceQuantityHistory/list', priceQuantityHistory: '/hy/priceQuantityHistory/list',
getFirstNode: '/actProcessIns/getFirstNode', getFirstNode: '/actProcessIns/getFirstNode',
processUdgetPlanMaterial: { processUdgetPlanMaterial: {
@ -788,19 +814,19 @@
}, },
async seeHistoryPrice(log) { async seeHistoryPrice(log) {
this.historyPrices=[]; this.historyPrices = []
console.log(log) console.log(log)
let param = { let param = {
relationId: log.rowId, relationId: log.rowId,
pageSize: 5 pageSize: 5
} }
getAction(this.url.priceQuantityHistory, param).then((res) => { getAction(this.url.priceQuantityHistory, param).then((res) => {
console.log(res); console.log(res)
if (res.success) { if (res.success) {
res.result.records.forEach(item => { res.result.records.forEach(item => {
if (parseInt(res.result.total) > 0) { if (parseInt(res.result.total) > 0) {
this.isHistoryBigId = true this.isHistoryBigId = true
console.log(item.createBy_dictText); console.log(item.createBy_dictText)
this.historyPrices.push(item) this.historyPrices.push(item)
} }
@ -809,12 +835,33 @@
} }
}) })
}, },
async seeWateNumber(log) {
//
//this.assigneesText
console.log(this.assigneesText)
let pas = await log.target.getValuesPromise(log.rowIds)
if (pas[log.index].materialNumber !== '' && pas[log.index].materialNumber !== null) {
//
let par = {
merchandiseNewsId: pas[log.index].materialNumber,
materialType: this.assigneesText
}
getAction(this.url.stock, par).then((res) => {
// console.log(res);
if (res.success) {
this.wateNumber = res.result.materialQuantity
console.log(res, '----------------')
}
})
}
},
// //
async chaKan(log) { async chaKan(log) {
// console.log("00000000",log); // console.log("00000000",log);
let pas = await log.target.getValuesPromise(log.rowIds) let pas = await log.target.getValuesPromise(log.rowIds)
// console.log("111111111",log.rowIds); // console.log("111111111",log.rowIds);
// console.log("222222222222",pas); console.log('222222222222', pas)
if (pas[log.index].materialNumber !== '' && pas[log.index].materialNumber !== null) { if (pas[log.index].materialNumber !== '' && pas[log.index].materialNumber !== null) {
this.historyBigId = [] this.historyBigId = []
// //
@ -1144,9 +1191,9 @@
}, },
selectChang(val) { selectChang(val) {
if (val == 1) { if (val == 1) {
this.isIfInspection=true; this.isIfInspection = true
} else { } else {
this.isIfInspection=false; this.isIfInspection = false
} }
}, },
/*回显数据*/ /*回显数据*/
@ -1449,8 +1496,8 @@
this.$message.error('请选择采购类型') this.$message.error('请选择采购类型')
return return
} else { } else {
this.passTask(); this.passTask()
this.handleSubmit(true); this.handleSubmit(true)
} }
} }
}) })

Loading…
Cancel
Save