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

Loading…
Cancel
Save