Merge branch 'master' into zyj

# Conflicts:
#	src/views/order/components/billOfLading.vue
pull/17/head
zhangyouji 2 years ago
commit c7f2b72a55
  1. 2
      package.json
  2. 82
      src/permission.js
  3. 24
      src/views/order/components/billOfLading.vue
  4. 184
      src/views/order/components/confirmSubmit.vue
  5. 11
      src/views/order/index.vue

@ -5,7 +5,7 @@
"author": "Pan <panfree23@gmail.com>", "author": "Pan <panfree23@gmail.com>",
"scripts": { "scripts": {
"dev": "vue-cli-service serve", "dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build" "build": "vue-cli-service build"
}, },
"dependencies": { "dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1", "@amap/amap-jsapi-loader": "^1.0.1",

@ -1,79 +1,79 @@
import router from "./router"; import router from './router'
import store from "./store"; import store from './store'
import NProgress from "nprogress"; // progress bar import NProgress from 'nprogress' // progress bar
import "nprogress/nprogress.css"; // progress bar style import 'nprogress/nprogress.css' // progress bar style
import getPageTitle from "@/utils/get-page-title"; import getPageTitle from '@/utils/get-page-title'
import Layout from "@/layout"; import Layout from '@/layout'
import serve from "api/login.js"; import serve from 'api/login.js'
NProgress.configure({ showSpinner: false }); // NProgress Configuration NProgress.configure({ showSpinner: false }) // NProgress Configuration
const whiteList = ["/login"]; // no redirect whitelist const whiteList = ['/login'] // no redirect whitelist
router.beforeEach(async (to, from, next) => { router.beforeEach(async (to, from, next) => {
NProgress.start(); NProgress.start()
document.title = getPageTitle(to.meta.title); document.title = getPageTitle(to.meta.title)
const hasToken = localStorage.getItem("businessToken"); const hasToken = localStorage.getItem('businessToken')
if (hasToken) { if (hasToken) {
if (to.path === "/login") { if (to.path === '/login') {
next({ path: "/" }); next({ path: '/' })
NProgress.done(); NProgress.done()
} else { } else {
const hasAuth = store.getters.auth && store.getters.auth.length; const hasAuth = store.getters.auth && store.getters.auth.length
if (hasAuth) { if (hasAuth) {
next(); next()
} else { } else {
try { try {
// let infoRes = await serve.getUserInfo(); // let infoRes = await serve.getUserInfo();
// infoRes.data.authList = [1]; // infoRes.data.authList = [1];
let infoRes = await serve.info(); let infoRes = await serve.info()
// infoRes.data.authList = infoRes.authList; // infoRes.data.authList = infoRes.authList;
store.dispatch("user/info", infoRes.data); store.dispatch('user/info', infoRes.data)
let routerRes = await serve.getCustomerRouters(); let routerRes = await serve.getCustomerRouters()
let realRouter = filterAsyncRouter(routerRes.data); let realRouter = filterAsyncRouter(routerRes.data)
store.dispatch("permission/generateRoutes", realRouter); store.dispatch('permission/generateRoutes', realRouter)
router.addRoutes(realRouter); router.addRoutes(realRouter)
next({ ...to, replace: true }); next({ ...to, replace: true })
} catch (err) { } catch (err) {
console.log("catch"); console.log('catch')
next("/login"); // next("/login");
NProgress.done(); NProgress.done()
} }
} }
} }
} else { } else {
if (whiteList.includes(to.path)) { if (whiteList.includes(to.path)) {
next(); next()
} else { } else {
next("/login"); next('/login')
NProgress.done(); NProgress.done()
} }
} }
}); })
router.afterEach(() => { router.afterEach(() => {
NProgress.done(); NProgress.done()
}); })
function filterAsyncRouter(routers) { function filterAsyncRouter(routers) {
return routers.map((route) => { return routers.map(route => {
if (route.component) { if (route.component) {
if (route.component === "Layout") { if (route.component === 'Layout') {
route.component = Layout; route.component = Layout
} else { } else {
route.component = lazyLoad(route.component); route.component = lazyLoad(route.component)
} }
} }
if (route.children && route.children.length) { if (route.children && route.children.length) {
route.children = filterAsyncRouter(route.children); route.children = filterAsyncRouter(route.children)
} }
return route; return route
}); })
} }
function lazyLoad(path) { function lazyLoad(path) {
return (resolve) => require([`@/views/${path}`], resolve); return resolve => require([`@/views/${path}`], resolve)
} }

@ -11,9 +11,9 @@
</el-form-item> </el-form-item>
</div> </div>
<el-form-item label="订单状态"> <el-form-item label="订单状态">
<el-tag effect="dark" :type="orderTagType(billData.orderInfo.orderStatus).orderType"> <el-tag effect="dark" :type="orderTagType(billData.orderInfo.orderStatus).orderType">{{
{{ orderTagType(billData.orderInfo.orderStatus).orderLabel }} orderTagType(billData.orderInfo.orderStatus).orderLabel
</el-tag> }}</el-tag>
</el-form-item> </el-form-item>
</div> </div>
<div> <div>
@ -127,9 +127,8 @@
:disabled="item.deliveryStatus !== 'PLATENUM_LOCKED' && item.deliveryStatus !== 'PLATENUM_SUCCESS'" :disabled="item.deliveryStatus !== 'PLATENUM_LOCKED' && item.deliveryStatus !== 'PLATENUM_SUCCESS'"
@click="billSubmit(item, index)" @click="billSubmit(item, index)"
:type="orderTagType(item.deliveryStatus).type1" :type="orderTagType(item.deliveryStatus).type1"
>{{ orderTagType(item.deliveryStatus).info }}</el-button
> >
{{ orderTagType(item.deliveryStatus).info }}
</el-button>
</div> </div>
</div> </div>
</div> </div>
@ -194,6 +193,7 @@
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="dialogDelivery = false"> </el-button> <el-button @click="dialogDelivery = false"> </el-button>
<el-button type="primary" @click="billdelivery()"> </el-button> <el-button type="primary" @click="billdelivery()"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
@ -359,6 +359,20 @@ export default {
created() {}, created() {},
methods: { methods: {
billdelivery() { billdelivery() {
let percentage103 = (this.billAddData.preDeliveryQuantity * 10000 * 1.03) / 10000
if (this.deliveryQuantity > percentage103) {
this.$confirm('实际提货量超出预约提货量103%, 是否确认?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.realBilldelivery()
})
return
}
this.realBilldelivery()
},
realBilldelivery() {
this.billAddData.deliveryStatus = 'COMPLETE' this.billAddData.deliveryStatus = 'COMPLETE'
this.billAddData.accDeliveryQuantity = this.deliveryQuantity this.billAddData.accDeliveryQuantity = this.deliveryQuantity
order.update(this.billAddData).then(res => { order.update(this.billAddData).then(res => {

@ -30,7 +30,9 @@
</li> </li>
</ul> </ul>
<el-descriptions style="width: 50%; margin: 0 auto" direction="vertical" :column="3" border> <el-descriptions style="width: 50%; margin: 0 auto" direction="vertical" :column="3" border>
<el-descriptions-item label="价格">{{ controlWindows.addInfo.salePrice }}</el-descriptions-item> <el-descriptions-item label="价格"
>{{ controlWindows.addInfo.salePrice }} /{{ controlWindows.addInfo.productMeasurement }}</el-descriptions-item
>
<el-descriptions-item label="订单提货量"> <el-descriptions-item label="订单提货量">
{{ controlWindows.addInfo.preQuantity | toNumberFixed }} {{ controlWindows.addInfo.preQuantity | toNumberFixed }}
{{ controlWindows.addInfo.productMeasurement }} {{ controlWindows.addInfo.productMeasurement }}
@ -44,27 +46,38 @@
<h4 class="title">订单变更信息</h4> <h4 class="title">订单变更信息</h4>
<el-divider></el-divider> <el-divider></el-divider>
<p class="tip">因炼厂单价发生变化请重新选择策略</p> <p class="tip">因炼厂单价发生变化请重新选择策略</p>
<el-table :data="tableData" border style="width: 70%"> <el-table :data="tableData" border style="width: 75%">
<el-table-column prop="date" label="" width="70px"> <el-table-column prop="date" label="" width="55px">
<template slot-scope="{ $index, row }"> <template slot-scope="{ $index, row }">
<el-checkbox v-model="row.isChecked" @change="val => selectPolicy($index, val)"></el-checkbox> <el-checkbox v-model="row.isChecked" @change="val => selectPolicy($index, val)"></el-checkbox>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="type" label="策略类型"> </el-table-column> <el-table-column prop="type" label="策略类型"> </el-table-column>
<el-table-column label="订单提货量"> <el-table-column label="订单提货量" width="145px">
<template slot-scope="{ row }"> {{ row.preQuantity | toNumberFixed }}{{ controlWindows.addInfo.productMeasurement }} </template> <template slot-scope="{ row }">
<el-input
v-checkNum
v-if="row.type === '自定义提货量'"
v-model="row.preQuantity"
placeholder="提货数量"
@change="val => changePreQuantity(row, val)"
>
<template slot="append">{{ controlWindows.addInfo.productMeasurement }}</template>
</el-input>
<p v-else>{{ row.preQuantity }}{{ controlWindows.addInfo.productMeasurement }}</p>
</template>
</el-table-column> </el-table-column>
<el-table-column label="销售价格"> <el-table-column label="销售价格">
<template slot-scope="{ row }"> {{ row.salePrice }} </template> <template slot-scope="{ row }"> {{ row.salePrice }} /{{ controlWindows.addInfo.productMeasurement }} </template>
</el-table-column> </el-table-column>
<el-table-column label="销售总金额"> <el-table-column label="销售总金额">
<template slot-scope="{ row }"> {{ row.preAmount | toNumberFixed }} </template> <template slot-scope="{ row }"> {{ row.preAmount }} </template>
</el-table-column> </el-table-column>
<el-table-column label="成本价格"> <el-table-column label="成本价格">
<template slot-scope="{ row }"> {{ row.floorPrice }} </template> <template slot-scope="{ row }"> {{ row.floorPrice }} /{{ controlWindows.addInfo.productMeasurement }} </template>
</el-table-column> </el-table-column>
<el-table-column label="成本总金额"> <el-table-column label="成本总金额">
<template slot-scope="{ row }"> {{ row.floorPrice * row.preQuantity | toNumberFixed }} </template> <template slot-scope="{ row }"> {{ row.preCostAmount }} </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</template> </template>
@ -84,30 +97,37 @@ export default {
}, },
data() { data() {
return { return {
newCostPrice: '', // newCostPrice: '',
newSalePrice: '', // newSalePrice: '',
undergoChanges: false, undergoChanges: false,
tableData: [ tableData: [
{ {
isChecked: false, isChecked: false,
type: '原策略', type: '原策略',
salePrice: 100, salePrice: '',
preQuantity: 100, preQuantity: '',
preAmount: 10000 preAmount: ''
}, },
{ {
isChecked: false, isChecked: false,
type: '以提货量为准', type: '以提货量为准',
salePrice: 100, salePrice: '',
preQuantity: 100, preQuantity: '',
preAmount: 10000 preAmount: ''
}, },
// {
// isChecked: false,
// type: '',
// salePrice: '',
// preQuantity: '',
// preAmount: ''
// },
{ {
isChecked: false, isChecked: false,
type: '以订单金额为准', type: '自定义提货量',
salePrice: 100, salePrice: '',
preQuantity: 100, preQuantity: '',
preAmount: 10000 preAmount: ''
} }
] ]
} }
@ -117,7 +137,7 @@ export default {
if (val) { if (val) {
return Number(val).toFixed(2) return Number(val).toFixed(2)
} else { } else {
return '--' return '- -'
} }
} }
}, },
@ -126,17 +146,25 @@ export default {
let { productId, salePrice, floorPrice } = this.controlWindows.addInfo let { productId, salePrice, floorPrice } = this.controlWindows.addInfo
if (productId) { if (productId) {
serve.getRefineryProduct(productId).then(res => { serve.getRefineryProduct(productId).then(res => {
let data = res.data; let data = res.data
if (data.salePrice2company != salePrice || data.floorPrice != floorPrice) { if (data.salePrice2company != salePrice || data.floorPrice != floorPrice) {
console.log('价格发生变化了捏') this.policyPopulation(data.salePrice2company, data.floorPrice)
// }
this.newSalePrice = data.salePrice2company
this.newCostPrice = data.floorPrice
this.policyPopulation()
} else console.log('芜湖 没变')
}) })
} }
}, },
changePreQuantity(row, val) {
let segment = val.match(/.?\d{0,2}/g)
let realPrice = parseFloat(segment[0] + segment[1])
if (isNaN(realPrice)) {
this.$message.error('数量输入错误,请重新输入')
return
}
let { salePrice, floorPrice } = row
row.preQuantity = realPrice
row.preAmount = this.fixedHandle(salePrice * realPrice)
row.preCostAmount = this.fixedHandle(floorPrice * realPrice)
},
selectPolicy(index, val) { selectPolicy(index, val) {
if (val) { if (val) {
this.tableData.map(item => (item.isChecked = false)) this.tableData.map(item => (item.isChecked = false))
@ -144,32 +172,78 @@ export default {
} }
}, },
// //
policyPopulation() { policyPopulation(newSalePrice, newCostPrice) {
let { salePrice, floorPrice, preQuantity, preAmount } = this.controlWindows.addInfo let { salePrice, floorPrice, preQuantity, preAmount } = this.controlWindows.addInfo
// console.log(salePrice, preQuantity, preAmount) if (salePrice && floorPrice && preQuantity && preAmount) {
if ((salePrice, preQuantity, preAmount)) { let strategyArr = [
// //
Object.assign(this.tableData[0], { salePrice: salePrice.toFixed(2), () => {
floorPrice: floorPrice.toFixed(2), return { salePrice, floorPrice, preQuantity, preAmount, preCostAmount: floorPrice * preQuantity }
preQuantity: preQuantity.toFixed(2), },
preAmount: preAmount.toFixed(2) }) //
// () => {
Object.assign(this.tableData[1], { let _salePrice = newSalePrice
salePrice: (this.newSalePrice).toFixed(2), let _floorPrice = newCostPrice
floorPrice: (this.newCostPrice).toFixed(2), return {
preQuantity: preQuantity.toFixed(2), salePrice: _salePrice,
preAmount: (+this.newSalePrice * +preQuantity).toFixed(2) floorPrice: _floorPrice,
}) preQuantity,
// preAmount: _salePrice * preQuantity,
Object.assign(this.tableData[2], { preCostAmount: _floorPrice * preQuantity
salePrice: (this.newSalePrice).toFixed(2), }
floorPrice: (this.newCostPrice).toFixed(2), },
preQuantity: (+preAmount / +this.newSalePrice).toFixed(2), // //
preAmount: preAmount.toFixed(2) // () => {
// let _salePrice = newSalePrice
// let _floorPrice = newCostPrice
// return {
// salePrice: _salePrice,
// floorPrice: _floorPrice,
// preQuantity: preAmount / _salePrice,
// preAmount,
// preCostAmount: _floorPrice * this.fixedHandle(preAmount / _salePrice)
// }
// },
//
() => {
return {
salePrice: newSalePrice,
floorPrice: newCostPrice,
preQuantity: '',
preAmount: '',
preCostAmount: ''
}
}
]
strategyArr.forEach((item, index) => {
let originData = this.tableData[index]
let data = item()
if (originData.type === '自定义提货量') {
Object.assign(originData, data)
return
}
for (let key in data) {
data[key] = this.fixedHandle(data[key])
}
Object.assign(originData, data)
}) })
this.undergoChanges = true this.undergoChanges = true
} }
}, },
fixedHandle(val) {
val = parseFloat(val)
if (!isNaN(val)) {
let fixedLength4 = val.toFixed(4)
let length = fixedLength4.length
let fixedLength3 = fixedLength4.slice(0, length - 1)
fixedLength3 *= 100
fixedLength3 = Math.round(fixedLength3)
fixedLength3 /= 100
let fixedLength2 = fixedLength3.toFixed(2)
return fixedLength2
}
return 0
},
submit() { submit() {
if (this.undergoChanges) { if (this.undergoChanges) {
let targetPolicy = this.tableData.filter(item => item.isChecked) let targetPolicy = this.tableData.filter(item => item.isChecked)
@ -177,6 +251,11 @@ export default {
this.$message.warning('炼厂单价发生变化,请选择变更策略') this.$message.warning('炼厂单价发生变化,请选择变更策略')
return return
} }
let target = targetPolicy[0]
if (target.type === '自定义提货量' && target.preQuantity <= 0) {
this.$message.warning('请输入提货数量')
return
}
serve.orderSuccess({ id: this.controlWindows.addInfo.id, ...targetPolicy[0] }).then(res => { serve.orderSuccess({ id: this.controlWindows.addInfo.id, ...targetPolicy[0] }).then(res => {
if (res.code == 20000) { if (res.code == 20000) {
this.$message.success(res.msg) this.$message.success(res.msg)
@ -207,11 +286,12 @@ export default {
.el-drawer__header { .el-drawer__header {
margin-bottom: 0; margin-bottom: 0;
} }
.el-input-group__append {
padding: 0 7px;
}
} }
.confirm-submit { .confirm-submit {
padding: 0 30px; padding: 0 30px;
.title {
}
> ul { > ul {
display: flex; display: flex;
margin: 0 auto 30px; margin: 0 auto 30px;

@ -116,6 +116,9 @@
<el-link slot="reference" type="primary" :underline="false">订单锁定</el-link> <el-link slot="reference" type="primary" :underline="false">订单锁定</el-link>
</el-popconfirm> </el-popconfirm>
<!-- <el-popconfirm v-if="row.orderStatus == 'ORDER_LOCKED'" title="是否确认下单?" icon-color="red" @confirm="confirmSubmit(row)">
</el-popconfirm> -->
<el-link v-if="row.orderStatus == 'ORDER_LOCKED'" type="primary" :underline="false" @click="confirmSubmit(row)">下单确认</el-link> <el-link v-if="row.orderStatus == 'ORDER_LOCKED'" type="primary" :underline="false" @click="confirmSubmit(row)">下单确认</el-link>
<el-popconfirm <el-popconfirm
@ -395,6 +398,14 @@ export default {
confirmSubmit(row) { confirmSubmit(row) {
this.controlWindows.addInfo = row this.controlWindows.addInfo = row
this.controlWindows.confirmSubmit = true this.controlWindows.confirmSubmit = true
// order.orderSuccess({ id: row.id }).then(res => {
// if (res.code == 20000) {
// this.$message.success(res.msg)
// // this.closeWindow()
// this.getByPage()
// }
// })
}, },
// //
switchTrigger(val, row) { switchTrigger(val, row) {

Loading…
Cancel
Save