2024-09-11 18:49:43 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<!-- 搜索 -->
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="90px">
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-form-item :label="soByType ? '采购时间' : !isBack ? '领料时间' : '退料时间'" prop="searchTimeArray">
|
2024-09-11 18:49:43 +08:00
|
|
|
<el-date-picker
|
2024-09-18 14:59:38 +08:00
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
2024-09-11 18:49:43 +08:00
|
|
|
v-model="queryParams.searchTimeArray"
|
|
|
|
type="daterange"
|
|
|
|
range-separator="至"
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
end-placeholder="结束日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="soByType && !goodsYes" label="供应商" prop="supplierId">
|
2024-09-19 15:25:40 +08:00
|
|
|
<SupplierChoose v-model="queryParams.supplier"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-form-item>
|
2024-09-22 21:38:20 +08:00
|
|
|
<el-form-item v-if="goodsYes" label="关键字" prop="query">
|
|
|
|
<el-input v-model="queryParams.query" style="width: 18rem" placeholder="请输入单号、商品名称或编码"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-form-item>
|
2024-09-22 21:38:20 +08:00
|
|
|
<el-form-item v-else label="单据号" prop="query">
|
|
|
|
<el-input v-model="queryParams.query" style="width: 18rem" placeholder="请输入单号、备注"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="soByType" label="状态" prop="soStatus">
|
2024-09-13 18:31:13 +08:00
|
|
|
<el-select v-model="queryParams.soStatus" clearable>
|
|
|
|
<el-option v-for="item in getStatus"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
2024-09-14 18:27:01 +08:00
|
|
|
:value="item.value"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-form-item v-if="!soByType" :label="!isBack ? '领料人' : '退料人'" prop="userId">
|
2024-09-19 15:25:40 +08:00
|
|
|
<StaffChoose v-model="queryParams.user" @selected="getStaff"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-form-item>
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-form-item v-if="!isBack" :label="soByType ? '采购门店' : '领料门店'" prop="corpId">
|
2024-09-19 15:25:40 +08:00
|
|
|
<CorpChoose v-model="queryParams.corp" @selected="getCompany"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<!-- 操作 -->
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2024-09-22 21:38:20 +08:00
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
<!-- <el-button type="primary" plain icon="el-icon-download" size="mini"-->
|
|
|
|
<!-- >导出-->
|
|
|
|
<!-- </el-button>-->
|
|
|
|
<!-- </el-col>-->
|
2024-09-11 18:49:43 +08:00
|
|
|
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
<!-- 急件 -->
|
2024-09-22 21:38:20 +08:00
|
|
|
<!-- <el-table v-if="goodsYes" v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">-->
|
|
|
|
<!-- <el-table-column label="序号" align="center">-->
|
|
|
|
<!-- <template scope="scope">-->
|
|
|
|
<!-- <span>{{ scope.$index + 1 }}</span>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
<!-- <el-table-column label="单号" align="center" prop="soId" width="200"/>-->
|
|
|
|
<!-- <el-table-column label="商品名称" align="center" width="180" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="规格" align="center" width="180" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="商品编码" align="center" width="180" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="所属分类" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="数量" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="单位" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="成本" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="供应商" align="center" width="180" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="仓库" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="状态" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="时间" align="center" width="150" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="门店" align="center" width="180" prop="name"/>-->
|
|
|
|
<!-- <el-table-column label="操作" align="center" width="180" fixed="right">-->
|
|
|
|
<!-- <template v-slot="scope">-->
|
|
|
|
<!-- <el-button size="mini" type="text" icon="el-icon-edit"-->
|
|
|
|
<!-- >审核-->
|
|
|
|
<!-- </el-button>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
<!-- </el-table>-->
|
2024-09-11 18:49:43 +08:00
|
|
|
|
|
|
|
<!-- 采购/领料 -->
|
2024-09-22 21:38:20 +08:00
|
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
2024-09-11 18:49:43 +08:00
|
|
|
<el-table-column label="序号" align="center">
|
|
|
|
<template scope="scope">
|
|
|
|
<span>{{ scope.$index + 1 }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-09-18 14:59:38 +08:00
|
|
|
<el-table-column label="单号" align="center" prop="soNo" width="200"/>
|
2024-09-14 18:27:01 +08:00
|
|
|
<el-table-column label="数量" align="center" prop="itemCount" width="150"/>
|
|
|
|
<el-table-column label="金额" align="center" prop="totalPrice" width="150"/>
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-table-column :label="soByType ? '采购员' : !isBack ? '领料人' : '退料人'" align="center" prop="userName" width="150"/>
|
2024-09-18 14:59:38 +08:00
|
|
|
<el-table-column v-if="soByType" label="供应商" align="center" prop="supplierName" width="200"/>
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-table-column :label="soByType ? '入库时间' : !isBack ? '领料时间' : '退料时间'" align="center" prop="soTime" width="150"/>
|
2024-09-18 14:59:38 +08:00
|
|
|
<el-table-column label="登记时间" align="center" prop="createTime" width="150">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-10-21 21:37:07 +08:00
|
|
|
<el-table-column v-if="!isBack" label="门店" align="center" prop="corpName" width="180"/>
|
2024-09-18 14:59:38 +08:00
|
|
|
<el-table-column v-if="soByType" label="状态" align="center" prop="soStatus" width="150">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :type="DICT_TYPE.REPAIR_SO_STATUS" :value="scope.row.soStatus"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-09-14 18:27:01 +08:00
|
|
|
<el-table-column label="备注" align="center" prop="remark" width="180"/>
|
2024-09-11 18:49:43 +08:00
|
|
|
<el-table-column label="操作" fixed="right" width="180" align="center">
|
|
|
|
<template v-slot="scope">
|
2024-09-22 21:38:20 +08:00
|
|
|
<el-button size="mini" type="text" icon="el-icon-view" @click="handleShow(scope.row)"
|
|
|
|
>查看
|
|
|
|
</el-button>
|
|
|
|
<!-- <el-button size="mini" type="text" icon="el-icon-edit-outline"-->
|
|
|
|
<!-- >修改-->
|
|
|
|
<!-- </el-button>-->
|
2024-09-18 14:59:38 +08:00
|
|
|
<el-button size="mini" type="text" icon="el-icon-close" @click="handleVoidSo(scope.row)"
|
2024-09-11 18:49:43 +08:00
|
|
|
>作废
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
2024-09-25 15:53:59 +08:00
|
|
|
<pagination @pagination="pageSo" style="margin-bottom: 3rem" v-show="total > 0" :total="total" :page.sync="queryParams.pageNo"
|
2024-09-18 14:59:38 +08:00
|
|
|
:limit.sync="queryParams.pageSize"
|
2024-09-11 18:49:43 +08:00
|
|
|
/>
|
2024-09-22 21:38:20 +08:00
|
|
|
|
2024-10-21 21:37:07 +08:00
|
|
|
<SoShow :so-by-type="soByType" :is-back="isBack" ref="soShow" />
|
2024-09-11 18:49:43 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
2024-09-12 18:29:04 +08:00
|
|
|
import SupplierChoose from "@/views/repair/Components/SupplierChoose.vue";
|
2024-09-11 18:49:43 +08:00
|
|
|
import CorpChoose from "@/views/repair/Components/CorpChoose.vue";
|
|
|
|
import StaffChoose from "@/views/repair/Components/StaffChoose.vue";
|
2024-09-13 18:31:13 +08:00
|
|
|
import {DICT_TYPE} from "@/utils/dict";
|
2024-09-22 21:38:20 +08:00
|
|
|
import {getRepairSoPage, voidSo, getRepairSoById} from "@/api/repair/stockOperate/stockOperate";
|
|
|
|
import SoShow from "@/views/repair/stockOperate/Components/SoSow.vue";
|
2024-09-11 18:49:43 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "SoIndex",
|
2024-09-13 18:31:13 +08:00
|
|
|
computed: {
|
2024-09-14 18:27:01 +08:00
|
|
|
getStatus() {
|
2024-09-13 18:31:13 +08:00
|
|
|
const data = this.getDictDatas(DICT_TYPE.REPAIR_SO_STATUS)
|
|
|
|
return data.filter(item => item.label.toString().indexOf("领料") === -1)
|
|
|
|
}
|
|
|
|
},
|
2024-09-14 18:27:01 +08:00
|
|
|
components: {
|
2024-09-22 21:38:20 +08:00
|
|
|
SoShow,
|
2024-09-11 18:49:43 +08:00
|
|
|
StaffChoose,
|
|
|
|
SupplierChoose,
|
|
|
|
CorpChoose
|
|
|
|
},
|
2024-09-14 18:27:01 +08:00
|
|
|
props: {
|
2024-09-11 18:49:43 +08:00
|
|
|
soByType: {
|
|
|
|
type: Boolean,
|
|
|
|
defaultValue: true,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
goodsYes: {
|
|
|
|
type: Boolean,
|
|
|
|
defaultValue: false,
|
|
|
|
required: false
|
2024-10-21 21:37:07 +08:00
|
|
|
},
|
|
|
|
isBack:{
|
|
|
|
type: Boolean
|
2024-09-11 18:49:43 +08:00
|
|
|
}
|
|
|
|
},
|
2024-09-19 15:25:40 +08:00
|
|
|
watch: {
|
|
|
|
'queryParams.supplier'(val) {
|
|
|
|
this.queryParams.supplierId = val ? val.id : null
|
|
|
|
},
|
|
|
|
'queryParams.corp'(val) {
|
|
|
|
this.queryParams.corpId = val ? val.id : null
|
|
|
|
},
|
|
|
|
'queryParams.user'(val) {
|
|
|
|
this.queryParams.userId = val ? val.id : null
|
|
|
|
}
|
|
|
|
},
|
2024-09-11 18:49:43 +08:00
|
|
|
data() {
|
|
|
|
return {
|
2024-09-14 18:27:01 +08:00
|
|
|
queryParams: {
|
2024-09-11 18:49:43 +08:00
|
|
|
pageNo: 1,
|
|
|
|
pageSize: 10,
|
2024-09-14 18:27:01 +08:00
|
|
|
searchTimeArray: [],
|
2024-09-11 18:49:43 +08:00
|
|
|
soNo: null,
|
2024-09-19 15:25:40 +08:00
|
|
|
supplier: null,
|
2024-09-11 18:49:43 +08:00
|
|
|
supplierId: null,
|
|
|
|
supplierName: null,
|
|
|
|
soStatus: null,
|
2024-09-19 15:25:40 +08:00
|
|
|
corp: null,
|
2024-09-11 18:49:43 +08:00
|
|
|
corpId: null,
|
2024-09-19 15:25:40 +08:00
|
|
|
user: null,
|
2024-09-11 18:49:43 +08:00
|
|
|
userId: null,
|
2024-09-14 18:27:01 +08:00
|
|
|
userName: null,
|
2024-09-18 14:59:38 +08:00
|
|
|
soType: this.soByType ? "01" : "02",
|
|
|
|
purchaseType: this.goodsYes ? "02" : "01",
|
|
|
|
goodsType: this.goodsYes ? "1" : "0"
|
|
|
|
},
|
|
|
|
formData: {
|
|
|
|
remark: null,
|
|
|
|
id: null,
|
|
|
|
soStatus: "06"
|
2024-09-11 18:49:43 +08:00
|
|
|
},
|
|
|
|
showSearch: true,
|
|
|
|
list: [],
|
|
|
|
loading: false,
|
|
|
|
total: 0
|
|
|
|
}
|
|
|
|
},
|
2024-09-14 18:27:01 +08:00
|
|
|
mounted() {
|
|
|
|
this.pageSo();
|
|
|
|
},
|
2024-09-11 18:49:43 +08:00
|
|
|
methods: {
|
2024-09-14 18:27:01 +08:00
|
|
|
// 分页
|
|
|
|
async pageSo() {
|
2024-10-21 21:37:07 +08:00
|
|
|
this.queryParams.soType = null
|
|
|
|
this.queryParams.purchaseType = null
|
2024-09-22 21:38:20 +08:00
|
|
|
if (this.soByType && this.goodsYes){
|
|
|
|
this.queryParams.soType = "03"
|
|
|
|
this.queryParams.purchaseType = "02"
|
|
|
|
}
|
2024-10-21 21:37:07 +08:00
|
|
|
else if (this.soByType && !this.goodsYes){
|
2024-09-22 21:38:20 +08:00
|
|
|
this.queryParams.soType = "01"
|
2024-10-21 21:37:07 +08:00
|
|
|
this.queryParams.purchaseType = "01"
|
2024-09-22 21:38:20 +08:00
|
|
|
}
|
2024-10-21 21:37:07 +08:00
|
|
|
else if (!this.soByType && !this.isBack){
|
2024-09-22 21:38:20 +08:00
|
|
|
this.queryParams.soType = "02"
|
|
|
|
}
|
2024-10-21 21:37:07 +08:00
|
|
|
else if (this.isBack){
|
|
|
|
this.queryParams.soType = '04'
|
|
|
|
}
|
2024-09-22 21:38:20 +08:00
|
|
|
try {
|
|
|
|
this.loading = true
|
|
|
|
const res = await getRepairSoPage(this.queryParams)
|
|
|
|
this.list = res.data.records
|
|
|
|
this.total = res.data.total
|
|
|
|
}finally {
|
|
|
|
this.loading = false
|
2024-09-14 18:27:01 +08:00
|
|
|
}
|
|
|
|
},
|
2024-09-11 18:49:43 +08:00
|
|
|
// 搜索按钮
|
2024-09-14 18:27:01 +08:00
|
|
|
handleQuery() {
|
2024-09-18 14:59:38 +08:00
|
|
|
this.queryParams.pageNo = 1
|
|
|
|
this.pageSo()
|
2024-09-14 18:27:01 +08:00
|
|
|
},
|
2024-09-11 18:49:43 +08:00
|
|
|
// 搜索重置
|
2024-09-14 18:27:01 +08:00
|
|
|
resetQuery() {
|
2024-09-11 18:49:43 +08:00
|
|
|
this.resetForm('queryForm')
|
2024-09-19 15:25:40 +08:00
|
|
|
this.queryParams.supplier = null
|
|
|
|
this.queryParams.corp = null
|
|
|
|
this.queryParams.user = null
|
2024-09-11 18:49:43 +08:00
|
|
|
this.handleQuery()
|
|
|
|
},
|
|
|
|
// 员工选择组件的回调
|
2024-09-14 18:27:01 +08:00
|
|
|
getStaff(data) {
|
2024-09-11 18:49:43 +08:00
|
|
|
this.queryParams.userId = data.id
|
|
|
|
this.queryParams.userName = data.name
|
2024-09-13 18:31:13 +08:00
|
|
|
},
|
|
|
|
// 门店选择
|
2024-09-14 18:27:01 +08:00
|
|
|
getCompany(data) {
|
2024-09-13 18:31:13 +08:00
|
|
|
console.log(data)
|
2024-09-18 14:59:38 +08:00
|
|
|
},
|
|
|
|
// 作废
|
|
|
|
handleVoidSo(row) {
|
|
|
|
this.$prompt('作废备注', '提示', {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
}).then(({value}) => {
|
|
|
|
this.formData.id = row.id
|
|
|
|
this.formData.remark = value
|
|
|
|
this.doVoidSo()
|
|
|
|
}).catch(() => {
|
|
|
|
})
|
|
|
|
},
|
|
|
|
async doVoidSo() {
|
|
|
|
try {
|
|
|
|
await voidSo(this.formData)
|
|
|
|
this.$modal.msgSuccess("作废成功")
|
|
|
|
await this.pageSo()
|
2024-09-19 15:25:40 +08:00
|
|
|
} catch {
|
|
|
|
}
|
2024-09-20 21:21:39 +08:00
|
|
|
},
|
2024-09-22 21:38:20 +08:00
|
|
|
// 查看单据
|
|
|
|
async handleShow(row){
|
|
|
|
const res = await getRepairSoById(row.id)
|
|
|
|
await this.$refs.soShow.open(res.data)
|
|
|
|
}
|
2024-09-11 18:49:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
|
|
</style>
|