You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-vue/src/views/purchase/purOrder/purOrderDetailDialog.vue

547 lines
17 KiB
Vue

2 years ago
<template>
<div>
2 years ago
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end" v-if="editType == 1">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading" :disabled="showSup">开始配货
</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">作废</el-button>
</el-button-group>
</el-row>
<el-card style="margin-top: -5px;">
<el-row>
<el-col :span="11">
<el-form-item label="单据号:" prop="billNo">
<el-input v-model="formData.billNo" style="width: 90%" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="单据日期:" prop="billdate">
<el-date-picker
v-model="formData.billDate"
type="datetime"
placeholder="选择日期" :disabled="true"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="紧急程度:" prop="emergency">
<el-select v-model="formData.emergency" :disabled="true" placeholder="请选择紧急程度" style="width: 90%" clearable>
<el-option label="正常" value=1></el-option>
<el-option label="较急" value=2></el-option>
<el-option label="特急" value=3></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="到货截止:" prop="arrivalTime">
<el-date-picker
:disabled="true"
v-model="formData.arrivalTime"
type="datetime"
placeholder="选择日期"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="收货仓库:" prop="locStorageCode">
<el-select v-model="formData.invName" placeholder="收货仓库信息" style="width: 90%"
:disabled="true" clearable
>
<el-option
v-for="item in subInvList"
:key="item.name"
:label="item.name"
:value="item.code"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
2 years ago
<el-col :span="11">
<el-form-item label="处理状态:" prop="dealStatus">
<el-select v-model="formData.dealStatus" style="width: 90%" disabled>
<el-option label="未处理" :value="0"></el-option>
<el-option label="已处理" :value="1"></el-option>
<el-option label="已作废" :value="2"></el-option>
</el-select>
</el-form-item>
</el-col>
2 years ago
<!-- <el-col :span="11">-->
<!-- <el-form-item label="审核说明:" prop="billNo">-->
<!-- <el-input v-model="formData.auditRemark" style="width: 90%" auto-complete="off" type="textarea" autosize></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
2 years ago
<el-row>
<el-col :span="24">
<el-form-item label="订单说明:" prop="billNo">
<el-input v-model="formData.remark" style="width: 87%" :disabled="true" auto-complete="off"
type="textarea" autosize
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item>
<el-checkbox v-model="formData.autoPurchase"></el-checkbox>
</el-form-item>
</el-col>
<el-col :span="11" v-show="formData.autoPurchase">
<el-form-item label="入库单据类型:" class="query-form-item" prop="targetBillAction">
<el-select v-model="formData.targetBillAction" placeholder="请选择单据类型" style="width: 90%">
<el-option
v-for="item in busTypes"
:key="item.name"
:label="item.name"
:value="item.action"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
2 years ago
</el-row>
</el-card>
2 years ago
<el-card>
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
highlight-current-row max-height="300" height="300" ref="multipleTable"
>
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column label="价格" prop="price" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column width="150" label="采购数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"
placeholder="请输入数量" style="width: 80%"
type='number'
@change="tableCountChange(scope.row)"
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
</el-table>
</el-card>
</el-form>
<el-dialog
title="物资录入"
:visible.sync="selectProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="80%"
v-if="selectProductVisible"
:append-to-body="true"
>
<purPlanProducts
:closeDialog="closeDialogC2"
:data="thisData"
:purType="1"
></purPlanProducts>
</el-dialog>
</div>
2 years ago
</template>
<script>
import draggable from 'vuedraggable'
import purPlanProducts from '@/views/purchase/purPlan/purOrderSelectProduct'
import {auditOrder, dealOrder, delOrderDetail, listOrderDetail} from '@/api/purchase/purOrder'
import {filterAllByUser, selectByCode} from '@/api/system/invWarehouse'
import {filterSubByInv} from '@/api/system/invSubWarehouse'
import {getLocalJoinByUser} from '@/api/basic/busType'
2 years ago
export default {
name: 'idQuery',
props: {
closeDialog: {
type: Function,
required: true
},
idQuery: {
type: Object,
required: true
},
editType: {
type: Object,
required: true
}
},
data() {
return {
autoPurchase: true,
code: '',
query: {
orderIdFk: '',
page: 1,
limit: 10
},
formData: {
id: null,
billNo: null,
billDate: '',
remark: '',
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
auditRemark: null,
autoPurchase: true,
targetInv: 1000,
targetSubInv: null,
emergency: null,
targetBillAction: null
},
formRules: {},
codeArray: [],
total: 0,
loading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
1: '草稿',
2: '未审核',
3: '已审核'
},
typeMap: {
1: '预入库',
2: '普通采购'
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: '',
selectProductVisible: false,
thisData: {},
subInvList: [],
tarSubList: [],
invQueryData: {},
showSup: false
2 years ago
}
},
components: {
draggable,
purPlanProducts
},
methods: {
dealOrder(status) {
this.formData.dealStatus = status
let tQuery = {
purOrderEntity: this.formData,
subErpOrders: this.codeArray,
autoPurchase: this.formData.autoPurchase,
targetBillAction: this.formData.targetBillAction,
}
dealOrder(tQuery)
.then(response => {
this.loading = false
if (response.code === 20000) {
this.$message.success('处理成功')
this.closeDialog(true)
} else {
this.$message.error(response.message)
}
})
.catch(() => {
this.loading = false
})
},
saveOrder(status) {
let tip = ''
if (status == '1') {
if (this.formData.dealStatus == 1) {
tip = '该单据已配货,是否继续配货?'
} else {
tip = '是否确定开始配货?'
}
} else {
tip = '是否确定作废采购订单?'
}
this.$confirm(tip, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.dealOrder(status)
}).catch(() => {
this.loading = false
})
2 years ago
},
submitFunction(status) {
let tMessage = status === '1' ? '保存' : '提交'
this.loading = true
let tQuery = {
autoPurchase: this.formData.autoPurchase,
targetSubInv: this.formData.targetSubInv,
targetDeptCode: this.formData.targetDeptCode,
targetBillAction: this.formData.targetBillAction,
editStatus: status,
purOrderEntity: this.formData,
subErpOrders: this.codeArray
}
auditOrder(tQuery)
.then(response => {
this.loading = false
if (response.code === 20000) {
this.$message.success(tMessage + '成功')
this.closeDialog(true)
} else {
this.$message.error(response.message)
}
})
.catch(() => {
this.loading = false
})
},
selectProductFunction() {
this.selectProductVisible = true
2 years ago
},
closeDialogC2(rData) {
this.selectProductVisible = false
this.thisData = {}
if (this.$isNotBlank(rData)) {
this.codeArray = []
rData.forEach((obj, index) => {
this.codeArray.unshift(obj)
})
this.$refs.multipleTable.setCurrentRow(this.codeArray[0])
this.currentRow = this.codeArray[0]
this.selectedIndex = 0
}
},
rowChange(val) {
this.currentRow = val
this.selectedIndex = val.index
},
tableCountChange(row) {
if (this.$isNotBlank(row)) {
// row.count = row.reCount;
}
},
tableRowClassName({row, rowIndex}) {
row.index = rowIndex
},
// 刷新表单
resetForm() {
if (this.$refs['dataForm']) {
// 清空验证信息表单
this.$refs['dataForm'].clearValidate()
2 years ago
// 刷新表单
this.$refs['dataForm'].resetFields()
this.getList()
}
},
deleteCodeArray(index, row) {
this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$refs.multipleTable.setCurrentRow()
this.currentRow = {}
this.selectedIndex = ''
2 years ago
if (this.orderEditor) {
this.detailLoading = true
if (this.$isNotBlank(row.id)) {
delOrderDetail(row.id)
.then(response => {
this.detailLoading = false
if (response.code === 20000) {
this.$message.success(response.data)
// this.getStockOrderDetailList();
this.codeArray.splice(index, 1)
2 years ago
} else {
this.$message.error(response.message)
2 years ago
}
})
.catch(() => {
this.detailLoading = false
})
} else {
this.$message.success('删除成功')
this.codeArray.splice(index, 1)
}
} else {
this.$message.success('删除成功')
this.codeArray.splice(index, 1)
}
}).catch(() => {
2 years ago
})
},
getStockOrderDetailList() {
this.loading = true
listOrderDetail(this.query) //查找该单号下的所有条码
.then((response) => {
console.log(response)
this.codeArray = response.data.list || []
this.total = response.data.total || 0
this.loading = false
})
.catch(() => {
this.loading = false
this.list = []
this.total = 0
})
},
findSubInvs() {
this.subInvList = []
let query = {
pcode: this.formData.locStorageCode
}
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || []
if (this.subInvList != null && this.subInvList.length == 1) {
this.formData.invWarehouseCode = this.subInvList[0].code
2 years ago
}
})
.catch(() => {
})
},
2 years ago
findTargetSubInvs() {
if (this.formData.targetSubInv != null && this.tarSubList.length > 0) {
this.formData.targetDeptCode = this.subInvList.find(item => item.code == this.formData.targetSubInv).parentId
}
this.tarSubList = []
let query = {
pcode: 1000
}
filterSubByInv(query)
.then((response) => {
this.tarSubList = response.data || []
if (this.tarSubList != null && this.tarSubList.length == 1) {
this.formData.targetSubInv = this.tarSubList[0].code
this.formData.targetDeptCode = this.tarSubList[0].parentId
2 years ago
this.targetInvChange()
}
})
.catch(() => {
})
2 years ago
},
targetInvChange() {
let query = {
enable: true,
spUse: true,
invCode: this.formData.invCode
}
getLocalJoinByUser(query)
.then((response) => {
this.busTypes = response.data.list || []
})
.catch(() => {
})
let query1 = {
code: this.formData.targetSubInv
}
selectByCode(query1)
.then((res) => {
if (res.code === 20000) {
this.formData.targetDeptCode = res.data
}
})
}
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault()
event.stopPropagation()
}
},
created() {
let supId = this.$store.getters.customerId
if (supId == '110') {
this.showSup = true
}
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 100
this.query.orderIdFk = this.idQuery.id
this.formData = this.idQuery.formData
this.formData.targetInv = 1000
this.orderEditor = true
this.sValue = this.formData.corpName
// this.formData.autoPurchase = true
this.$set(this.formData, 'autoPurchase', true)
this.getStockOrderDetailList()
} else {
this.formData = {
id: null,
billNo: null,
billDate: '',
remark: '',
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
auditRemark: null,
autoPurchase: true,
targetInv: 1000,
targetSubInv: null,
targetBillAction: null
}
this.orderEditor = false
}
this.findTargetSubInvs()
this.targetInvChange()
this.codeArray = []
}
}
2 years ago
</script>
<style>
.ao-text {
width: 100%;
font-size: 13px;
font-family: "Microsoft YaHei";
float: right;
text-align: right;
margin-top: 10px;
2 years ago
}
</style>