Merge branch 'dev' of http://122.51.230.86:3000/dianliang/lanan-system-vue into dev
This commit is contained in:
commit
c459dff15b
@ -75,3 +75,11 @@ export function listByLeads(){
|
|||||||
method: 'get'
|
method: 'get'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 查当前登录用户是否维修班组长
|
||||||
|
export function getIfLeader(){
|
||||||
|
return request({
|
||||||
|
url: "/repair/worker/getIfLeader",
|
||||||
|
method: "get"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -27,3 +27,39 @@ export function removeTicketWares(id){
|
|||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 审核
|
||||||
|
export function auditTicketWares(data){
|
||||||
|
return request({
|
||||||
|
url: preUrl + '/audit',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 仓库通知领料
|
||||||
|
export function pass(data){
|
||||||
|
return request({
|
||||||
|
url: preUrl + '/pass',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 员工确认领料
|
||||||
|
export function repairPassTicketWares(data){
|
||||||
|
return request({
|
||||||
|
url: preUrl + "/repairPass",
|
||||||
|
method: "post",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 仓库确认退料
|
||||||
|
export function passBackTicketWares(data){
|
||||||
|
return request({
|
||||||
|
url: preUrl + '/passBack',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -42,3 +42,11 @@ export function assignRoleDataScope(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 用来判断角色
|
||||||
|
export function checkRole(code){
|
||||||
|
return request({
|
||||||
|
url: '/system/permission/checkRole?code=' + code,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -25,16 +25,26 @@
|
|||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="角色" prop="roleCode">
|
|
||||||
<el-select v-model="queryParams.roleCode" placeholder="请选择角色">
|
<!-- <el-form-item label="角色" prop="roleCode">-->
|
||||||
<el-option
|
<!-- <el-select v-model="queryParams.roleCode" placeholder="请选择角色">-->
|
||||||
v-for="dict in dict.type.jcz_role"
|
<!-- <el-option-->
|
||||||
:key="dict.value"
|
<!-- v-for="dict in dict.type.jcz_role"-->
|
||||||
:label="dict.label"
|
<!-- :key="dict.value"-->
|
||||||
:value="dict.value"
|
<!-- :label="dict.label"-->
|
||||||
></el-option>
|
<!-- :value="dict.value"-->
|
||||||
</el-select>
|
<!-- ></el-option>-->
|
||||||
</el-form-item>
|
<!-- </el-select>-->
|
||||||
|
<!-- </el-form-item>-->
|
||||||
|
|
||||||
|
<!--简单比较,不做角色绑定-->
|
||||||
|
<el-table-column label="角色" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ getOrderCount(scope.row.userId) > 1 ? '疑似代办' : '普通用户' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
@ -58,7 +68,13 @@
|
|||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column label="客户名称" align="center" prop="customerName" />
|
<el-table-column label="客户名称" align="center" prop="customerName" />
|
||||||
<el-table-column label="客户手机号" align="center" prop="customerPhone" />
|
<el-table-column label="客户手机号" align="center" prop="customerPhone" />
|
||||||
<el-table-column label="角色" align="center" prop="roleName" />
|
<el-table-column label="标签" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-tag v-if="scope.row.orderCount > 3" type="danger">疑似代办</el-tag>
|
||||||
|
<el-tag v-else type="success">正常</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="本年度订单数量" align="center" prop="orderCount"/>
|
||||||
<el-table-column label="性别" align="center" prop="sex">
|
<el-table-column label="性别" align="center" prop="sex">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex"/>
|
<dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex"/>
|
||||||
@ -299,7 +315,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listCustomerInfo, getCustomerInfo, delCustomerInfo, addCustomerInfo, updateCustomerInfo } from "./api/customer";
|
import {
|
||||||
|
listCustomerInfo,
|
||||||
|
getCustomerInfo,
|
||||||
|
delCustomerInfo,
|
||||||
|
addCustomerInfo,
|
||||||
|
updateCustomerInfo,
|
||||||
|
getUserOrderCounts
|
||||||
|
} from './api/customer';
|
||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
import DictTag from '@/components/DictTagOld/index.vue'
|
import DictTag from '@/components/DictTagOld/index.vue'
|
||||||
|
|
||||||
@ -324,6 +347,8 @@
|
|||||||
total: 0,
|
total: 0,
|
||||||
// 客户信息表格数据
|
// 客户信息表格数据
|
||||||
customerInfoList: [],
|
customerInfoList: [],
|
||||||
|
//每个用户的订单数量
|
||||||
|
userOrderCounts: [],
|
||||||
// userCarList:[],
|
// userCarList:[],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
title: "",
|
title: "",
|
||||||
@ -378,6 +403,7 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList();
|
||||||
|
// this.queryUserOrderCounts();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
addCommodity(){
|
addCommodity(){
|
||||||
@ -401,13 +427,45 @@
|
|||||||
/** 查询客户信息列表 */
|
/** 查询客户信息列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
||||||
|
// 查询客户信息
|
||||||
listCustomerInfo(this.queryParams).then(response => {
|
listCustomerInfo(this.queryParams).then(response => {
|
||||||
this.customerInfoList = response.data.records;
|
this.customerInfoList = response.data.records;
|
||||||
// this.userCarList = response.rows.userCarList
|
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
|
||||||
|
// 获取用户的订单数量
|
||||||
|
// return getUserOrderCounts().then(userOrderCounts => {
|
||||||
|
// console.log("成功获取用户订单数量:", userOrderCounts.data);
|
||||||
|
// this.userOrderCounts = userOrderCounts.data;
|
||||||
|
// }).catch(error => {
|
||||||
|
// console.error("获取用户订单数量失败:", error);
|
||||||
|
// });
|
||||||
|
// }).then(userOrderCounts => {
|
||||||
|
// this.userOrderCounts = userOrderCounts.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// getRoleLabel(userId) {
|
||||||
|
// const orderCount = this.getOrderCount(userId);
|
||||||
|
// return orderCount > 1 ? '疑似代办' : '普通用户';
|
||||||
|
// },
|
||||||
|
queryUserOrderCounts() {
|
||||||
|
getUserOrderCounts().then(userOrderCounts => {
|
||||||
|
console.log("成功获取用户订单数量:", userOrderCounts);
|
||||||
|
// 存储订单数量
|
||||||
|
this.userOrderCounts = userOrderCounts.data;
|
||||||
|
this.getList();
|
||||||
|
}).catch(error => {
|
||||||
|
console.error("获取用户订单数量失败:", error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getOrderCount(userId) {
|
||||||
|
const userOrder = this.userOrderCounts.find(order => order.userId === userId);
|
||||||
|
console.log("用户订单数量:", this.userOrderCounts,userOrder);
|
||||||
|
// 如果找不到对应的订单数量,返回0
|
||||||
|
return userOrder ? userOrder.orderCount : 0;
|
||||||
|
},
|
||||||
|
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
cancel() {
|
cancel() {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
|
@ -9,6 +9,14 @@ export function listCustomerInfo(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 查询客户订单数量列表
|
||||||
|
export function getUserOrderCounts() {
|
||||||
|
return request({
|
||||||
|
url: '/customerInfo/customerInfo/userOrderCounts',
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// 查询客户信息详细
|
// 查询客户信息详细
|
||||||
export function getCustomerInfo(id) {
|
export function getCustomerInfo(id) {
|
||||||
return request({
|
return request({
|
||||||
@ -52,3 +60,5 @@ export function partnerGetWtList(query) {
|
|||||||
params: query
|
params: query
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
},
|
},
|
||||||
getWareHoseName(value){
|
getWareHoseName(value){
|
||||||
return this.warehouseList.find(item => item.id === value).name
|
return this.warehouseList?.find(item => item.id === value)?.name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -188,7 +188,7 @@ export default {
|
|||||||
/** 保存数据 */
|
/** 保存数据 */
|
||||||
save(row) {
|
save(row) {
|
||||||
if (!this.soByType && row.stock < row.count){
|
if (!this.soByType && row.stock < row.count){
|
||||||
row.count = 1
|
row.count = 0
|
||||||
this.$modal.msgError("库存数量不足")
|
this.$modal.msgError("库存数量不足")
|
||||||
}
|
}
|
||||||
// 更新表格的数据
|
// 更新表格的数据
|
||||||
|
@ -161,7 +161,7 @@ export default {
|
|||||||
},
|
},
|
||||||
getWareHoseName(value){
|
getWareHoseName(value){
|
||||||
if (!(this.warehouseList && this.warehouseList.length > 0)) return ''
|
if (!(this.warehouseList && this.warehouseList.length > 0)) return ''
|
||||||
return this.warehouseList.find(item => item.id === value).name
|
return this.warehouseList.find(item => item.id === value)?.name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
512
src/views/repair/stockOperate/Components/WaresItem.vue
Normal file
512
src/views/repair/stockOperate/Components/WaresItem.vue
Normal file
@ -0,0 +1,512 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 搜索 -->
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="90px">
|
||||||
|
<el-form-item label="关键字" prop="query">
|
||||||
|
<el-input style="width: 20rem" type="text" placeholder="工单号、车牌号、联系电话" v-model="queryParams.query"/>
|
||||||
|
</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">
|
||||||
|
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
||||||
|
<el-table-column label="序号" align="center" width="80">
|
||||||
|
<template scope="scope">
|
||||||
|
<span>{{ scope.$index + 1 }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="单据号" align="center" prop="no" />
|
||||||
|
<el-table-column label="服务顾问" align="center" prop="adviserName" />
|
||||||
|
<el-table-column label="申请人" align="center" prop="repairName" />
|
||||||
|
<el-table-column label="状态" align="center" prop="status">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.TICKET_WARES_STATUS" v-model="scope.row.status" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
|
<el-table-column label="操作" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button type="text" size="mini" @click="handleDispose(scope.row)" icon="el-icon-edit">
|
||||||
|
处理
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<el-dialog title="单据处理" :visible.sync="dialogVisible" width="80%" v-dialogDrag append-to-body>
|
||||||
|
<el-table el-table v-loading="dialogLoading" :data="items" :stripe="true" :show-overflow-tooltip="true" :row-class-name="getClass" @selection-change="handleSelect">
|
||||||
|
<el-table-column type="selection" width="80" align="center" />
|
||||||
|
<el-table-column label="名称" align="center" prop="waresName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="规格" align="center" prop="wares.model" width="180"/>
|
||||||
|
<el-table-column label="申请数量" align="center" prop="waresCount" width="180"/>
|
||||||
|
<el-table-column label="库存数量" align="center" prop="wares.stock" width="180"/>
|
||||||
|
</el-table>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="handlePass(false)" :disabled="selections.length === 0 || selections.filter(item => !item.isStock).length !== 0">通过选择</el-button>
|
||||||
|
<el-button type="success" @click="handlePass(true)"
|
||||||
|
:disabled="this.items.filter(item => !item.isStock).length !== 0"
|
||||||
|
:title="this.items.filter(item => !item.isStock).length !== 0 ? '有配件库存不足':''">通过全部</el-button>
|
||||||
|
<el-button v-if="type" type="primary" @click="handleCreate(false)" :disabled="selections.length === 0">选择生成采购单</el-button>
|
||||||
|
<el-button v-if="type" type="primary" @click="handleCreate(true)">全部生成采购单</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
<el-dialog title="采购单" :visible.sync="inStockDialog" width="80%" v-dialogDrag append-to-body>
|
||||||
|
<el-table
|
||||||
|
:data="partList"
|
||||||
|
:stripe="true"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
show-summary
|
||||||
|
:summary-method="getSummaries"
|
||||||
|
@cell-mouse-enter="handleCellEnter"
|
||||||
|
@cell-mouse-leave="handleCellLeave"
|
||||||
|
@cell-click="handleCellClick"
|
||||||
|
>
|
||||||
|
<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="name" width="200"/>
|
||||||
|
<el-table-column label="规格" align="center" width="180" prop="model"/>
|
||||||
|
<el-table-column label="商品编码" align="center" width="180" prop="code">
|
||||||
|
<div class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.code"
|
||||||
|
placeholder="请输入内容"></el-input>
|
||||||
|
<span class="item__txt">{{ scope.row.code }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="仓库" align="center" width="150" prop="warehouse">
|
||||||
|
<div class="item" slot-scope="scope">
|
||||||
|
<WarehouseChoose @input-blur="save(scope.row)" class="item__input" v-model="scope.row.ware"
|
||||||
|
@change="changeWare(scope.row)"/>
|
||||||
|
<span class="item__txt">{{ scope.row.warehouseName }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="库存" align="center" width="150" prop="stock"/>
|
||||||
|
<el-table-column label="单位" align="center" width="150" prop="unit">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.REPAIR_UNIT" v-model="scope.row.unit"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="数量" align="center" width="150" prop="count">
|
||||||
|
<div class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.count"
|
||||||
|
placeholder="请输入内容"></el-input>
|
||||||
|
<span class="item__txt">{{ scope.row.count }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="上次进价" align="center" width="150" prop="purPrice"/>
|
||||||
|
<el-table-column label="采购单价" align="center" width="150" prop="newPrice">
|
||||||
|
<div class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.newPrice"
|
||||||
|
placeholder="请输入内容"></el-input>
|
||||||
|
<span class="item__txt">{{ scope.row.newPrice }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="采购金额" align="center" width="150" prop="totalPrice"/>
|
||||||
|
<el-table-column label="备注" align="center" width="180" prop="remark">
|
||||||
|
<div class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.remark"
|
||||||
|
placeholder="请输入内容"></el-input>
|
||||||
|
<span class="item__txt">{{ scope.row.remark }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" fixed="right" align="center" width="150">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="deleteItem(scope.$index)"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-row :gutter="1" style="margin-top: 1rem">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-input v-model="remark" placeholder="备注"/>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="danger" @click="handleSubmit">结算</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {getPage, pass, passBackTicketWares} from "@/api/repair/tickets/TicketWares";
|
||||||
|
import {listTwItem} from "@/api/repair/tickets/TWItem";
|
||||||
|
import {createUniqueCodeByHead} from "@/utils/createUniqueCode";
|
||||||
|
import {parseTime} from "@/utils/ruoyi";
|
||||||
|
import SoTable from "@/views/repair/stockOperate/Components/SoTable.vue";
|
||||||
|
import WarehouseChoose from "@/views/repair/Components/WarehouseChoose.vue";
|
||||||
|
import {createRepairSo} from "@/api/repair/stockOperate/stockOperate";
|
||||||
|
import {getUserProfile} from "@/api/system/user";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "WaresItem",
|
||||||
|
components: {WarehouseChoose, SoTable},
|
||||||
|
props:{
|
||||||
|
type: Boolean,
|
||||||
|
},
|
||||||
|
data(){
|
||||||
|
return{
|
||||||
|
queryParams:{
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
query: null,
|
||||||
|
type: this.type ? "01" : "02"
|
||||||
|
},
|
||||||
|
showSearch: true,
|
||||||
|
loading: false,
|
||||||
|
list:[],
|
||||||
|
total: 0,
|
||||||
|
dialogVisible: false,
|
||||||
|
items:[],
|
||||||
|
dialogLoading: false,
|
||||||
|
selections:[],
|
||||||
|
formData:{},
|
||||||
|
inStockDialog: false,
|
||||||
|
partList: [],
|
||||||
|
includeColumn: ['count', 'totalPrice'],
|
||||||
|
// 保存进入编辑的cell
|
||||||
|
clickCellMap: {},
|
||||||
|
// 需要编辑的属性
|
||||||
|
editProp: ['warehouse', 'count', 'newPrice', 'remark', 'code'],
|
||||||
|
remark: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
// 通过 true是全部、false是选择
|
||||||
|
async handlePass(flag){
|
||||||
|
// 生成领料单
|
||||||
|
if (this.type){
|
||||||
|
this.formData.repairSo = {
|
||||||
|
soType: "02",
|
||||||
|
soNo: createUniqueCodeByHead("LL"),
|
||||||
|
userId: this.formData.repairId,
|
||||||
|
userName: this.formData.repairName,
|
||||||
|
soTime: parseTime(Date.now(), '{y}-{m}-{d}'),
|
||||||
|
soStatus: "04",
|
||||||
|
purchaseType: "01"
|
||||||
|
}
|
||||||
|
if (flag){
|
||||||
|
this.formData.repairSois = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
soiType: '02',
|
||||||
|
goodsId: item.waresId,
|
||||||
|
goodsCount: item.waresCount,
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
this.formData.items = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: "04"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}else {
|
||||||
|
this.formData.repairSois = [...this.selections.map(item => {
|
||||||
|
return {
|
||||||
|
soiType: '02',
|
||||||
|
goodsId: item.waresId,
|
||||||
|
goodsCount: item.waresCount,
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
this.formData.items = [...this.selections.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: "04"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await pass(this.formData)
|
||||||
|
this.$modal.msgSuccess("处理成功")
|
||||||
|
await this.getList()
|
||||||
|
}finally {
|
||||||
|
this.dialogVisible = false
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
// 退料方法
|
||||||
|
this.formData = {}
|
||||||
|
if (flag){
|
||||||
|
this.formData.items = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: "05"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}else {
|
||||||
|
this.formData.items = [...this.selections.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: "05"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await passBackTicketWares(this.formData)
|
||||||
|
this.$modal.msgSuccess("处理成功")
|
||||||
|
await this.getList()
|
||||||
|
}finally {
|
||||||
|
this.dialogVisible = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 生成采购 true是全部、false是选择
|
||||||
|
async handleCreate(flag){
|
||||||
|
this.inStockDialog = true
|
||||||
|
if (flag){
|
||||||
|
this.partList = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
...item.wares,
|
||||||
|
count: item.waresCount,
|
||||||
|
newPrice: item.wares.purPrice,
|
||||||
|
totalPrice: item.waresCount * item.wares.purPrice
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}else {
|
||||||
|
this.partList = [...this.selections.map(item => {
|
||||||
|
return {
|
||||||
|
...item.wares,
|
||||||
|
count: item.waresCount,
|
||||||
|
newPrice: item.wares.price,
|
||||||
|
totalPrice: item.waresCount * item.wares.price
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}
|
||||||
|
this.dialogVisible = false
|
||||||
|
},
|
||||||
|
async getList(){
|
||||||
|
try {
|
||||||
|
this.loading = true
|
||||||
|
const res = await getPage(this.queryParams)
|
||||||
|
if (res.data){
|
||||||
|
this.list = res.data.records
|
||||||
|
this.total = res.data.total
|
||||||
|
}
|
||||||
|
}finally {
|
||||||
|
this.loading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleQuery(){
|
||||||
|
this.queryParams.pageNo = 1
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
resetQuery(){
|
||||||
|
this.resetForm('queryForm')
|
||||||
|
this.handleQuery()
|
||||||
|
},
|
||||||
|
async handleDispose(row){
|
||||||
|
this.formData = {}
|
||||||
|
this.formData = {
|
||||||
|
...row
|
||||||
|
}
|
||||||
|
this.dialogVisible = true
|
||||||
|
try {
|
||||||
|
this.dialogLoading = true
|
||||||
|
const data = {twId: row.id}
|
||||||
|
const res = await listTwItem(data)
|
||||||
|
this.items = res.data
|
||||||
|
// 库存判断
|
||||||
|
this.items.forEach(item => {
|
||||||
|
item.isStock = item.waresCount <= item.wares.stock
|
||||||
|
})
|
||||||
|
// 只要未领料的
|
||||||
|
if (this.type){
|
||||||
|
this.items = this.items.filter(item => item.waresStatus === '02')
|
||||||
|
}else {
|
||||||
|
// 未领料的不要
|
||||||
|
this.items = this.items.filter(item => item.waresStatus !== '02')
|
||||||
|
}
|
||||||
|
}finally {
|
||||||
|
this.dialogLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getClass(row){
|
||||||
|
if (this.type && !row.row.isStock){
|
||||||
|
return 'stock'
|
||||||
|
}
|
||||||
|
return ''
|
||||||
|
},
|
||||||
|
handleSelect(row){
|
||||||
|
this.selections = row
|
||||||
|
},
|
||||||
|
// 设置不统计的字段
|
||||||
|
getSummaries(param) {
|
||||||
|
const {columns, data} = param
|
||||||
|
const sums = []
|
||||||
|
columns.forEach((column, index) => {
|
||||||
|
if (index === 0) {
|
||||||
|
sums[index] = '合计';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const values = data.map(item => Number(item[column.property]));
|
||||||
|
if (this.includeColumn.includes(column.property)) {
|
||||||
|
sums[index] = values.reduce((prev, curr) => {
|
||||||
|
const value = Number(curr);
|
||||||
|
if (!isNaN(value)) {
|
||||||
|
return prev + curr;
|
||||||
|
} else {
|
||||||
|
return prev;
|
||||||
|
}
|
||||||
|
}, 0);
|
||||||
|
sums[index];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return sums
|
||||||
|
},
|
||||||
|
/** 鼠标移入cell */
|
||||||
|
handleCellEnter(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.add('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 鼠标移出cell */
|
||||||
|
handleCellLeave(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.remove('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 点击cell */
|
||||||
|
handleCellClick(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
// 保存cell
|
||||||
|
this.saveCellClick(row, cell)
|
||||||
|
cell.querySelector('.item__txt').style.display = 'none'
|
||||||
|
cell.querySelector('.item__input').style.display = 'inline'
|
||||||
|
cell.querySelector('input').focus()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 取消编辑状态 */
|
||||||
|
cancelEditable(cell) {
|
||||||
|
cell.querySelector('.item__txt').style.display = 'inline'
|
||||||
|
cell.querySelector('.item__input').style.display = 'none'
|
||||||
|
},
|
||||||
|
/** 保存进入编辑的cell */
|
||||||
|
saveCellClick(row, cell) {
|
||||||
|
const id = row.id
|
||||||
|
if (this.clickCellMap[id] !== undefined) {
|
||||||
|
if (!this.clickCellMap[id].includes(cell)) {
|
||||||
|
this.clickCellMap[id].push(cell)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.clickCellMap[id] = [cell]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 保存数据 */
|
||||||
|
save(row) {
|
||||||
|
// 更新表格的数据
|
||||||
|
row.totalPrice = row.count * row.newPrice
|
||||||
|
const id = row.id
|
||||||
|
// 取消本行所有cell的编辑状态
|
||||||
|
this.clickCellMap[id].forEach(cell => {
|
||||||
|
this.cancelEditable(cell)
|
||||||
|
})
|
||||||
|
this.clickCellMap[id] = []
|
||||||
|
},
|
||||||
|
changeWare(row) {
|
||||||
|
if (row.ware) {
|
||||||
|
row['wareId'] = row.ware.id
|
||||||
|
row['warehouse'] = row.ware.id
|
||||||
|
row['warehouseName'] = row.ware.name
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 通知父组件,删除数据
|
||||||
|
deleteItem(index) {
|
||||||
|
this.partList.splice(index, 1)
|
||||||
|
},
|
||||||
|
// 提交
|
||||||
|
async handleSubmit(){
|
||||||
|
try {
|
||||||
|
await this.createInit()
|
||||||
|
await createRepairSo(this.formData)
|
||||||
|
this.inStockDialog = false
|
||||||
|
this.$modal.msgSuccess("新增成功")
|
||||||
|
await this.getList()
|
||||||
|
}catch{
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 提交前的构建
|
||||||
|
async createInit(){
|
||||||
|
const res = await getUserProfile()
|
||||||
|
this.formData = {}
|
||||||
|
this.formData = {
|
||||||
|
soType: '01',
|
||||||
|
purchaseType: '01',
|
||||||
|
soNo: createUniqueCodeByHead("CG"),
|
||||||
|
userId: res.data.id,
|
||||||
|
userName: res.data.nickname,
|
||||||
|
soTime: parseTime(Date.now(), '{y}-{m}-{d}'),
|
||||||
|
itemCount: this.partList.length,
|
||||||
|
totalPrice: this.partList.reduce((x, y) => {return x + y.totalPrice}, 0),
|
||||||
|
soStatus: "03",
|
||||||
|
remark: this.remark,
|
||||||
|
}
|
||||||
|
this.formData.goodsList = [...this.partList.map(item => {
|
||||||
|
return {
|
||||||
|
soiType: '01',
|
||||||
|
goodsId: item.id,
|
||||||
|
goodsType: '0',
|
||||||
|
wareId: item?.wareId,
|
||||||
|
goodsCount: item.count,
|
||||||
|
goodsPrice: item.newPrice,
|
||||||
|
remark: item.remark
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
::v-deep .el-table .stock td{
|
||||||
|
background-color: #ff0000 !important; /* 红色背景 */
|
||||||
|
}
|
||||||
|
.item {
|
||||||
|
.item__input {
|
||||||
|
display: none;
|
||||||
|
width: 100px;
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__inner {
|
||||||
|
height: 24px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__suffix {
|
||||||
|
i {
|
||||||
|
font-size: 12px !important;
|
||||||
|
line-height: 26px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt {
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
width: 100px;
|
||||||
|
line-height: 24px;
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt--hover {
|
||||||
|
border: 1px solid #dddddd;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
33
src/views/repair/stockOperate/WaresAudit.vue
Normal file
33
src/views/repair/stockOperate/WaresAudit.vue
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-tabs v-model="activeTab">
|
||||||
|
<el-tab-pane label="领料申请" name="get">
|
||||||
|
<WaresItem :type="true"/>
|
||||||
|
</el-tab-pane>
|
||||||
|
<el-tab-pane label="退料申请" name="back">
|
||||||
|
<WaresItem :type="false"/>
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import WaresItem from "@/views/repair/stockOperate/Components/WaresItem.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "WaresAudit",
|
||||||
|
components: {WaresItem},
|
||||||
|
data(){
|
||||||
|
return{
|
||||||
|
activeTab: "get"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
|
||||||
|
</style>
|
@ -153,7 +153,7 @@ export default {
|
|||||||
this.info = row
|
this.info = row
|
||||||
const id = row.id
|
const id = row.id
|
||||||
const res = await getSt(id)
|
const res = await getSt(id)
|
||||||
console.log(res.data)
|
// console.log(res.data)
|
||||||
this.info.items = res.data.items
|
this.info.items = res.data.items
|
||||||
const response = await getBaseWarehouseList()
|
const response = await getBaseWarehouseList()
|
||||||
this.warehouseList = response.data
|
this.warehouseList = response.data
|
||||||
|
@ -338,7 +338,7 @@ export default {
|
|||||||
this.list.splice(index, 1)
|
this.list.splice(index, 1)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// TODO 新增
|
// 新增
|
||||||
handleCreateItem() {
|
handleCreateItem() {
|
||||||
switch (this.itemType) {
|
switch (this.itemType) {
|
||||||
case "project":
|
case "project":
|
||||||
|
@ -44,22 +44,25 @@
|
|||||||
<el-button size="mini" type="text" icon="el-icon-view" @click="handleShow(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-view" @click="handleShow(scope.row)"
|
||||||
>查看
|
>查看
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="scope.row.ticketsWorkStatus === '01' && (userRole === 3 || userRole === 4)" size="mini" type="text" icon="el-icon-check" @click="handleTake(scope.row)">
|
<el-button v-if="scope.row.ticketsWorkStatus === '01' && userRole === 'repair_staff'" size="mini" type="text" icon="el-icon-check" @click="handleTake(scope.row)">
|
||||||
接单
|
接单
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="userRole === 2 && scope.row.ticketsWorkStatus === '01'" size="mini" type="text" icon="el-icon-check" @click="handleNotify(scope.row)">
|
<el-button v-if="userRole === 'service_advisor' && scope.row.ticketsWorkStatus === '01'" size="mini" type="text" icon="el-icon-check" @click="handleNotify(scope.row)">
|
||||||
通知施工
|
通知施工
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-dropdown @command="(command) => handleCommand(command, scope.$index, scope.row)">
|
<el-dropdown @command="(command) => handleCommand(command, scope.$index, scope.row)">
|
||||||
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item v-if="!isFinish && scope.row.ticketsWorkStatus === '02'" command="handleGet" size="mini" type="text" icon="el-icon-document-add"
|
<el-dropdown-item v-if="!isFinish && scope.row.ticketsWorkStatus === '02' && userRole === 'repair_staff'" command="handleGet" size="mini" type="text" icon="el-icon-document-add"
|
||||||
>申请领料
|
>申请领料
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item v-if="isFinish" @click="handleBack(scope.row)" size="mini" type="text" icon="el-icon-document-delete"
|
<el-dropdown-item v-if="scope.row.ticketsWorkStatus === '02' && userRole === 'repair_staff'" command="handleBack" size="mini" type="text" icon="el-icon-document-delete"
|
||||||
>申请退料
|
>申请退料
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item v-if="userRole !== 4" command="handleReTake" size="mini" type="text" icon="el-icon-refresh"
|
<!-- 还要判断是不是员工 -->
|
||||||
|
<el-dropdown-item
|
||||||
|
v-if="userRole === 'repair_staff' ? leader : true"
|
||||||
|
command="handleReTake" size="mini" type="text" icon="el-icon-refresh"
|
||||||
>重新指派
|
>重新指派
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
@ -74,6 +77,40 @@
|
|||||||
<TicketsShow ref="ticketsShow"/>
|
<TicketsShow ref="ticketsShow"/>
|
||||||
<UpdateRepair ref="updateRepair" @success="listTickets"/>
|
<UpdateRepair ref="updateRepair" @success="listTickets"/>
|
||||||
<TWOperate ref="twOperate" @success="listTickets"/>
|
<TWOperate ref="twOperate" @success="listTickets"/>
|
||||||
|
|
||||||
|
<el-dialog title="退料申请" :visible.sync="backVisible" width="60%" v-dialogDrag append-to-body>
|
||||||
|
<el-table v-loading="backLoading" :data="partList" :stripe="true" :show-overflow-tooltip="true"
|
||||||
|
@cell-mouse-enter="handleCellEnter"
|
||||||
|
@cell-mouse-leave="handleCellLeave"
|
||||||
|
@cell-click="handleCellClick"
|
||||||
|
@selection-change="rowSelect"
|
||||||
|
>
|
||||||
|
<el-table-column type="selection" align="center" />
|
||||||
|
<el-table-column label="商品名称" prop="waresName" align="center"/>
|
||||||
|
<el-table-column label="规格" prop="wares.model" align="center"/>
|
||||||
|
<el-table-column label="数量" prop="waresCount" align="center">
|
||||||
|
<div v-if="scope.row.id" class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.waresCount"/>
|
||||||
|
<span class="item__txt">{{ scope.row.waresCount }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="备注" prop="remark" align="center">
|
||||||
|
<div v-if="scope.row.id" class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.remark"/>
|
||||||
|
<span class="item__txt">{{ scope.row.remark }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-row :gutter="1" style="margin-top: 1rem">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-input v-model="remark" placeholder="备注" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="doBack(false)" type="primary" :disabled="selections.length === 0">退料选择</el-button>
|
||||||
|
<el-button @click="doBack(true)" type="success" :disabled="partList.length === 0">退料全部</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -82,6 +119,10 @@ import {getPageType, updateTake} from "@/api/repair/tickets/Tickets";
|
|||||||
import TicketsShow from "@/views/repair/tickets/Components/TicketsShow.vue";
|
import TicketsShow from "@/views/repair/tickets/Components/TicketsShow.vue";
|
||||||
import UpdateRepair from "@/views/repair/tickets/form/UpdateRepair.vue";
|
import UpdateRepair from "@/views/repair/tickets/form/UpdateRepair.vue";
|
||||||
import TWOperate from "@/views/repair/tickets/form/TWOperate.vue";
|
import TWOperate from "@/views/repair/tickets/form/TWOperate.vue";
|
||||||
|
import {listTwItem} from "@/api/repair/tickets/TWItem";
|
||||||
|
import {createUniqueCodeByHead} from "@/utils/createUniqueCode";
|
||||||
|
import {updateTicketWares} from "@/api/repair/tickets/TicketWares";
|
||||||
|
import {getIfLeader} from "@/api/repair/repairworker";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TicketManagerItem",
|
name: "TicketManagerItem",
|
||||||
@ -91,8 +132,8 @@ export default {
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
},
|
},
|
||||||
userRole: {
|
userRole: {
|
||||||
type: Number,
|
type: String,
|
||||||
default: -1,
|
default: '',
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -108,13 +149,29 @@ export default {
|
|||||||
showSearch: true,
|
showSearch: true,
|
||||||
loading: false,
|
loading: false,
|
||||||
list: [],
|
list: [],
|
||||||
total: 0
|
total: 0,
|
||||||
|
backVisible: false,
|
||||||
|
partList: [],
|
||||||
|
backLoading: false,
|
||||||
|
// 保存进入编辑的cell
|
||||||
|
clickCellMap: {},
|
||||||
|
// 需要编辑的属性
|
||||||
|
editProp: ['remark', 'waresCount'],
|
||||||
|
selections: [],
|
||||||
|
formData: {},
|
||||||
|
remark: null,
|
||||||
|
leader: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.listTickets()
|
this.listTickets()
|
||||||
|
this.isLeader()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
async isLeader(){
|
||||||
|
const res = await getIfLeader()
|
||||||
|
this.leader = res.data
|
||||||
|
},
|
||||||
async listTickets() {
|
async listTickets() {
|
||||||
try {
|
try {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
@ -162,14 +219,30 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 退料
|
// 退料
|
||||||
handleBack(row){
|
async handleBack(row){
|
||||||
|
this.formData = {}
|
||||||
|
this.formData = row
|
||||||
|
this.remark = null
|
||||||
|
this.backVisible = true
|
||||||
|
try {
|
||||||
|
this.backLoading = true
|
||||||
|
const data = {
|
||||||
|
twId: row.twId
|
||||||
|
}
|
||||||
|
const res = await listTwItem(data)
|
||||||
|
this.partList = res.data
|
||||||
|
// 未领料的不要
|
||||||
|
this.partList = this.partList.filter(item => item.waresStatus === '01')
|
||||||
|
}finally {
|
||||||
|
this.backLoading = false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 重新指派
|
// 重新指派
|
||||||
handleReTake(row){
|
handleReTake(row){
|
||||||
row = {
|
row = {
|
||||||
...row,
|
...row,
|
||||||
isLeads: true
|
// 还要判断是不是班组长
|
||||||
|
isLeads: this.userRole === 'repair_staff'
|
||||||
}
|
}
|
||||||
this.$refs.updateRepair.open(row)
|
this.$refs.updateRepair.open(row)
|
||||||
},
|
},
|
||||||
@ -186,14 +259,123 @@ export default {
|
|||||||
case 'handleGet':
|
case 'handleGet':
|
||||||
this.handleGet(row)
|
this.handleGet(row)
|
||||||
break
|
break
|
||||||
|
case 'handleBack':
|
||||||
|
this.handleBack(row)
|
||||||
|
break
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
/** 鼠标移入cell */
|
||||||
|
handleCellEnter(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.add('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 鼠标移出cell */
|
||||||
|
handleCellLeave(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.remove('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 点击cell */
|
||||||
|
handleCellClick(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
// 保存cell
|
||||||
|
this.saveCellClick(row, cell)
|
||||||
|
cell.querySelector('.item__txt').style.display = 'none'
|
||||||
|
cell.querySelector('.item__input').style.display = 'inline'
|
||||||
|
cell.querySelector('input').focus()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 取消编辑状态 */
|
||||||
|
cancelEditable(cell) {
|
||||||
|
cell.querySelector('.item__txt').style.display = 'inline'
|
||||||
|
cell.querySelector('.item__input').style.display = 'none'
|
||||||
|
},
|
||||||
|
/** 保存进入编辑的cell */
|
||||||
|
saveCellClick(row, cell) {
|
||||||
|
const id = row.id
|
||||||
|
if (this.clickCellMap[id] !== undefined) {
|
||||||
|
if (!this.clickCellMap[id].includes(cell)) {
|
||||||
|
this.clickCellMap[id].push(cell)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.clickCellMap[id] = [cell]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 保存数据 */
|
||||||
|
save(row) {
|
||||||
|
// 更新表格的数据
|
||||||
|
row.totalPrice = row.count * row.newPrice
|
||||||
|
const id = row.id
|
||||||
|
// 取消本行所有cell的编辑状态
|
||||||
|
this.clickCellMap[id].forEach(cell => {
|
||||||
|
this.cancelEditable(cell)
|
||||||
|
})
|
||||||
|
this.clickCellMap[id] = []
|
||||||
|
},
|
||||||
|
rowSelect(val){
|
||||||
|
this.selections = val
|
||||||
|
},
|
||||||
|
async doBack(flag){
|
||||||
|
const data = {
|
||||||
|
no: createUniqueCodeByHead("TLSQ"),
|
||||||
|
ticketId: this.formData.id,
|
||||||
|
type: "02",
|
||||||
|
status: "01",
|
||||||
|
remark: this.remark,
|
||||||
|
adviserId: this.formData.adviserId,
|
||||||
|
adviserName: this.formData.adviserName
|
||||||
|
}
|
||||||
|
if (flag){
|
||||||
|
data.items = this.partList
|
||||||
|
}else {
|
||||||
|
data.items = this.selections
|
||||||
|
}
|
||||||
|
await updateTicketWares(data)
|
||||||
|
this.backVisible = false
|
||||||
|
this.$modal.msgSuccess("申请成功");
|
||||||
|
await this.listTickets()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.item {
|
||||||
|
.item__input {
|
||||||
|
display: none;
|
||||||
|
width: 100px;
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__inner {
|
||||||
|
height: 24px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__suffix {
|
||||||
|
i {
|
||||||
|
font-size: 12px !important;
|
||||||
|
line-height: 26px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt {
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
width: 100px;
|
||||||
|
line-height: 24px;
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt--hover {
|
||||||
|
border: 1px solid #dddddd;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
<TicketTable :ticket-type="TicketType" :list="list" @setVoid="getPage"/>
|
<TicketTable :ticket-type="TicketType" :list="list" @setVoid="getPage" :is-w-x-c-w="isWXCW"/>
|
||||||
<pagination @pagination="getPage" v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
<pagination @pagination="getPage" v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -53,6 +53,7 @@ import TicketTable from "@/views/repair/tickets/Components/TicketTable.vue";
|
|||||||
import RepairTypeChoose from "@/views/repair/Components/RepairTypeChoose.vue";
|
import RepairTypeChoose from "@/views/repair/Components/RepairTypeChoose.vue";
|
||||||
import {getTicketsPage} from "@/api/repair/tickets/Tickets";
|
import {getTicketsPage} from "@/api/repair/tickets/Tickets";
|
||||||
import CorpChoose from "@/views/repair/Components/CorpChoose.vue";
|
import CorpChoose from "@/views/repair/Components/CorpChoose.vue";
|
||||||
|
import {checkRole} from "@/api/system/permission";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TicketSearch",
|
name: "TicketSearch",
|
||||||
@ -83,13 +84,20 @@ export default {
|
|||||||
},
|
},
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
total: 0,
|
total: 0,
|
||||||
list: []
|
list: [],
|
||||||
|
isWXCW: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getPage()
|
this.getPage()
|
||||||
|
this.getIsWXCW()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 是否是财务
|
||||||
|
async getIsWXCW(){
|
||||||
|
const res = await checkRole("wxcw")
|
||||||
|
this.isWXCW = res.data
|
||||||
|
},
|
||||||
// 类型选择
|
// 类型选择
|
||||||
getRepairType(data){
|
getRepairType(data){
|
||||||
console.log(data)
|
console.log(data)
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
<el-button size="mini" type="text" icon="el-icon-view" @click="handleShow(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-view" @click="handleShow(scope.row)"
|
||||||
>查看
|
>查看
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="TicketType === 'tu'" size="mini" type="text" icon="el-icon-finished"
|
<el-button v-if="TicketType === 'tu' && isWXCW && !scope.row.payType" size="mini" type="text" icon="el-icon-finished"
|
||||||
@click="handlePaid(scope.row)"
|
@click="handlePaid(scope.row)"
|
||||||
>结算
|
>结算
|
||||||
</el-button>
|
</el-button>
|
||||||
@ -145,12 +145,37 @@
|
|||||||
<!-- <el-table-column label="作废备注" align="center" prop="remark" width="180" />-->
|
<!-- <el-table-column label="作废备注" align="center" prop="remark" width="180" />-->
|
||||||
<!-- </el-table>-->
|
<!-- </el-table>-->
|
||||||
<TicketsShow ref="ticketsShow"/>
|
<TicketsShow ref="ticketsShow"/>
|
||||||
|
<el-dialog title="结算信息" :visible.sync="dialogVisible" width="40%" v-dialogDrag append-to-body>
|
||||||
|
<el-form :model="formData" ref="formRef" :inline="true" label-width="10rem" :rules="formRules">
|
||||||
|
<el-row :gutter="1">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="结算方法" prop="payType">
|
||||||
|
<el-select v-model="formData.payType">
|
||||||
|
<el-option v-for="item in this.getDictDataByCode(DICT_TYPE.REPAIR_PAY_TYPE)" :key="item.value" :label="item.label" :value="item.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="1">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="结算备注" prop="remark">
|
||||||
|
<el-input style="width:30rem" type="textarea" v-model="formData.remark" :autosize="{ minRows: 4, maxRows: 8}"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="doPaid">确 定</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {setTicketsVoid, setTicketsPaid, setTicketsPrint} from '@/api/repair/tickets/Tickets'
|
import {setTicketsVoid, setTicketsPaid, setTicketsPrint} from '@/api/repair/tickets/Tickets'
|
||||||
import TicketsShow from "@/views/repair/tickets/Components/TicketsShow.vue";
|
import TicketsShow from "@/views/repair/tickets/Components/TicketsShow.vue";
|
||||||
|
import {getByNameAndMobile} from "@/api/base/customer";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TicketTable",
|
name: "TicketTable",
|
||||||
@ -164,6 +189,9 @@ export default {
|
|||||||
list: {
|
list: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: []
|
default: []
|
||||||
|
},
|
||||||
|
isWXCW:{
|
||||||
|
type:Boolean
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@ -172,8 +200,14 @@ export default {
|
|||||||
formData: {
|
formData: {
|
||||||
id: null,
|
id: null,
|
||||||
ticketsStatus: null,
|
ticketsStatus: null,
|
||||||
remark: null
|
remark: null,
|
||||||
}
|
payType: null
|
||||||
|
},
|
||||||
|
formRules:{
|
||||||
|
payType: [{required: true, message: '支付方式不能为空', trigger: 'blur'}]
|
||||||
|
},
|
||||||
|
dialogVisible: false,
|
||||||
|
isHangAccount: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -204,7 +238,6 @@ export default {
|
|||||||
* 打印
|
* 打印
|
||||||
*/
|
*/
|
||||||
async handlePrint(row) {
|
async handlePrint(row) {
|
||||||
// window.location.href = process.env.VUE_APP_BASE_API + '/admin-api/repair/tickets/print/'+row.id;
|
|
||||||
window.open(process.env.VUE_APP_BASE_API + '/admin-api/repair/tickets/print/'+row.id)
|
window.open(process.env.VUE_APP_BASE_API + '/admin-api/repair/tickets/print/'+row.id)
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -218,26 +251,41 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
handlePaid(row) {
|
handlePaid(row) {
|
||||||
this.$prompt('结算备注', '提示', {
|
this.formData = {
|
||||||
confirmButtonText: '确定',
|
id: null,
|
||||||
cancelButtonText: '取消',
|
ticketsStatus: null,
|
||||||
}).then(({value}) => {
|
remark: null,
|
||||||
const data = {}
|
payType: null
|
||||||
data['id'] = row.id
|
}
|
||||||
data['remark'] = value
|
this.formData['id'] = row.id
|
||||||
data['ticketsStatus'] = '02'
|
this.formData['ticketsStatus'] = '02'
|
||||||
this.doPaid(data)
|
this.dialogVisible = true
|
||||||
}).catch(() => {
|
this.checkIsHangAccount(row)
|
||||||
})
|
|
||||||
},
|
},
|
||||||
async doPaid(data) {
|
async checkIsHangAccount(row){
|
||||||
|
const data = {
|
||||||
|
cusName: row.userName, phoneNumber: row.userMobile
|
||||||
|
}
|
||||||
|
const res = await getByNameAndMobile(data)
|
||||||
|
this.isHangAccount = res.data.isHangAccount === '1'
|
||||||
|
},
|
||||||
|
async doPaid() {
|
||||||
try {
|
try {
|
||||||
await setTicketsPaid(data)
|
await this.$refs['formRef'].validate()
|
||||||
|
await setTicketsPaid(this.formData)
|
||||||
this.$modal.msgSuccess("结算成功")
|
this.$modal.msgSuccess("结算成功")
|
||||||
|
this.dialogVisible = false
|
||||||
this.$emit("setVoid")
|
this.$emit("setVoid")
|
||||||
} catch {
|
}catch{}
|
||||||
}
|
},
|
||||||
|
getDictDataByCode(code){
|
||||||
|
const data = this.getDictDatas(code);
|
||||||
|
if (this.isHangAccount){
|
||||||
|
return data
|
||||||
|
}else {
|
||||||
|
return data.filter(item => !item.label.includes("挂账"))
|
||||||
}
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -36,14 +36,17 @@
|
|||||||
<el-table-column label="备注" align="center" prop="remark" />
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
<el-table-column label="操作" align="center">
|
<el-table-column label="操作" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button type="text" size="mini" icon="el-icon-view" @click="handleShow(scope.row)">
|
<el-button v-if="scope.row.status !== '01' || userRole !== 'service_advisor'" type="text" size="mini" icon="el-icon-view" @click="handleShow(scope.row)">
|
||||||
查看
|
查看
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="userRole === 1 || userRole === 2 && scope.row.status === '01'" type="text" size="mini" icon="el-icon-s-check">
|
<el-button v-if="(userRole === 'service_advisor' || userRole === 'general_inspection') && scope.row.status === '01'" @click="handleAudit(scope.row)" type="text" size="mini" icon="el-icon-s-check">
|
||||||
审核
|
审核
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="userRole === 3 || userRole === 4 && scope.row.status !== '01'" type="text" size="mini" icon="el-icon-finished">
|
<el-button @click="handleGet(scope.row)" v-if="userRole === 'repair_staff' && scope.row.status !== '01' && scope.row.type === '01'" type="text" size="mini" icon="el-icon-finished">
|
||||||
完成
|
领料
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="handleGet(scope.row)" v-if="userRole === 'repair_staff' && scope.row.status !== '01' && scope.row.type === '02'" type="text" size="mini" icon="el-icon-finished">
|
||||||
|
退料
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -52,20 +55,38 @@
|
|||||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
@pagination="getList"
|
@pagination="getList"
|
||||||
/>
|
/>
|
||||||
<TicketWaresShow ref="ticketWaresShow" :user-role="userRole"/>
|
<TicketWaresShow ref="ticketWaresShow" :user-role="userRole" @success="getList" :type="type"/>
|
||||||
|
|
||||||
|
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="80%" v-dialogDrag append-to-body>
|
||||||
|
<el-table el-table v-loading="dialogLoading" :data="items" :stripe="true" :show-overflow-tooltip="true" @selection-change="handleSelect">
|
||||||
|
<el-table-column type="selection" width="80" align="center" />
|
||||||
|
<el-table-column label="名称" align="center" prop="waresName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="规格" align="center" prop="wares.model" width="180"/>
|
||||||
|
<el-table-column label="数量" align="center" prop="waresCount" width="180"/>
|
||||||
|
</el-table>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="handleDoGet(false)" :disabled="selections.length === 0">
|
||||||
|
{{this.type ? '领料选择' : '退料选择'}}
|
||||||
|
</el-button>
|
||||||
|
<el-button type="primary" :disabled="items.length === 0" @click="handleDoGet(true)">
|
||||||
|
{{this.type ? '领料全部' : '退料全部'}}
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getPage} from "@/api/repair/tickets/TicketWares";
|
import {getPage, repairPassTicketWares} from "@/api/repair/tickets/TicketWares";
|
||||||
import TicketWaresShow from "@/views/repair/tickets/Components/TicketWaresShow.vue";
|
import TicketWaresShow from "@/views/repair/tickets/Components/TicketWaresShow.vue";
|
||||||
|
import {listTwItem} from "@/api/repair/tickets/TWItem";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TicketWares",
|
name: "TicketWares",
|
||||||
components: {TicketWaresShow},
|
components: {TicketWaresShow},
|
||||||
props:{
|
props:{
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
userRole: Number,
|
userRole: String,
|
||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
@ -79,7 +100,13 @@ export default {
|
|||||||
showSearch: true,
|
showSearch: true,
|
||||||
loading: false,
|
loading: false,
|
||||||
list: [],
|
list: [],
|
||||||
total: 0
|
total: 0,
|
||||||
|
dialogVisible: false,
|
||||||
|
dialogLoading: false,
|
||||||
|
items: [],
|
||||||
|
selections: [],
|
||||||
|
formData:{},
|
||||||
|
dialogTitle: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -108,6 +135,58 @@ export default {
|
|||||||
},
|
},
|
||||||
handleShow(row){
|
handleShow(row){
|
||||||
this.$refs.ticketWaresShow.open(row)
|
this.$refs.ticketWaresShow.open(row)
|
||||||
|
},
|
||||||
|
handleAudit(row){
|
||||||
|
this.handleShow(row)
|
||||||
|
},
|
||||||
|
async handleGet(row){
|
||||||
|
this.formData = {
|
||||||
|
id: row.id,
|
||||||
|
}
|
||||||
|
this.dialogVisible = true
|
||||||
|
this.dialogTitle = this.type ? "领料确认" : "退料确认"
|
||||||
|
try {
|
||||||
|
this.dialogLoading = true
|
||||||
|
const data = {twId: row.id}
|
||||||
|
const res = await listTwItem(data)
|
||||||
|
this.items = res.data
|
||||||
|
// 只要可领料的
|
||||||
|
if (this.type){
|
||||||
|
this.items = this.items.filter(item => item.waresStatus === '04')
|
||||||
|
}else {
|
||||||
|
// 只要可退料的
|
||||||
|
this.items = this.items.filter(item => item.waresStatus === '05')
|
||||||
|
}
|
||||||
|
}finally {
|
||||||
|
this.dialogLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleSelect(val){
|
||||||
|
this.selections = val
|
||||||
|
},
|
||||||
|
async handleDoGet(flag){
|
||||||
|
this.formData.type = this.type ? "01" : "02"
|
||||||
|
if (flag){
|
||||||
|
this.formData.items = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: this.type ? "01" : "03"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}else {
|
||||||
|
this.formData.items = [...this.selections.map(item => {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
waresStatus: this.type ? "01" : "03"
|
||||||
|
}
|
||||||
|
})]
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await repairPassTicketWares(this.formData)
|
||||||
|
this.dialogVisible = false
|
||||||
|
this.$modal.msgSuccess(this.type ? "领料成功" : "退料成功")
|
||||||
|
await this.getList()
|
||||||
|
}catch{}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,22 +141,17 @@
|
|||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-table v-loading="loading" :data="items" :stripe="true" :show-overflow-tooltip="true">
|
<el-table v-loading="loading" :data="items" :stripe="true" :show-overflow-tooltip="true"
|
||||||
|
@cell-mouse-enter="handleCellEnter"
|
||||||
|
@cell-mouse-leave="handleCellLeave"
|
||||||
|
@cell-click="handleCellClick"
|
||||||
|
>
|
||||||
<el-table-column label="序号" align="center" width="80">
|
<el-table-column label="序号" align="center" width="80">
|
||||||
<template scope="scope">
|
<template scope="scope">
|
||||||
<span>{{ scope.$index + 1 }}</span>
|
<span>{{ scope.$index + 1 }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="名称" align="center" prop="waresName"/>
|
<el-table-column align="center" label="客户可见" prop="isShow" v-if="userRole === 'service_advisor' && type" width="180">
|
||||||
<el-table-column label="规格" align="center" prop="wares.model" />
|
|
||||||
<el-table-column label="数量" align="center" prop="waresCount" />
|
|
||||||
<el-table-column label="状态" align="center" prop="waresStatus">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<dict-tag :type="DICT_TYPE.TW_ITEM_STATUS" :value="scope.row.waresStatus" />
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column align="center" label="备注" prop="remark" />
|
|
||||||
<el-table-column align="center" label="客户可见" prop="isShow" v-if="userRole === 2">
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-switch
|
<el-switch
|
||||||
v-model="scope.row.isShow"
|
v-model="scope.row.isShow"
|
||||||
@ -169,21 +164,45 @@
|
|||||||
</el-switch>
|
</el-switch>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="名称" align="center" prop="waresName" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column label="规格" align="center" prop="wares.model" width="180"/>
|
||||||
|
<el-table-column label="数量" align="center" prop="waresCount" width="180"/>
|
||||||
|
<el-table-column v-if="userRole === 'service_advisor' && type" label="折扣" align="center" prop="itemDiscount" width="180">
|
||||||
|
<div v-if="formData.status === '01'" class="item" slot-scope="scope">
|
||||||
|
<el-input @blur="save(scope.row)" class="item__input" v-model="scope.row.itemDiscount"/>
|
||||||
|
<span class="item__txt">{{ scope.row.itemDiscount }}</span>
|
||||||
|
</div>
|
||||||
|
<div v-else class="item" slot-scope="scope">
|
||||||
|
<span>{{ scope.row.itemDiscount }}</span>
|
||||||
|
</div>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="状态" align="center" prop="waresStatus" width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.TW_ITEM_STATUS" :value="scope.row.waresStatus" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="备注" prop="remark" width="180" :show-overflow-tooltip="true"/>
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
<div slot="footer" class="dialog-footer" v-if="info.status === '01' && (userRole === 'service_advisor' || userRole === 'general_inspection')">
|
||||||
|
<el-button type="primary" @click="handleAudit(true)">通 过</el-button>
|
||||||
|
<el-button @click="handleAudit(false)">驳 回</el-button>
|
||||||
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getTicketsById} from "@/api/repair/tickets/Tickets";
|
import {getTicketsById} from "@/api/repair/tickets/Tickets";
|
||||||
|
import {auditTicketWares} from "@/api/repair/tickets/TicketWares";
|
||||||
import {listTwItem, updateIsShow} from "@/api/repair/tickets/TWItem";
|
import {listTwItem, updateIsShow} from "@/api/repair/tickets/TWItem";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TicketWaresShow",
|
name: "TicketWaresShow",
|
||||||
props:{
|
props:{
|
||||||
userRole: Number
|
userRole: String,
|
||||||
|
type: Boolean
|
||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
@ -196,14 +215,19 @@ export default {
|
|||||||
waresStatus: null
|
waresStatus: null
|
||||||
},
|
},
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
loading: false
|
loading: false,
|
||||||
|
formData: {},
|
||||||
|
clickCellMap: {},
|
||||||
|
editProp: ['itemDiscount'],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
async open(row){
|
async open(row){
|
||||||
if (row){
|
if (row){
|
||||||
|
this.formData = row
|
||||||
const res = await getTicketsById(row.ticketId)
|
const res = await getTicketsById(row.ticketId)
|
||||||
this.info = res.data
|
this.info = res.data
|
||||||
|
this.info.status = row.status
|
||||||
this.queryParams.twId = row.id
|
this.queryParams.twId = row.id
|
||||||
await this.getTwItem()
|
await this.getTwItem()
|
||||||
}
|
}
|
||||||
@ -214,6 +238,12 @@ export default {
|
|||||||
this.loading = true
|
this.loading = true
|
||||||
const res = await listTwItem(this.queryParams)
|
const res = await listTwItem(this.queryParams)
|
||||||
this.items = res.data
|
this.items = res.data
|
||||||
|
this.items = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
itemDiscount: 10,
|
||||||
|
}
|
||||||
|
})]
|
||||||
}finally {
|
}finally {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
}
|
||||||
@ -233,7 +263,94 @@ export default {
|
|||||||
}finally {
|
}finally {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
// 审核
|
||||||
|
async handleAudit(flag){
|
||||||
|
try {
|
||||||
|
this.formData['status'] = flag ? "02" : '05'
|
||||||
|
// 处理配件信息
|
||||||
|
this.formData.wares = [...this.items.map(item => {
|
||||||
|
return {
|
||||||
|
itemName: item.waresName,
|
||||||
|
itemCount: item.waresCount,
|
||||||
|
itemUnit: item.wares.unit,
|
||||||
|
itemPrice: item.wares.price,
|
||||||
|
repairIds: this.formData.repairId,
|
||||||
|
repairNames: this.formData.repairName,
|
||||||
|
saleId: this.formData.adviserId,
|
||||||
|
saleName: this.formData.adviserName,
|
||||||
|
itemDiscount: item.itemDiscount,
|
||||||
|
itemMoney: item.wares.price * item.waresCount * (item.itemDiscount / 10),
|
||||||
|
partId: item.waresId,
|
||||||
|
remark: item.remark
|
||||||
}
|
}
|
||||||
|
})]
|
||||||
|
console.log(this.formData)
|
||||||
|
await auditTicketWares(this.formData)
|
||||||
|
this.dialogVisible = false
|
||||||
|
this.$modal.msgSuccess("审核成功")
|
||||||
|
this.$emit('success')
|
||||||
|
}catch {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
/** 鼠标移入cell */
|
||||||
|
handleCellEnter(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (row.id && this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.add('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 鼠标移出cell */
|
||||||
|
handleCellLeave(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (row.id && this.editProp.includes(property)) {
|
||||||
|
cell.querySelector('.item__txt').classList.remove('item__txt--hover')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 点击cell */
|
||||||
|
handleCellClick(row, column, cell, event) {
|
||||||
|
const property = column.property
|
||||||
|
if (this.editProp.includes(property)) {
|
||||||
|
if (!row.id || property !== 'goods') {
|
||||||
|
// 保存cell
|
||||||
|
this.saveCellClick(row, cell)
|
||||||
|
cell.querySelector('.item__txt').style.display = 'none'
|
||||||
|
cell.querySelector('.item__input').style.display = 'inline'
|
||||||
|
cell.querySelector('input').focus()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 取消编辑状态 */
|
||||||
|
cancelEditable(cell) {
|
||||||
|
cell.querySelector('.item__txt').style.display = 'inline'
|
||||||
|
cell.querySelector('.item__input').style.display = 'none'
|
||||||
|
},
|
||||||
|
/** 保存进入编辑的cell */
|
||||||
|
saveCellClick(row, cell) {
|
||||||
|
const id = row.id
|
||||||
|
if (this.clickCellMap[id] !== undefined) {
|
||||||
|
if (!this.clickCellMap[id].includes(cell)) {
|
||||||
|
this.clickCellMap[id].push(cell)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.clickCellMap[id] = [cell]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 保存数据 */
|
||||||
|
save(row) {
|
||||||
|
if (row.itemDiscount <= 0 || row.itemDiscount > 10){
|
||||||
|
row.itemDiscount = 10
|
||||||
|
this.$modal.msgError("折扣只能是1-10")
|
||||||
|
}
|
||||||
|
const id = row.id
|
||||||
|
// 取消本行所有cell的编辑状态
|
||||||
|
this.clickCellMap[id].forEach(cell => {
|
||||||
|
this.cancelEditable(cell)
|
||||||
|
})
|
||||||
|
this.clickCellMap[id] = []
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -242,4 +359,36 @@ export default {
|
|||||||
.box-card {
|
.box-card {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
.item {
|
||||||
|
.item__input {
|
||||||
|
display: none;
|
||||||
|
width: 100px;
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__inner {
|
||||||
|
height: 24px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 调整elementUI中样式 如果不需要调整请忽略 */
|
||||||
|
.el-input__suffix {
|
||||||
|
i {
|
||||||
|
font-size: 12px !important;
|
||||||
|
line-height: 26px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt {
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
width: 100px;
|
||||||
|
line-height: 24px;
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item__txt--hover {
|
||||||
|
border: 1px solid #dddddd;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -28,7 +28,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
activeTab: 'unFinish',
|
activeTab: 'unFinish',
|
||||||
userRole: -1,
|
userRole: "",
|
||||||
exportRole:[3, 4]
|
exportRole:[3, 4]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -187,6 +187,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-button type="primary" size="mini" @click="handleAddWares">新增配件</el-button>
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getWaresList"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getWaresList"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-table ref="multipleTable" @selection-change="handleSelectionChange" v-loading="loading" :data="partList" :stripe="true" :show-overflow-tooltip="true" @row-click="handleSelect">
|
<el-table ref="multipleTable" @selection-change="handleSelectionChange" v-loading="loading" :data="partList" :stripe="true" :show-overflow-tooltip="true" @row-click="handleSelect">
|
||||||
@ -201,6 +202,55 @@
|
|||||||
<el-button @click="chooseWaresVisible = false">取 消</el-button>
|
<el-button @click="chooseWaresVisible = false">取 消</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
|
<el-dialog title="新增配件" :visible.sync="addWaresVisible" width="60%" v-dialogDrag append-to-body>
|
||||||
|
<el-form :model="waresFormData" ref="waresFormRef" :rules="waresRules" :inline="true" label-width="10rem" v-loading="wareFormLoading">
|
||||||
|
<el-row :gutter="2">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="名称" prop="name">
|
||||||
|
<el-input v-model="waresFormData.name" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="规格" prop="model">
|
||||||
|
<el-input v-model="waresFormData.model" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="2">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="价格" prop="price">
|
||||||
|
<el-input-number v-model="waresFormData.price" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="所属分类" prop="type">
|
||||||
|
<TreeSelect
|
||||||
|
style="width: 20rem"
|
||||||
|
v-model="waresFormData.type"
|
||||||
|
:options="baseTypeTree"
|
||||||
|
:normalizer="normalizer"
|
||||||
|
placeholder="请选择所属分类"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="2">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计量单位" prop="unit">
|
||||||
|
<el-select v-model="waresFormData.unit" placeholder="请选择单位">
|
||||||
|
<el-option v-for="dict in this.getDictDatas(DICT_TYPE.REPAIR_UNIT)"
|
||||||
|
:key="dict.value" :label="dict.label" :value="dict.value"/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="doAddWares">确 定</el-button>
|
||||||
|
<el-button @click="addWaresVisible = false">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -209,11 +259,14 @@ import TicketItem from "@/views/repair/tickets/Components/TicketItem.vue";
|
|||||||
import {getWaresPage} from "@/api/repair/wares";
|
import {getWaresPage} from "@/api/repair/wares";
|
||||||
import {updateTicketWares} from "@/api/repair/tickets/TicketWares";
|
import {updateTicketWares} from "@/api/repair/tickets/TicketWares";
|
||||||
import {createUniqueCodeByHead} from "@/utils/createUniqueCode";
|
import {createUniqueCodeByHead} from "@/utils/createUniqueCode";
|
||||||
|
import {createWares} from "@/api/repair/wares";
|
||||||
|
import TreeSelect from "@riophae/vue-treeselect";
|
||||||
|
import * as BaseTypeApi from "@/api/base/type";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
// 工单配件操作
|
// 工单配件操作
|
||||||
name: "TWOperate",
|
name: "TWOperate",
|
||||||
components: {TicketItem},
|
components: {TreeSelect, TicketItem},
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
@ -243,10 +296,39 @@ export default {
|
|||||||
remark: null,
|
remark: null,
|
||||||
adviserId: null,
|
adviserId: null,
|
||||||
adviserName: null
|
adviserName: null
|
||||||
}
|
},
|
||||||
|
addWaresVisible: false,
|
||||||
|
waresFormData:{
|
||||||
|
name: null,
|
||||||
|
model: null,
|
||||||
|
price: null,
|
||||||
|
type: null,
|
||||||
|
unit: null,
|
||||||
|
},
|
||||||
|
waresRules:{
|
||||||
|
name: [{required: true, message: '名称不能为空', trigger: 'blur'}],
|
||||||
|
model: [{required: true, message: '规格不能为空', trigger: 'blur'}],
|
||||||
|
price: [{required: true, message: '价格不能为空', trigger: 'blur'}],
|
||||||
|
type: [{required: true, message: '所属分类不能为空', trigger: 'blur'}],
|
||||||
|
unit: [{required: true, message: '计量单位不能为空', trigger: 'blur'}],
|
||||||
|
},
|
||||||
|
wareFormLoading: false,
|
||||||
|
//类型树
|
||||||
|
baseTypeTree: [],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
|
/** 转换仓库数据结构 */
|
||||||
|
normalizer(node) {
|
||||||
|
if (node.children && !node.children.length) {
|
||||||
|
delete node.children;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
id: node.id,
|
||||||
|
label: node.name,
|
||||||
|
children: node.children
|
||||||
|
};
|
||||||
|
},
|
||||||
async open(row){
|
async open(row){
|
||||||
this.reset()
|
this.reset()
|
||||||
if (row){
|
if (row){
|
||||||
@ -408,6 +490,48 @@ export default {
|
|||||||
})
|
})
|
||||||
this.clickCellMap[id] = []
|
this.clickCellMap[id] = []
|
||||||
},
|
},
|
||||||
|
handleAddWares(){
|
||||||
|
this.waresFormData = {
|
||||||
|
name: null,
|
||||||
|
model: null,
|
||||||
|
price: null,
|
||||||
|
type: null,
|
||||||
|
unit: null,
|
||||||
|
}
|
||||||
|
this.addWaresVisible = true
|
||||||
|
this.getBaseTypeTree()
|
||||||
|
},
|
||||||
|
async doAddWares(){
|
||||||
|
try{
|
||||||
|
this.wareFormLoading = true
|
||||||
|
await this.$refs.waresFormRef.validate()
|
||||||
|
this.waresFormData = {
|
||||||
|
...this.waresFormData,
|
||||||
|
miniStock: 0,
|
||||||
|
maxStock: 0,
|
||||||
|
stock: 0,
|
||||||
|
status: '01',
|
||||||
|
purPrice: 0,
|
||||||
|
}
|
||||||
|
await createWares(this.waresFormData)
|
||||||
|
this.addWaresVisible = false
|
||||||
|
this.$modal.msgSuccess("新增成功")
|
||||||
|
await this.getWaresList()
|
||||||
|
}finally {
|
||||||
|
this.wareFormLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 获得配置类型树 */
|
||||||
|
async getBaseTypeTree() {
|
||||||
|
this.baseTypeTree = [];
|
||||||
|
let param = {
|
||||||
|
type: '02'
|
||||||
|
}
|
||||||
|
const res = await BaseTypeApi.getBaseTypeList(param);
|
||||||
|
const root = {id: 0, name: '顶级配置类型', children: []};
|
||||||
|
root.children = this.handleTree(res.data, 'id', 'parentId', "children", "0")
|
||||||
|
this.baseTypeTree.push(root)
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -186,7 +186,6 @@ export default {
|
|||||||
try {
|
try {
|
||||||
this.info = row
|
this.info = row
|
||||||
this.loading = true
|
this.loading = true
|
||||||
console.log(row.isLeads)
|
|
||||||
if (!row.isLeads) {
|
if (!row.isLeads) {
|
||||||
const res = await listByTicketId(row.id)
|
const res = await listByTicketId(row.id)
|
||||||
this.workerList = res.data
|
this.workerList = res.data
|
||||||
|
Loading…
Reference in New Issue
Block a user