Browse Source

修改是否送检移动到采购流程

dev
long 2 years ago
parent
commit
6fd5a5a974
  1. 2
      src/components/tools/ShowAnnouncement.vue
  2. 7
      src/views/accessrecords/plan/ProcessMaterialsPlanList.vue
  3. 140
      src/views/accessrecords/statement/ProcessMaterialsPlanStatement4.vue
  4. 71
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  5. 3
      src/views/activiti/form/ProcessUdgetPlan.vue
  6. 126
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  7. 5
      src/views/activiti/todoManage.vue

2
src/components/tools/ShowAnnouncement.vue

@ -11,7 +11,7 @@
<a-button key="back" @click="handleCancel">关闭</a-button>
<a-button v-if="record.openType==='url'" type="primary" @click="toHandle">去处理</a-button>
</template>
<a-card class="daily-article" :loading="loading">
<a-card class="daily-article" :loading="loading" style="text-align: center">
<a-card-meta
:title="record.titile"
:description="'发布人:'+record.sender + ' 发布时间: ' + record.sendTime">

7
src/views/accessrecords/plan/ProcessMaterialsPlanList.vue

@ -50,6 +50,9 @@
<a-tab-pane tab="代储代销物资采购通知书" key="5" forceRender v-if="this.isIf">
<process-materials-plan-statement3 :materWared="this.$route.query.item"/>
</a-tab-pane>
<!-- <a-tab-pane tab="报验单" key="6" forceRender>
<process-materials-plan-statement4 :materWared="this.$route.query.item"/>
</a-tab-pane>-->
</a-tabs>
</a-card>
</template>
@ -61,6 +64,7 @@
import { getAction } from '@api/manage'
import ProcessMaterialsPlanStatement2 from '../statement/ProcessMaterialsPlanStatement2'
import ProcessMaterialsPlanStatement3 from '../statement/ProcessMaterialsPlanStatement3'
import ProcessMaterialsPlanStatement4 from '../statement/ProcessMaterialsPlanStatement4'
export default {
name: 'ProcessMaterialsPlanList',
@ -69,7 +73,8 @@
ProcessMaterialWarehousingFlowChart,
ProcessMaterialsPlanStatement,
ProcessMaterialsPlanStatement2,
ProcessMaterialsPlanStatement3
ProcessMaterialsPlanStatement3,
ProcessMaterialsPlanStatement4
},
data() {
return {

140
src/views/accessrecords/statement/ProcessMaterialsPlanStatement4.vue

@ -0,0 +1,140 @@
<template>
<div>
<a-button type="primary" icon="download" @click="downWord">下载</a-button>
<a-button type="primary" style="left: 10px" @click="previewWord">预览并打印</a-button>
<div style="width: 100%;height: 100%;">
<pdf v-show="false" ref="pdfWord" :src="pdfSrc" class="pdf" style=""></pdf>
</div>
</div>
</template>
<script>
const VALIDATE_NO_PASSED = Symbol()
import pick from 'lodash.pick'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getAction, downFile } from '@/api/manage'
import pdf from 'vue-pdf-signature'
import CMapReaderFactory from 'vue-pdf-signature/src/CMapReaderFactory'
export default {
name: 'ProcessMaterialsPlanStatement2',
mixins: [JeecgListMixin, mixinDevice],
components: { pdf, CMapReaderFactory },
props: {
materWared: {
type: String
},
/**/
procInstId: {
type: String,
default: '',
required: false
},
pictureId: {
type: String,
default: '',
required: false
},
lcModa: {
type: Object,
required: false
}
},
data() {
return {
showSessionId: '',
srcHtml: '',
modalLsVisible: false,
pdfWord: '',
pdfSrc: '',
queryParam:{
id:''
},
url: {
list: '/hy/processUdgetPlan/getPlanTable',
queryInspectionFormDownWord: '/word/queryInspectionFormDownWord',
queryInspectionFormPrevie: '/word/queryInspectionFormPrevie'
},
Wslist: null
}
},
mounted() {
this.showSessionId = window.location.search
},
watch:{
materWared:function (newData, oldData) {
//newData
//oldData
if(newData !== oldData){
this.loadData();
}
}
},
created() {
// downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => {
// console.log(data)
// const blob = new Blob([data], { type: 'application/pdf' })
// this.pdfWord = window.URL.createObjectURL(blob)
//
// })
// this.loadData();
},
activated() {
},
beforeMount() {
},
computed: {
importExcelUrl: function() {
return `${window._CONFIG['domianURL']}/${this.url.queryPlanApply}`
}
},
methods: {
//
downWord() {
downFile(this.url.queryInspectionFormDownWord, { id: this.queryParam.id }).then((data) => {
if (!data.size>0) {
this.$message.warning("文件下载失败")
return
}
const blob = new Blob([data]) //
var a = document.createElement('a') //<a></a>
a.href = URL.createObjectURL(blob) // ahref
a.download = '采购通知书.docx' //
a.style.display = 'none' // a
document.body.appendChild(a) // a
a.click() // aahref
a.remove()
})
},
previewWord() {
downFile(this.url.queryInspectionFormPrevie, { id: this.queryParam.id }).then((data) => {
if (!data.size>0) {
this.$message.warning("文件预览失败")
return
}
const blob = new Blob([data], { type: 'application/pdf' })
this.pdfSrc = window.URL.createObjectURL(blob)
console.log(this.pdfSrc)
window.open(this.pdfSrc)//
})
},
loadData() {
this.queryParam.id = this.materWared
},
}
}
</script>
<style lang="less" scoped>
</style>

71
src/views/activiti/form/ProcessMaterialWarehousingForm.vue

@ -71,16 +71,16 @@
style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="8" v-show="isIfDirect">
<a-col :span="8" v-show="false">
<a-form-item label="是否属于直达物资" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-decorator="['ifDirect',validatorRules.ifDirect]"
<j-dict-select-tag type="list" v-decorator="['ifDirect']"
:trigger-change="true" dictCode="if_status"
placeholder="请选择是否属于直达物资" @change="selectChang"/>
</a-form-item>
</a-col>
<a-col :span="8" v-show="isIfInspection">
<a-col :span="8" v-show="false">
<a-form-item label="是否需要送检" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-decorator="['ifInspection',validatorRules.ifInspection]"
<j-dict-select-tag type="list" v-decorator="['ifInspection']"
:trigger-change="true" dictCode="if_status"
placeholder="请选择是否需要送检"/>
</a-form-item>
@ -471,23 +471,6 @@
id: r.tableId
}).then((res) => {
if (res.success) {
if (res.result.materialType == 1) {
this.isTargetLibrary = true
}
if (res.result.materialType!=6){
if (res.result.planType==1){
this.isIfDirect=true
//isIfInspection
if (res.result.ifDirect==1){
this.isIfInspection=true
}
}else {
this.isIfDirect=false
}
}else {
this.isIfDirect=false
}
let formData = res.result
formData.tableName = r.tableName
this.data = formData
@ -537,20 +520,7 @@
} else {//
formData.targetLibrary = null
}
if(formData.planType==1 && formData.materialType !=6){
console.log('格式化后的数据', formData)
if (formData.ifDirect==null){
this.$message.error('请选择是否属于直达物资!')
return
}else {
if(formData.ifDirect==1){
if (formData.ifInspection==null){
this.$message.error('请选择是否需要送检!')
return
}
}
}
}
this.form.validateFields((err, values) => {
if (!err) {
@ -617,19 +587,7 @@
}
formData.describes = this.describes
console.log('格式化后的数据', formData)
if(formData.planType==1 && formData.materialType !=6){
if (formData.ifDirect==null){
this.$message.error('请选择是否属于直达物资!')
return
}else {
if(formData.ifDirect==1){
if (formData.ifInspection==null){
this.$message.error('请选择是否需要送检!')
return
}
}
}
}
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id
@ -805,22 +763,12 @@
// }
// })
let res = val[0]
if (res.materialType!=6){
if (res.planType==1){
this.isIfDirect=true
//isIfInspection
}else {
this.isIfDirect=false
}
}else {
this.isIfDirect=false
}
let param = {}
param.planType = res.planType
console.log("res+++++++++++++")
console.log(res)
param.ifDirect=res.ifDirect
param.ifInspection=res.ifInspection
this.data = param
let fieldval = pick(this.data, 'planType')
let fieldval = pick(this.data, 'planType','ifDirect','ifInspection')
this.$nextTick(() => {
this.form.setFieldsValue(fieldval)
})
@ -886,7 +834,6 @@
},
popupCallback(company, row, puwwcid) {
let res = JSON.parse(row)
console.log(res, '-----------------')
let param = {}
param.createBy = res.username
param.company = company

3
src/views/activiti/form/ProcessUdgetPlan.vue

@ -4,7 +4,7 @@
<a-tabs style="text-align: center">
<a-tab-pane tab="流程正文" key="1" forceRender>
<process-udget-plan-form :isNew="isNew" :processData="processData" :disabled="disabled" @afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask" @backTask="backTask" :hieg="hieg" @loadData="loadData" :isPlanType="isPlanType"
:isSourceCapital="isSourceCapital"/>
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName"/>
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>
@ -54,6 +54,7 @@
isPlanType: {type: Boolean, default: false, required: false},
/*资金来源*/
isSourceCapital:{type: Boolean, default: false, required: false},
routePlanName:{type:String,default:'',required: false},
processData:{
type:Object,
default:()=>{return {}},

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

@ -76,7 +76,20 @@
placeholder="请选择资金来源"/>
</a-form-item>
</a-col>
<a-col :span="8" v-show="isIfDirect">
<a-form-item label="是否属于直达物资" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-decorator="['ifDirect',validatorRules.ifDirect]"
:trigger-change="true" dictCode="if_status"
placeholder="请选择是否属于直达物资" @change="selectChang"/>
</a-form-item>
</a-col>
<a-col :span="8" v-show="isIfInspection">
<a-form-item label="是否需要送检" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-decorator="['ifInspection',validatorRules.ifInspection]"
:trigger-change="true" dictCode="if_status"
placeholder="请选择是否需要送检"/>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item label="文件" :labelCol="labelCol" :wrapperCol="wrapperCol">
@ -115,6 +128,15 @@
</a-tooltip>
<!-- <a-button @click="chaKan(props)">查看</a-button>-->
</template>
<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>
</template>
<a-button @mouseenter="seeHistoryPrice(props)">记录</a-button>
</a-tooltip>
<!-- <a-button @click="chaKan(props)">查看</a-button>-->
</template>
</p-editable-table>
</a-tab-pane>
@ -234,6 +256,7 @@
// editingKey: '',
isabled: true,
isGetOneAndLast: false,
isIfDirect:false,
bigId: [],
opinion: '',
bigIdRake: [],
@ -242,20 +265,23 @@
bigIdRakeList: [],
materialPrice: 0,
materialAmount: 0,
getMaterialAmount: 0,
describes: '',
hiegs: true,
historyBigId: [],
historyPrices:[],
historyPrice:{
},
isHistoryBigId: false,
isIfInspection:false,
bigIdMerchandiseNews: [],
bigIdMerchandiseNewsList: [],
labelCol: {
xs: { span: 24 },
sm: { span: 6 }
sm: { span: 8 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 18 }
sm: { span: 16 }
},
labelCol2: {
xs: { span: 24 },
@ -423,6 +449,17 @@
slotName: 'action'
// scopedSlots: {customRender: 'fileSlot'}
},
{
title: '历史记录',
key: 'actionPrice',
type: FormTypes.slot,
disabled: this.disabled,
width: '80px',
// placeholder: '${title}',
// defaultValue: '',
slotName: 'actionPrice'
// scopedSlots: {customRender: 'fileSlot'}
},
{
title: '数量',
key: 'materialQuantity',
@ -500,6 +537,7 @@
descriptionRake: '/description/processDescription/descriptionName',
merchandiseNewsList: '/merchandisenews/processMerchandiseNews/merchandiseNewsList',
historyUrl: '/suppliesstronger/processSuppliesStronger/list',
priceQuantityHistory:'/hy/priceQuantityHistory/list',
getFirstNode: '/actProcessIns/getFirstNode',
processUdgetPlanMaterial: {
list: '/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId'
@ -544,6 +582,7 @@
isPlanType: { type: Boolean, default: false, required: false },
/*资金来源*/
isSourceCapital: { type: Boolean, default: false, required: false },
routePlanName:{type:String,default:'',required: false},
//data
formData: {
type: Object,
@ -609,6 +648,7 @@
let userInfo = sessionStorage.getItem('USER_INFORMATION')
// userInfo.company=company;
if (!this.isNew) {
console.log(this.routePlanName,"---------------------->")
this.init()
// this.isSourceCapital=true;
// this.isPlanType=true;
@ -749,7 +789,28 @@
}
},
async seeHistoryPrice(log){
this.historyPrices=[];
console.log(log)
let param={
relationId:log.rowId,
pageSize: 5
}
getAction(this.url.priceQuantityHistory, param).then((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);
this.historyPrices.push(item)
}
})
}
})
},
//
async chaKan(log) {
// console.log("00000000",log);
@ -1083,6 +1144,13 @@
this.isBu = undefined
},
selectChang(val){
if (val==1){
this.isIfInspection=true;
}else {
this.isIfInspection=false;
}
},
/*回显数据*/
init() {
this.btndisabled = true
@ -1104,6 +1172,26 @@
// this.fetchDataRake();
this.descriptionFetchDatas()
}
if (this.isPlanType && this.routePlanName=='采购员'){
if (res.result.materialType == 1) {
this.isTargetLibrary = true
}
if (res.result.materialType!=6){
if (res.result.planType==1){
this.isIfDirect=true
//isIfInspection
if (res.result.ifDirect==1){
this.isIfInspection=true
}
}else {
this.isIfDirect=false
}
}else {
this.isIfDirect=false
}
}
this.editAfter()
this.btndisabled = false
} else {
@ -1196,6 +1284,20 @@
formData.title = this.processData.title
formData.processInstanceId = this.processData.id
}
if(formData.planType==1 && formData.materialType !=6){
console.log('格式化后的数据', formData)
if (formData.ifDirect==null){
this.$message.error('请选择是否属于直达物资!')
return
}else {
if(formData.ifDirect==1){
if (formData.ifInspection==null){
this.$message.error('请选择是否需要送检!')
return
}
}
}
}
console.log(formData, '表单数据')
if (this.btndisabled === false) {
this.btndisabled = true
@ -1236,7 +1338,7 @@
}
console.log(this.data, '数据回显')
let fieldval = pick(this.data, 'id', 'planType', 'company', 'createTime', 'departId', 'createBy', 'materialType', 'processPlan', 'needTime', 'sort', 'orderNumber', 'fileId', 'opinion', 'sourceCapital')
let fieldval = pick(this.data, 'id', 'planType', 'company', 'createTime', 'departId', 'createBy', 'materialType', 'processPlan', 'needTime', 'sort', 'orderNumber', 'fileId', 'opinion', 'sourceCapital','ifDirect','ifInspection')
this.$nextTick(() => {
this.assigneesText = this.data.materialType
this.form.setFieldsValue(fieldval)
@ -1407,6 +1509,20 @@
url = this.url.edit
method = 'put'
}
if(formData.planType==1 && formData.materialType !=6){
console.log('格式化后的数据', formData)
if (formData.ifDirect==null){
this.$message.error('请选择是否属于直达物资!')
return
}else {
if(formData.ifDirect==1){
if (formData.ifInspection==null){
this.$message.error('请选择是否需要送检!')
return
}
}
}
}
console.log(formData, '格式化的数据')
if (this.btndisabled === false) {
this.btndisabled = true

5
src/views/activiti/todoManage.vue

@ -153,6 +153,7 @@
:processData="lcModa.processData" :isNew="lcModa.isNew" :isPlanType="lcModa.isPlanType"
:isSourceCapital="lcModa.isSourceCapital"
:task="true" :hieg="lcModa.hieg"
:routePlanName="lcModa.routePlanName"
@afterSubmit="afterSub"
@passTask="()=>passTask(lcModa.processData)"
@backTask="()=>backTask(lcModa.processData)" :procInstId="lcModa.procInstId"
@ -292,7 +293,8 @@
isNew: false,
hieg: true,
isSourceCapital: false,
isPlanType: false
isPlanType: false,
routePlanName:''
},
tableName: '',
tableId: '',
@ -516,6 +518,7 @@
this.lcModa.isSourceCapital = true
this.lcModa.disabled = false
this.lcModa.hieg = false
this.lcModa.routePlanName=res3.result.name
}
}
}

Loading…
Cancel
Save