From bd01373e31834fced6fb0484129d842217cb6667 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 06 Jan 2021 19:57:35 +0800
Subject: [PATCH] modify
---
zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html | 235 ++++++++++++++++++++++++++++++++++++++++++++--------------
1 files changed, 177 insertions(+), 58 deletions(-)
diff --git a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
index 8168b3b..fedb760 100644
--- a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
+++ b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
@@ -75,6 +75,43 @@
.arrears {
color: #E6A23C;
}
+
+ .paymethod ul {
+ padding: 0;
+ margin: 0;
+ height: 50px;
+ }
+ .paymethod ul li {
+ padding: 10px;
+ margin: 5px;
+ list-style:none;
+ float: left;
+ display: block;
+ cursor: pointer;
+ position: relative;
+ border: white 1px solid;
+ }
+ .paymethod ul li:hover {
+ border: #409EFF 1px solid;
+ }
+ .paymethod .active {
+ border: #409EFF 1px solid;
+ }
+ .paymethod .active::after {
+ content: '';
+ display: block;
+ height: 0px;
+ width: 0px;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ color:#fff;
+ /**对号大小*/
+ font-size: 10px;
+ line-height: 8px;
+ border: 3px solid;
+ border-color: transparent #4884ff #4884ff transparent;
+ }
</style>
</head>
<body>
@@ -247,51 +284,51 @@
</template>
</el-table-column>
<el-table-column
- label="应付">
+ label="小计">
<template slot-scope="scope">
{{scope.row.zkPrice * scope.row.count }}
</template>
</el-table-column>
- <el-table-column
- label="实付">
- <template slot-scope="scope">
- <el-input @change="calculationTotal(1)" v-model="scope.row.payMoney"></el-input>
- </template>
- </el-table-column>
+<!-- <el-table-column-->
+<!-- label="实付">-->
+<!-- <template slot-scope="scope">-->
+<!-- <el-input @change="calculationTotal(1)" v-model="scope.row.payMoney"></el-input>-->
+<!-- </template>-->
+<!-- </el-table-column>-->
- <el-table-column
- label="支付方式"
- width="130">
- <template slot-scope="scope">
- <el-select @change="changePayMethod(scope.row)" v-model="scope.row.payMethod"
- placeholder="请选择支付方式">
- <el-option
- v-for="item in payMethods"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- :disabled="item.disabled">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
+<!-- <el-table-column-->
+<!-- label="支付方式"-->
+<!-- width="130">-->
+<!-- <template slot-scope="scope">-->
+<!-- <el-select @change="changePayMethod(scope.row)" v-model="scope.row.payMethod"-->
+<!-- placeholder="请选择支付方式">-->
+<!-- <el-option-->
+<!-- v-for="item in payMethods"-->
+<!-- :key="item.value"-->
+<!-- :label="item.label"-->
+<!-- :value="item.value"-->
+<!-- :disabled="item.disabled">-->
+<!-- </el-option>-->
+<!-- </el-select>-->
+<!-- </template>-->
+<!-- </el-table-column>-->
- <el-table-column
- label="会员卡">
- <template slot-scope="scope">
- <el-select :disabled="scope.row.payMethod!='会员卡'" v-model="scope.row.payMethodDetail"
- placeholder="请选择支付卡">
- <el-option
- v-for="item in moneyCards"
- :key="item.id"
- :label="item.showLable"
- :value="item.id">
- </el-option>
- </el-select>
- </template>
- </el-table-column>
+<!-- <el-table-column-->
+<!-- label="会员卡">-->
+<!-- <template slot-scope="scope">-->
+<!-- <el-select :disabled="scope.row.payMethod!='会员卡'" v-model="scope.row.payMethodDetail"-->
+<!-- placeholder="请选择支付卡">-->
+<!-- <el-option-->
+<!-- v-for="item in moneyCards"-->
+<!-- :key="item.id"-->
+<!-- :label="item.showLable"-->
+<!-- :value="item.id">-->
+<!-- </el-option>-->
+<!-- </el-select>-->
+<!-- </template>-->
+<!-- </el-table-column>-->
<el-table-column
prop="address"
label="操作">
@@ -313,8 +350,9 @@
<li>订单总金额:{{order.total}}</li>
- <li v-if="order.arrears>0">订单欠款:<span class="arrears">{{order.arrears}}</span></li>
- <li v-if="order.arrears<0">找零:<span class="arrears">{{order.arrears}}</span></li>
+ <li>整单折扣:<span class="arrears">{{order.total - order.zkTotal}}</span></li>
+<!-- <li v-if="order.arrears>0">订单欠款:<span class="arrears">{{order.arrears}}</span></li>-->
+<!-- <li v-if="order.arrears<0">找零:<span class="arrears">{{order.arrears}}</span></li>-->
</ul>
</div>
<div class="money">
@@ -327,7 +365,8 @@
<el-button type="primary" @click="submitOrder(2)">挂单</el-button>
<el-button type="primary" @click="print()">打印</el-button>
<el-button type="primary" @click="drawer = true">业绩设置</el-button>
- <el-button type="success" @click="confirmSubmit()" class="bigbtn"> 结算</el-button>
+ <!-- <el-button type="success" @click="confirmSubmit()" class="bigbtn"> 结算</el-button>-->
+ <el-button type="success" @click="dialogSettleVisible = true" class="bigbtn">收款</el-button>
</el-col>
</el-row>
@@ -411,6 +450,67 @@
</el-row>
</el-drawer>
+ <el-dialog title="收款" :visible.sync="dialogSettleVisible">
+ <el-row type="flex" align="middle" style="padding: 10px 0;">
+ <el-col :span="5" style="text-align: center;">应收</el-col>
+ <el-col :span="10" style="text-align: center; line-height: 50px;"><span style="color: red;">¥ 80</span></el-col>
+ </el-row>
+
+ <el-row type="flex" align="middle" style="padding: 10px 0;">
+ <el-col :span="5" style="text-align: center;">收款方式</el-col>
+ <el-col class="paymethod" :span="15">
+ <el-row>
+ <ul>
+ <span v-for="(item, index) in payMethods">
+ <el-popover
+ :disabled="item.type != 1"
+ placement="bottom"
+ trigger="click">
+ <el-row><span>选择</span></el-row>
+ <el-tree :data="moneyCards"
+ show-checkbox
+ default-expand-all
+ node-key="id"
+ ref="tree"
+ check-strictly
+ highlight-current
+ :props="defaultProps">
+ </el-tree>
+ <li :class="{active : item.isActive}" slot="reference" @click="payMethodSelect(item, index)">{{item.value}}</li>
+ </el-popover>
+ </span>
+ </ul>
+ </el-row>
+ </el-col>
+ </el-row>
+
+ <el-row type="flex" align="middle" style="padding: 10px 0;">
+ <el-col :span="5" style="text-align: center;">支付金额</el-col>
+ <el-col :span="15">
+ <el-row style="line-height: 50px;">
+ <el-col :span="5" style="text-align: right; padding-right: 10px;">微信支付</el-col>
+ <el-col :span="8"><el-input></el-input></el-col>
+ </el-row>
+ <el-row style="line-height: 50px;">
+ <el-col :span="5" style="text-align: right; padding-right: 10px;">储值卡</el-col>
+ <el-col :span="8"><el-input></el-input></el-col>
+ <el-col :span="5" style="margin-left: 10px;">余额:<span class="arrears">¥ 1000</span></el-col>
+ </el-row>
+ <el-row style="line-height: 50px;">
+ <el-col :span="5" style="text-align: right; padding-right: 10px;">欠款</el-col>
+ <el-col :span="8"><el-input></el-input></el-col>
+ </el-row>
+ </el-col>
+ </el-row>
+
+ <el-row style="text-align: center; margin: 20px 0 10px 0">
+ <el-checkbox>打印小票</el-checkbox>
+ </el-row>
+
+ <el-row style="text-align: center; margin: 10px 0 0 0">
+ <el-button type="primary">确认收款</el-button>
+ </el-row>
+ </el-dialog>
</div>
</body>
@@ -456,24 +556,27 @@
currentVipInfo: {},
vipLoading: false,
payMethods: [{
- value: '现金',
- label: '现金'
+ value: '现金支付',
+ isActive: false
}, {
value: '微信',
- label: '微信'
+ isActive: false
}, {
value: '支付宝',
- label: '支付宝'
+ isActive: false
}, {
value: '银行卡',
- label: '银行卡'
+ isActive: false
}, {
- value: '美团',
- label: '美团'
+ value: '团购',
+ isActive: false
}, {
value: '会员卡',
- label: '会员卡',
- disabled: true,
+ isActive: false,
+ type: 1
+ }, {
+ value: '欠款',
+ isActive: false
},],
achieveList: [],
//会员可用的充值卡
@@ -495,6 +598,11 @@
loading: false,
/******搜索表格数据END********/
+ dialogSettleVisible : true,
+ defaultProps: {
+ children: 'children',
+ label: 'showLable'
+ }
},
@@ -572,7 +680,6 @@
}
});
-
},
methods: {
@@ -604,11 +711,6 @@
item.showLable = item.cardName + "-余额:" + (item.realMoney + item.giftMoney)
});
_this.moneyCards = data.rows;
- //启用会员卡支付方式
- _this.payMethods[5].disabled = false;
- } else {
- //禁用会员卡支付方式
- _this.payMethods[5].disabled = true;
}
}
@@ -776,13 +878,15 @@
_this.achieveList.forEach(achieve => {
for (let i = 0; i < _this.order.items.length; i++) {
let item = _this.order.items[i];
- item.achieveList = [];
+ if (!item.achaeveList){
+ item.achaeveList = [];
+ }
if (item.uuid == achieve.orderItem.uuid) {
let achieveNew = {
beaultId: achieve.saleId,
t1: achieve.achieveMoney
};
- item.achieveList.push(achieveNew);
+ item.achaeveList.push(achieveNew);
break;
}
}
@@ -818,7 +922,13 @@
} else {
_this.$message.success(data.info);
}
- parent.myGrid.serchData();
+ if(parent.myGrid) {
+ parent.myGrid.serchData();
+ }
+
+ if (parent.app) {
+ parent.app.orderQuery();
+ }
}
});
}
@@ -1014,6 +1124,15 @@
},
+ payMethodSelect(item, index) {
+ this.$nextTick(function () {
+ if (item.isActive) {
+ Vue.set(item,'isActive',false);
+ } else {
+ Vue.set(item,'isActive',true);
+ }
+ });
+ }
}
})
--
Gitblit v1.9.1