采购单、入库
This commit is contained in:
parent
d7c5f60db8
commit
9bc739b7af
247
components/repairSoCard.vue
Normal file
247
components/repairSoCard.vue
Normal file
@ -0,0 +1,247 @@
|
|||||||
|
<template>
|
||||||
|
<view class="orderCard">
|
||||||
|
<view class="order-top">
|
||||||
|
<view class="orderNo">
|
||||||
|
采购单号:{{ order.soNo }}
|
||||||
|
</view>
|
||||||
|
<!-- <view :style="{ color: getFlagColor(order.flag) }" class="flag">-->
|
||||||
|
<!-- {{ order.flagStr }}-->
|
||||||
|
<!-- </view>-->
|
||||||
|
</view>
|
||||||
|
<view class="order-body">
|
||||||
|
<view class="baseInfo">
|
||||||
|
<view>
|
||||||
|
数量:{{ order.itemCount }}
|
||||||
|
</view>
|
||||||
|
<view v-if="order.totalPrice">
|
||||||
|
金额:{{ order.totalPrice }}
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
状态:{{ soStatusText }}
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
采购员:{{ order.userName }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="footer">
|
||||||
|
<view @click="gotoDetail" class="btn pg" style="margin-right: 40rpx">
|
||||||
|
<!-- 在什么都不能操作的情况下,可以查看详情-->
|
||||||
|
查看入库单
|
||||||
|
</view>
|
||||||
|
<view @click="gotoDetail" class="btn pg">
|
||||||
|
<!-- 在什么都不能操作的情况下,可以查看详情-->
|
||||||
|
入库
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
getUserInfo,
|
||||||
|
getStrData
|
||||||
|
} from '@/utils/auth';
|
||||||
|
import request from '@/utils/request';
|
||||||
|
import {getDictTextByCodeAndValue} from "@/utils/utils";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "repairSoCard",
|
||||||
|
props: {
|
||||||
|
order: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
// projectName() {
|
||||||
|
// if (this.order && this.order.projectList && this.order.projectList.length > 0) {
|
||||||
|
// return this.order.projectList.map(m => m.name).join(',')
|
||||||
|
// }
|
||||||
|
// return ''
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
soStatusText:''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getDictTextByCodeAndValue(this.order.soStatus); // 组件加载时调用方法
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getDictTextByCodeAndValue(soStatus) {
|
||||||
|
getDictTextByCodeAndValue('repair_so_status', soStatus)
|
||||||
|
.then(value => {
|
||||||
|
this.soStatusText = value; // 存储到 data 中
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
this.soStatusText = "未知";
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 查看详情
|
||||||
|
*/
|
||||||
|
gotoDetail() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages-warehouse/inOutWarehouse/part?soId=' + this.order.id
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 项目派工
|
||||||
|
*/
|
||||||
|
projectDis() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages-order/choosePeople/choosePeople?id=' + this.order.id
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getStatus() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.orderCard {
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||||
|
border-left: 4rpx solid #FFB323;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
margin: 15rpx 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-top {
|
||||||
|
padding: 20rpx 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
border-bottom: 1px solid #F3F5F7;
|
||||||
|
|
||||||
|
.orderNo {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #858BA0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flag {
|
||||||
|
font-family: PingFang SC, PingFang SC;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-body {
|
||||||
|
.carNum {
|
||||||
|
margin: 20rpx 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.carModel {
|
||||||
|
margin: 20rpx 0;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #858BA0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.project {
|
||||||
|
padding: 20rpx 10rpx;
|
||||||
|
background: #F2F2F7;
|
||||||
|
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.project-left {
|
||||||
|
flex: 1;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.project-right {
|
||||||
|
padding: 0 16rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
border-left: 1rpx solid #DDDDDD;
|
||||||
|
|
||||||
|
.rightIcon {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rightText {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #17DBB1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #0174F6;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
column-gap: 8rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titleIcon {
|
||||||
|
width: 24rpx;
|
||||||
|
height: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desc {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #333333;
|
||||||
|
margin-top: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.baseInfo {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #858BA0;
|
||||||
|
//padding-bottom: 10rpx;
|
||||||
|
|
||||||
|
& > view {
|
||||||
|
margin: 30rpx 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-end;
|
||||||
|
column-gap: 10rpx;
|
||||||
|
padding-bottom: 30rpx;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
width: 172rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
border-radius: 30rpx 30rpx 30rpx 30rpx;
|
||||||
|
border: 2rpx solid #0174F6;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #0174F6;
|
||||||
|
|
||||||
|
&.qc {
|
||||||
|
background: #0174F6;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<view class="header">
|
<view class="header" v-if="!isRepairWarehouse">
|
||||||
<view class="searchBox">
|
<view class="searchBox">
|
||||||
<input class="searchInput" type="text" v-model="searchText" placeholder="工单号、车牌号、手机号、客户姓名" placeholder-style="font-size: 28rpx">
|
<input class="searchInput" type="text" v-model="searchText" placeholder="工单号、车牌号、手机号、客户姓名" placeholder-style="font-size: 28rpx">
|
||||||
<text class="searchBtn" @click="onRefresherrefresh">搜索</text>
|
<text class="searchBtn" @click="onRefresherrefresh">搜索</text>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
<view v-if="activeKey === item.id" class="activeLine"></view>
|
<view v-if="activeKey === item.id" class="activeLine"></view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="orderList">
|
<view class="orderList" v-if="!isRepairWarehouse">
|
||||||
<scroll-view scroll-y="true" style="height: 100%" class="itemContent" @scrolltolower="onReachBottomCus"
|
<scroll-view scroll-y="true" style="height: 100%" class="itemContent" @scrolltolower="onReachBottomCus"
|
||||||
refresher-enabled @refresherrefresh="onRefresherrefresh" :refresher-triggered="isTriggered">
|
refresher-enabled @refresherrefresh="onRefresherrefresh" :refresher-triggered="isTriggered">
|
||||||
<order-card v-for="(item, index) in orderList" :key="index" :order="item" @childEvent="onRefresherrefresh" @startWork="startWork"></order-card>
|
<order-card v-for="(item, index) in orderList" :key="index" :order="item" @childEvent="onRefresherrefresh" @startWork="startWork"></order-card>
|
||||||
@ -24,6 +24,15 @@
|
|||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="orderList" v-else>
|
||||||
|
<scroll-view scroll-y="true" style="height: 100%" class="itemContent" @scrolltolower="onReachBottomCus"
|
||||||
|
refresher-enabled @refresherrefresh="onRefresherrefresh" :refresher-triggered="isTriggered">
|
||||||
|
<repair-so-card v-for="(item, index) in repairSoList" :key="index" :order="item" @childEvent="onRefresherrefresh" @startWork="startWork"></repair-so-card>
|
||||||
|
<view style="text-align: center" v-if="repairSoList.length==0">
|
||||||
|
<image class="" src="@/static/images/nothing.png" ></image>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<tabBarVue msg="2"></tabBarVue>
|
<tabBarVue msg="2"></tabBarVue>
|
||||||
</view>
|
</view>
|
||||||
@ -41,12 +50,14 @@ import {
|
|||||||
getStrData,
|
getStrData,
|
||||||
getTenantId
|
getTenantId
|
||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
|
import RepairSoCard from "@/components/repairSoCard.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
OrderCard,
|
OrderCard,
|
||||||
tabBarVue,
|
tabBarVue,
|
||||||
VNavigationBar
|
VNavigationBar,
|
||||||
|
RepairSoCard
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -56,6 +67,7 @@ export default {
|
|||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
|
isRepairWarehouse : false, //是否是仓库管理员
|
||||||
//下来刷新状态
|
//下来刷新状态
|
||||||
isTriggered:false,
|
isTriggered:false,
|
||||||
imageUrl: '',
|
imageUrl: '',
|
||||||
@ -71,6 +83,7 @@ export default {
|
|||||||
],
|
],
|
||||||
orderList: [
|
orderList: [
|
||||||
],
|
],
|
||||||
|
repairSoList: [],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
@ -81,6 +94,15 @@ export default {
|
|||||||
}else{
|
}else{
|
||||||
//直接取缓存中的用户信息
|
//直接取缓存中的用户信息
|
||||||
this.userInfo = getUserInfo()
|
this.userInfo = getUserInfo()
|
||||||
|
if (this.userInfo.roleCodes.includes("repair_warehouse")){
|
||||||
|
this.tabList = [
|
||||||
|
{
|
||||||
|
id: 0,
|
||||||
|
title: '采购单'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
this.isRepairWarehouse = true
|
||||||
|
}
|
||||||
this.onRefresherrefresh()
|
this.onRefresherrefresh()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -97,7 +119,11 @@ export default {
|
|||||||
//页码+1,调用获取数据的方法获取第二页数据
|
//页码+1,调用获取数据的方法获取第二页数据
|
||||||
this.pageNo++
|
this.pageNo++
|
||||||
//此处调用自己获取数据列表的方法
|
//此处调用自己获取数据列表的方法
|
||||||
this.getOrderList()
|
if (this.isRepairWarehouse) {
|
||||||
|
this.getRepairSoList()
|
||||||
|
}else{
|
||||||
|
this.getOrderList()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* 下拉刷新数据
|
* 下拉刷新数据
|
||||||
@ -106,8 +132,13 @@ export default {
|
|||||||
this.isTriggered = true
|
this.isTriggered = true
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.total = 0
|
this.total = 0
|
||||||
this.orderList = []
|
if (this.isRepairWarehouse) {
|
||||||
this.getOrderList()
|
this.getRepairSoList()
|
||||||
|
this.repairSoList = []
|
||||||
|
}else{
|
||||||
|
this.getOrderList()
|
||||||
|
this.orderList = []
|
||||||
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* 清空
|
* 清空
|
||||||
@ -230,6 +261,33 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* 获取采购单
|
||||||
|
*/
|
||||||
|
getRepairSoList(){
|
||||||
|
const paramsObj = {
|
||||||
|
pageNo: this.pageNo,
|
||||||
|
pageSize: this.pageSize,
|
||||||
|
userId: this.userInfo.id,
|
||||||
|
soType: "01"
|
||||||
|
}
|
||||||
|
request({
|
||||||
|
url: '/admin-api/repair/so/page',
|
||||||
|
method: 'get',
|
||||||
|
params: paramsObj
|
||||||
|
}).then((res) => {
|
||||||
|
|
||||||
|
//判断 如果获取的数据的页码不是第一页,就让之前赋值获取过的数组数据 concat连接 刚获取的第n页数据
|
||||||
|
if (this.pageNo != 1) {
|
||||||
|
this.repairSoList = this.repairSoList.concat(res.data.records)
|
||||||
|
} else {
|
||||||
|
this.repairSoList = res.data.records
|
||||||
|
}
|
||||||
|
//将获取的总条数赋值
|
||||||
|
this.total = res.data.total
|
||||||
|
this.isTriggered = false
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<VNavigationBar background-color="#fff" title="采购单" title-color="#333"></VNavigationBar>
|
<VNavigationBar background-color="#fff" :title="title" title-color="#333"></VNavigationBar>
|
||||||
<view class="listBox">
|
<view class="listBox">
|
||||||
<view class="list">
|
<view class="list">
|
||||||
<view class="formItem">
|
<view class="formItem" v-if="!isInput">
|
||||||
<text class="formLabel">供应商</text>
|
<text class="formLabel">供应商</text>
|
||||||
<input type="text" style="text-align: right" v-model="serviceName" placeholder="请选择供应商"/>
|
<input type="text" style="text-align: right" v-model="serviceName" placeholder="请选择供应商"/>
|
||||||
<view @click="searchService">查询</view>
|
<view @click="searchService">查询</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="formItem">
|
<view class="formItem" v-if="!isInput">
|
||||||
<text class="formLabel">备注</text>
|
<text class="formLabel">备注</text>
|
||||||
<text class="formValue"></text>
|
<text class="formValue"></text>
|
||||||
</view>
|
</view>
|
||||||
<view style="padding-bottom: 60rpx;border-bottom: 1px solid #ddd;" class="formItem">
|
<view style="padding-bottom: 60rpx;border-bottom: 1px solid #ddd;" class="formItem" v-if="!isInput">
|
||||||
<textarea style="height: 50px" auto-height placeholder="请输入备注" v-model="remark" />
|
<textarea style="height: 50px" auto-height placeholder="请输入备注" v-model="remark"/>
|
||||||
</view>
|
</view>
|
||||||
<uni-card v-for="(item, index) in partList" :key="index" :title="item.name" :extra="'上次价格:'+item.purPrice">
|
<uni-card v-for="(item, index) in partList" :key="index" :title="item.name" :extra="'上次价格:'+item.purPrice">
|
||||||
<view class="formItem">
|
<view class="formItem">
|
||||||
@ -30,7 +30,8 @@
|
|||||||
<view class="footer">
|
<view class="footer">
|
||||||
<text class="label"></text>
|
<text class="label"></text>
|
||||||
<text class="repairNum"></text>
|
<text class="repairNum"></text>
|
||||||
<view class="submit" @click="submit">保存</view>
|
<view class="submit" @click="submit" v-if="!isInput">保存</view>
|
||||||
|
<view class="submit" @click="inWare" v-else>入库</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@ -38,52 +39,62 @@
|
|||||||
<script>
|
<script>
|
||||||
import VNavigationBar from "@/components/VNavigationBar.vue";
|
import VNavigationBar from "@/components/VNavigationBar.vue";
|
||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
import {getDictTextByCodeAndValue,createUniqueCodeByHead} from "@/utils/utils";
|
import {getDictTextByCodeAndValue, createUniqueCodeByHead} from "@/utils/utils";
|
||||||
import {getUserInfo,getJSONData} from '@/utils/auth.js'
|
import {getUserInfo, getJSONData} from '@/utils/auth.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {VNavigationBar},
|
components: {VNavigationBar},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
//配件申请单id
|
//配件申请单id
|
||||||
twId:'',
|
twId: '',
|
||||||
//配件列表
|
//配件列表
|
||||||
wares:[],
|
wares: [],
|
||||||
//代采购配件列表
|
//代采购配件列表
|
||||||
partList:[],
|
partList: [],
|
||||||
//01零配件、02退配件
|
//01零配件、02退配件
|
||||||
type:true,
|
type: true,
|
||||||
//父组件传入的数据
|
//父组件传入的数据
|
||||||
formData:{},
|
formData: {},
|
||||||
repairList: [],
|
repairList: [],
|
||||||
remark:"",
|
isInput: false, //是否入库
|
||||||
|
remark: "",
|
||||||
|
title: '采购单',
|
||||||
selectedRepairList: [
|
selectedRepairList: [
|
||||||
{name: '炫驰全合成机油S7 4L/ALL', num: 3, unit: '桶', id: 3}
|
{name: '炫驰全合成机油S7 4L/ALL', num: 3, unit: '桶', id: 3}
|
||||||
],
|
],
|
||||||
active: '',
|
active: '',
|
||||||
//供应商名称
|
//供应商名称
|
||||||
serviceName:"",
|
serviceName: "",
|
||||||
//供应商id
|
//供应商id
|
||||||
serviceId:"",
|
serviceId: "",
|
||||||
|
soId: "",
|
||||||
|
soiIds: []
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad(data) {
|
||||||
if (getJSONData("applyWaresForm")){
|
if (data.soId) {
|
||||||
this.formData = getJSONData("applyWaresForm")
|
this.soId = data.soId
|
||||||
this.wares = this.formData.items
|
this.isInput = true
|
||||||
|
this.title = '配件入库'
|
||||||
|
this.getSoiId()
|
||||||
|
}else {
|
||||||
|
if (getJSONData("applyWaresForm")) {
|
||||||
|
this.formData = getJSONData("applyWaresForm")
|
||||||
|
this.wares = this.formData.items
|
||||||
|
this.init()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.init()
|
|
||||||
},
|
|
||||||
|
|
||||||
computed: {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* 查询供应商
|
* 查询供应商
|
||||||
*/
|
*/
|
||||||
searchService(){
|
searchService() {
|
||||||
if(""==this.serviceName){
|
if ("" == this.serviceName) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '请输入供应商名称!',
|
title: '请输入供应商名称!',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@ -94,18 +105,18 @@ export default {
|
|||||||
request({
|
request({
|
||||||
url: '/admin-api/supplier/baseSupplier/searchList',
|
url: '/admin-api/supplier/baseSupplier/searchList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {name:this.serviceName}
|
params: {name: this.serviceName}
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
if (res.code == 200 && res.data.length>0) {
|
if (res.code == 200 && res.data.length > 0) {
|
||||||
uni.showActionSheet({
|
uni.showActionSheet({
|
||||||
itemList: res.data.map(m => m.name),
|
itemList: res.data.map(m => m.name),
|
||||||
success: ({ tapIndex }) => {
|
success: ({tapIndex}) => {
|
||||||
this.serviceName = res.data[tapIndex].name
|
this.serviceName = res.data[tapIndex].name
|
||||||
this.serviceId = res.data[tapIndex].id
|
this.serviceId = res.data[tapIndex].id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}else{
|
} else {
|
||||||
//未查询到符合条件的供应商
|
//未查询到符合条件的供应商
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '未查询到符合条件的供应商,您可以直接使用,系统将自动保存为新供应商!',
|
title: '未查询到符合条件的供应商,您可以直接使用,系统将自动保存为新供应商!',
|
||||||
@ -118,7 +129,7 @@ export default {
|
|||||||
* 初始化配件数据
|
* 初始化配件数据
|
||||||
*/
|
*/
|
||||||
init() {
|
init() {
|
||||||
this.partList = [...this.wares.map(item =>{
|
this.partList = [...this.wares.map(item => {
|
||||||
return {
|
return {
|
||||||
...item.wares,
|
...item.wares,
|
||||||
count: item.waresCount,
|
count: item.waresCount,
|
||||||
@ -166,12 +177,14 @@ export default {
|
|||||||
soNo: createUniqueCodeByHead("CG"),
|
soNo: createUniqueCodeByHead("CG"),
|
||||||
userId: userInfo.id,
|
userId: userInfo.id,
|
||||||
userName: userInfo.nickname,
|
userName: userInfo.nickname,
|
||||||
itemCount:this.partList.length,
|
itemCount: this.partList.length,
|
||||||
totalPrice:this.partList.reduce((x, y) => {return x + y.totalPrice}, 0),
|
totalPrice: this.partList.reduce((x, y) => {
|
||||||
soStatus:'03',
|
return x + y.totalPrice
|
||||||
remark:this.remark,
|
}, 0),
|
||||||
supplierId:this.serviceId,
|
soStatus: '03',
|
||||||
supplierName:this.serviceName
|
remark: this.remark,
|
||||||
|
supplierId: this.serviceId,
|
||||||
|
supplierName: this.serviceName
|
||||||
}
|
}
|
||||||
data.goodsList = [...this.partList.map(item => {
|
data.goodsList = [...this.partList.map(item => {
|
||||||
return {
|
return {
|
||||||
@ -189,20 +202,80 @@ export default {
|
|||||||
request({
|
request({
|
||||||
url: '/admin-api/repair/so/create',
|
url: '/admin-api/repair/so/create',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data:data
|
data: data
|
||||||
}).then((res)=>{
|
}).then((res) => {
|
||||||
if (res.code == 200){
|
if (res.code == 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '创建成功!',
|
title: '创建成功!',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
setTimeout(()=>{
|
setTimeout(() => {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
},700)
|
}, 700)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getSoiId() {
|
||||||
|
request({
|
||||||
|
url: '/admin-api/repair/so/get',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
id: this.soId
|
||||||
|
}
|
||||||
|
}).then((res) => { // 将 `.then` 移到这里
|
||||||
|
console.log(res)
|
||||||
|
res.data.goodsList.forEach(item => {
|
||||||
|
this.soiIds.push(item.id)
|
||||||
|
})
|
||||||
|
console.log('返回',res.data)
|
||||||
|
|
||||||
|
request({
|
||||||
|
url: '/admin-api/repair/soi/get',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
ids: this.soiIds.join(',')
|
||||||
|
}
|
||||||
|
}).then((res) => { // 同样这里也要移到外层括号后
|
||||||
|
console.log('配件信息', res.data)
|
||||||
|
res.data.map(item => {
|
||||||
|
item.wares = item.repairWares
|
||||||
|
item.waresCount = 0
|
||||||
|
})
|
||||||
|
this.wares = res.data
|
||||||
|
this.init()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 入库
|
||||||
|
*/
|
||||||
|
inWare(){
|
||||||
|
console.log('partList',this.partList)
|
||||||
|
this.partList.forEach(item => {
|
||||||
|
item.inCount = item.count
|
||||||
|
item.id = this.soiIds[0]
|
||||||
|
})
|
||||||
|
request({
|
||||||
|
url: '/admin-api/repair/so/inWare',
|
||||||
|
method: 'post',
|
||||||
|
data: {
|
||||||
|
id: this.soId,
|
||||||
|
soiList: this.partList
|
||||||
|
}
|
||||||
|
}).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
uni.showToast({
|
||||||
|
title: '入库成功!',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
|
uni.navigateBack()
|
||||||
|
}, 700)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -214,17 +287,20 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.listBox {
|
.listBox {
|
||||||
padding: 30 rpx 32 rpx;
|
padding: 30rpx 32rpx;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 0 30rpx;
|
padding: 0 30rpx;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.formItem {
|
.formItem {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
@ -250,6 +326,7 @@ export default {
|
|||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.repairBottom {
|
.repairBottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
Loading…
Reference in New Issue
Block a user