代码合并 宁夏

This commit is contained in:
BianLzhaoMin 2024-05-06 09:49:54 +08:00
parent 688599a5b0
commit 86935fa01f
1 changed files with 518 additions and 658 deletions

View File

@ -1,258 +1,157 @@
<template>
<div class="app-container" id="newDevicesArrival">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
label-width="100px"
>
<el-row :gutter="24" class="mb8">
<!-- <el-col :span="4" style="text-align:center;"><h4>新购任务信息:</h4></el-col> -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
<el-col :span="6">
<el-form-item label="机具类型" prop="equipmentId">
<treeselect
v-model="queryParams.equipmentId"
default-expand-all
:options="equipmentTypeList"
placeholder="请选择机具类型"
@select="select"
:disable-branch-nodes="true"
style="width: 240px"
noChildrenText="没有数据了"
noOptionsText="没有数据"
noResultsText="没有搜索结果"
/>
<treeselect v-model="queryParams.equipmentId" default-expand-all :options="equipmentTypeList"
placeholder="请选择机具类型" @select="select" :disable-branch-nodes="true" style="width: 240px;"
noChildrenText="没有数据了" noOptionsText="没有数据" noResultsText="没有搜索结果" />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="出厂日期">
<el-date-picker
v-model="queryParams.productionTime"
style="width: 240px"
value-format="yyyy-MM-dd"
type="date"
placeholder="出厂日期"
@change="changeTime"
></el-date-picker>
<el-date-picker v-model="queryParams.productionTime" style="width: 240px" value-format="yyyy-MM-dd"
type="date" placeholder="出厂日期" @change="changeTime"></el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="机具厂家" prop="supplierId">
<el-select
v-model="queryParams.supplierId"
placeholder="机具厂家"
clearable
filterable
style="width: 240px"
@change="changeSupplier"
>
<el-option
v-for="item in supplierList"
:key="item.supplierId"
:label="item.supplier"
:value="item.supplierId"
/>
<el-select v-model="queryParams.supplierId" placeholder="机具厂家" clearable filterable style="width: 240px"
@change="changeSupplier">
<el-option v-for="item in supplierList" :key="item.supplierId" :label="item.supplier"
:value="item.supplierId" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="9"></el-col>
</el-form>
<el-form
:model="maForm"
ref="maForm"
:rules="rules"
size="small"
:inline="true"
label-width="100px"
>
</el-row>
<el-form :model="maForm" ref="maForm" :rules="rules" size="small" :inline="true">
<el-row>
<el-form-item label="采购日期" prop="purchaseTime">
<el-date-picker
v-model="maForm.purchaseTime"
style="width: 240px"
value-format="yyyy-MM-dd"
type="date"
placeholder="请选择采购日期"
></el-date-picker>
<el-date-picker v-model="maForm.purchaseTime" style="width: 240px" value-format="yyyy-MM-dd" type="date"
placeholder="请选择采购日期"></el-date-picker>
</el-form-item>
<el-form-item label="到货日期" prop="arrivalTime">
<el-date-picker
v-model="maForm.arrivalTime"
style="width: 240px"
value-format="yyyy-MM-dd"
:picker-options="pickerOptions"
type="date"
placeholder="请选择到货日期"
></el-date-picker>
<el-date-picker v-model="maForm.arrivalTime" style="width: 240px" value-format="yyyy-MM-dd"
:picker-options="pickerOptions" type="date" placeholder="请选择到货日期"></el-date-picker>
</el-form-item>
<el-form-item label="采购员" prop="purchaser">
<el-select
v-model="maForm.purchaser"
filterable
placeholder="请选择采购员"
style="width: 240px"
>
<el-select v-model="maForm.purchaser" filterable placeholder="请选择采购员" style="width: 100%;">
<el-option label="请选择" :value="0"></el-option>
<el-option
v-for="item in userList"
:key="item.userId"
:label="item.userName"
:value="item.userId"
></el-option>
<el-option v-for="item in userList" :key="item.userId" :label="item.userName"
:value="item.userId"></el-option>
</el-select>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input
v-model="maForm.remark"
placeholder="请输入备注"
clearable
maxlength="150"
:rows="1"
type="textarea"
style="width: 240px"
/>
<el-input v-model="maForm.remark" placeholder="请输入备注" clearable maxlength="150" type="textarea"
style="width: 240px" />
</el-form-item>
</el-row>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="2">
<el-button
type="success"
plain
icon="el-icon-back"
size="mini"
@click="jumpList"
>新购验收管理</el-button
>
<el-button type="success" plain icon="el-icon-back" size="mini" @click="jumpList">新购验收管理</el-button>
</el-col>
<el-col :span="1.5" style="margin-left: 8px">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleSave"
>保存</el-button
>
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleSave">保存</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:role:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:role:export']"
>导出</el-button>
</el-col>-->
</el-row>
<el-table
v-loading="loading"
:data="equipmentList"
@selection-change="handleSelectionChange"
>
<el-table v-loading="loading" :data="equipmentList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" type="index" width="55" />
<el-table-column
label="机具类型"
prop="machineTypeName"
:show-overflow-tooltip="true"
width="200"
></el-table-column>
<el-table-column
label="规格型号"
prop="specificationType"
:show-overflow-tooltip="true"
width="200"
/>
<el-table-column label="机具类型" prop="machineTypeName" :show-overflow-tooltip="true" width="200"></el-table-column>
<el-table-column label="规格型号" prop="specificationType" :show-overflow-tooltip="true" width="200" />
<el-table-column label="单位" prop="unitName" width="100" />
<el-table-column
label="购置单价(元)"
prop="purchasePrice"
align="center"
width="150"
>
<el-table-column label="购置单价(元)" prop="purchasePrice" align="center" width="150">
<template slot-scope="scope">
<el-input-number
v-model="scope.row.purchasePrice"
controls-position="right"
style="width: 100%"
:min="0"
></el-input-number>
<el-input-number v-model="scope.row.purchasePrice" controls-position="right" style="width: 100%;"
:min="0"></el-input-number>
</template>
</el-table-column>
<el-table-column
label="采购数量"
prop="purchaseNum"
width="150"
type="number"
maxlength="10"
>
<el-table-column label="采购数量" prop="purchaseNum" width="150" type="number" maxlength="10">
<template slot-scope="scope">
<el-input-number
v-model="scope.row.purchaseNum"
controls-position="right"
style="width: 100%"
:min="1"
></el-input-number>
<el-input-number v-model="scope.row.purchaseNum" controls-position="right" style="width: 100%;"
:min="1"></el-input-number>
</template>
</el-table-column>
<el-table-column label="机具厂家" prop="supplierId" width="200">
<template slot-scope="scope">
<el-select
v-model="scope.row.supplierId"
placeholder="机具厂家"
filterable
clearable
style="width: 180px"
>
<el-option
v-for="item in supplierList"
:key="item.supplierId"
:label="item.supplier"
:value="item.supplierId"
/>
<el-select v-model="scope.row.supplierId" placeholder="机具厂家" filterable clearable style="width: 180px">
<el-option v-for="item in supplierList" :key="item.supplierId" :label="item.supplier"
:value="item.supplierId" />
</el-select>
<!-- <el-input v-model="scope.row.supplierId"></el-input> -->
</template>
</el-table-column>
<el-table-column
label="出厂日期"
align="center"
prop="productionTime"
width="200"
>
<el-table-column label="出厂日期" align="center" prop="productionTime" width="200">
<template slot-scope="scope">
<el-date-picker
v-model="scope.row.productionTime"
style="width: 180px"
value-format="yyyy-MM-dd"
type="date"
range-separator="-"
placeholder="出厂日期"
></el-date-picker>
<el-date-picker v-model="scope.row.productionTime" style="width: 180px" value-format="yyyy-MM-dd" type="date"
range-separator="-" placeholder="出厂日期"></el-date-picker>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<el-table-column label="操作" align="center" width="150">
<template slot-scope="scope" v-if="scope.row.roleId !== 1">
<el-button
<!-- <el-button
size="mini"
type="danger"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button
>
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:role:edit']"
>修改</el-button>-->
<el-button size="mini" type="text" icon="el-icon-document" v-if="scope.row.manageType == 2"
@click="handleDetail(scope.row)">明细</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" style="color: red;"
@click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<holdingpole-dialog :dialog-class="'my-custom-dialog'" :initial-visible="showDialog"
:holdingpoleData="holdingpoleData" @close="onDialogClose"></holdingpole-dialog>
</div>
</template>
<script>
import {
addPurchaseCheckInfo,
getPurchaseCheckInfo,
updatePurchaseCheckInfo,
} from '@/api/store/newBuy'
import { addPurchaseCheckInfo, getPurchaseCheckInfo, updatePurchaseCheckInfo } from '@/api/store/newBuy'
import { getUserByRoleList } from '@/api/system/user'
import { equipmentTypeTree, supplierInfoList } from '@/api/store/tools'
import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
import HoldingpoleDialog from '@/components/HoldingpoleDialog/index.vue';
import { } from '@/api/store/newBuy'
export default {
name: 'NewDevicesArrival',
dicts: ['sys_normal_disable'],
components: { Treeselect },
components: { Treeselect, HoldingpoleDialog },
data() {
return {
taskId: '',
@ -287,6 +186,8 @@
menuNodeAll: false,
deptExpand: true,
deptNodeAll: false,
showDialog: false,
holdingpoleData: {},
//
dateRange: [],
//
@ -336,20 +237,8 @@
},
//
rules: {
purchaseTime: [
{
required: true,
message: '采购日期不能为空',
trigger: 'blur',
},
],
arrivalTime: [
{
required: true,
message: '到货日期不能为空',
trigger: 'blur',
},
],
purchaseTime: [{ required: true, message: '采购日期不能为空', trigger: 'blur' }],
arrivalTime: [{ required: true, message: '到货日期不能为空', trigger: 'blur' }],
// purchaser: [
// { required: true, message: "", trigger: "blur" }
// ]
@ -392,47 +281,31 @@
methods: {
/** 查询用户列表--采购员 */
getUserList() {
getUserByRoleList({ roleId: '104' }).then((response) => {
getUserByRoleList({ roleId: '104' }).then(response => {
this.userList = response.data
})
},
/** 机具厂家 */
supplierInfoList() {
supplierInfoList().then((response) => {
supplierInfoList().then(response => {
this.supplierList = response.rows
})
},
/** 机具类型 */
equipmentType() {
equipmentTypeTree().then((response) => {
equipmentTypeTree().then(response => {
this.equipmentTypeList = response.data
this.equipmentTypeList.forEach((item, index) => {
if (item.children && item.children.length > 0) {
item.children.forEach((item2, index2) => {
if (
item2.children &&
item2.children.length > 0
) {
item2.children.forEach((item3) => {
if (
item3.children &&
item3.children.length > 0
) {
item3.children.forEach((item4) => {
item4.machineTypeName =
item3.typeName
item4.specificationType =
item4.typeName
this.$set(
item4,
'purchasePrice',
0,
)
this.$set(
item4,
'purchaseNum',
1,
)
if (item2.children && item2.children.length > 0) {
item2.children.forEach(item3 => {
if (item3.children && item3.children.length > 0) {
item3.children.forEach(item4 => {
item4.machineTypeName = item3.typeName
item4.specificationType = item4.typeName
this.$set(item4, 'purchasePrice', 0)
this.$set(item4, 'purchaseNum', 1)
})
}
})
@ -462,14 +335,14 @@
},
//
changeSupplier(supplierId) {
this.equipmentList.forEach((item) => {
this.equipmentList.forEach(item => {
this.$set(item, 'supplierId', supplierId)
})
},
//
changeTime(time) {
console.log(time)
this.equipmentList.forEach((item) => {
this.equipmentList.forEach(item => {
this.$set(item, 'productionTime', time)
})
},
@ -477,10 +350,7 @@
//---
getTaskInfo() {
// this.loading = true;
getPurchaseCheckInfo({
taskId: this.taskId,
keyWord: this.queryParams.keyWord,
}).then((response) => {
getPurchaseCheckInfo({ taskId: this.taskId, keyWord: this.queryParams.keyWord }).then(response => {
// this.taskInfo = response.data
this.maForm.purchaseTime = response.data.purchaseTime
this.maForm.arrivalTime = response.data.arrivalTime
@ -536,7 +406,7 @@
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.roleId)
this.ids = selection.map(item => item.roleId)
this.single = selection.length != 1
this.multiple = !selection.length
},
@ -544,16 +414,13 @@
/** 新增按钮操作 */
handleSave() {
if (this.equipmentList.length > 0) {
this.$refs['maForm'].validate((valid) => {
this.$refs['maForm'].validate(valid => {
if (valid) {
// console.log(this.maForm,'maForm')
// console.log(this.equipmentList,'equipmentList')
let isEmpty = true
this.equipmentList.forEach((item) => {
if (
item.purchaseNum == '' ||
!item.purchaseNum
) {
this.equipmentList.forEach(item => {
if (item.purchaseNum == '' || !item.purchaseNum) {
isEmpty = false
}
})
@ -571,36 +438,20 @@
if (this.isEdit) {
console.log('编辑')
this.loading = true
updatePurchaseCheckInfo(
this.maForm,
).then((response) => {
updatePurchaseCheckInfo(this.maForm).then(response => {
if (response.code == 200) {
this.$modal.msgSuccess(
'编辑成功',
)
this.$tab.closeOpenPage(
{
path: '/store/newBuy/newDevicesList',
},
)
this.$modal.msgSuccess('编辑成功')
this.$tab.closeOpenPage({ path: '/store/newBuy/newDevicesList' })
}
this.loading = false
})
} else if (!this.isEdit) {
console.log('新增')
this.loading = true
addPurchaseCheckInfo(
this.maForm,
).then((response) => {
addPurchaseCheckInfo(this.maForm).then(response => {
if (response.code == 200) {
this.$modal.msgSuccess(
'新增成功',
)
this.$tab.closeOpenPage(
{
path: '/store/newBuy/newDevicesList',
},
)
this.$modal.msgSuccess('新增成功')
this.$tab.closeOpenPage({ path: '/store/newBuy/newDevicesList' })
}
this.loading = false
})
@ -608,9 +459,7 @@
})
.catch(() => { })
} else {
this.$modal.msgError(
'请先选择并添加机具类型!!!',
)
this.$modal.msgError('请先选择并添加机具类型!!!')
}
} else {
this.$modal.msgError('请填写采购数量!!!')
@ -631,6 +480,16 @@
// this.form = response.data;
// this.open = true;
},
/** 明细按钮操作 */
handleDetail(row) {
this.holdingpoleData = row
this.showDialog = true
},
onDialogClose() {
console.log('弹窗已关闭');
this.showDialog = false
//
},
/** 删除按钮操作 */
handleDelete(row) {
console.log(row.id)
@ -671,6 +530,7 @@
::v-deep input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
}
::v-deep input[type='number'] {
-moz-appearance: textfield !important;
}