|  |  |  | 
|---|
|  |  |  | direction: 'rtl', | 
|---|
|  |  |  | //当前登录用户 | 
|---|
|  |  |  | loginUser: {}, | 
|---|
|  |  |  | staffUser:{}, | 
|---|
|  |  |  | //业绩用户列表 | 
|---|
|  |  |  | userList: [], | 
|---|
|  |  |  | order: { | 
|---|
|  |  |  | 
|---|
|  |  |  | created: function () { | 
|---|
|  |  |  | let _this = this; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //获取登录用户信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/getLoginUser', | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.loginUser = data.mapInfo.user; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (id) { | 
|---|
|  |  |  | //加载订单信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/order/findOrderById/' + id, | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.order = data.rows[0]; | 
|---|
|  |  |  | //修改支付金额 | 
|---|
|  |  |  | _this.changeVip(_this.order.vipId); | 
|---|
|  |  |  | let items = _this.order.items; | 
|---|
|  |  |  | let orderPayMoney = 0; | 
|---|
|  |  |  | //设置欠款订单设置欠款金额等于支付金额,非欠款订单设置折扣金额等于支付金额 | 
|---|
|  |  |  | items.forEach(item => { | 
|---|
|  |  |  | if (item.arrears > 0) { | 
|---|
|  |  |  | item.payMoney = item.arrears; | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | item.payMoney = item.zkPrice; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | orderPayMoney += item.payMoney; | 
|---|
|  |  |  | item.uuid = MTools.uuid(); | 
|---|
|  |  |  | //业绩设置 | 
|---|
|  |  |  | _this.achieveList.push({ | 
|---|
|  |  |  | orderItem: item, | 
|---|
|  |  |  | staff: _this.loginUser, | 
|---|
|  |  |  | saleId: _this.loginUser.suId, | 
|---|
|  |  |  | achieveMoney: item.payMoney, | 
|---|
|  |  |  | commission : 0, | 
|---|
|  |  |  | t3 : '现金业绩', | 
|---|
|  |  |  | isShare: false, | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | _this.order.payMoney = orderPayMoney; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | //获取门店信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/shopInfo/findUserShop', | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.order.shopName = data.rows[0].shopName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | _this.initMethod() | 
|---|
|  |  |  | if (vipId) { | 
|---|
|  |  |  | _this.changeVip(vipId); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | }, | 
|---|
|  |  |  |  | 
|---|
|  |  |  | methods: { | 
|---|
|  |  |  | initMethod() { | 
|---|
|  |  |  | let _this = this; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //获取登录用户信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath +  '/admin/getLoginUser', | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.loginUser = data.mapInfo.user; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (id) { | 
|---|
|  |  |  | //加载订单信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/order/findOrderById/' + id, | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.order = data.rows[0]; | 
|---|
|  |  |  | //修改支付金额 | 
|---|
|  |  |  | _this.changeVip(_this.order.vipId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/getUserById?id='+_this.order.staffId, | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.staffUser = data.mapInfo.user; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | let items = _this.order.items; | 
|---|
|  |  |  | let orderPayMoney = 0; | 
|---|
|  |  |  | //设置欠款订单设置欠款金额等于支付金额,非欠款订单设置折扣金额等于支付金额 | 
|---|
|  |  |  | items.forEach(item => { | 
|---|
|  |  |  | if (item.arrears > 0) { | 
|---|
|  |  |  | item.payMoney = item.arrears; | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | item.payMoney = item.zkPrice; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | orderPayMoney += item.payMoney; | 
|---|
|  |  |  | item.uuid = MTools.uuid(); | 
|---|
|  |  |  | //业绩设置 | 
|---|
|  |  |  | _this.achieveList.push({ | 
|---|
|  |  |  | orderItem: item, | 
|---|
|  |  |  | staff: _this.staffUser, | 
|---|
|  |  |  | saleId: _this.staffUser.suId, | 
|---|
|  |  |  | achieveMoney: item.payMoney, | 
|---|
|  |  |  | commission : 0, | 
|---|
|  |  |  | t3 : '现金业绩', | 
|---|
|  |  |  | isShare: false, | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | _this.order.payMoney = orderPayMoney; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | //获取门店信息 | 
|---|
|  |  |  | AjaxProxy.requst({ | 
|---|
|  |  |  | app: _this, | 
|---|
|  |  |  | url: basePath + '/admin/shopInfo/findUserShop', | 
|---|
|  |  |  | callback: function (data) { | 
|---|
|  |  |  | _this.order.shopName = data.rows[0].shopName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //取消订单 | 
|---|
|  |  |  | closeFram() { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | item.count = 1; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //加入业绩 | 
|---|
|  |  |  | this.achieveList.push({ | 
|---|
|  |  |  | orderItem: item, | 
|---|
|  |  |  | staff: this.loginUser, | 
|---|
|  |  |  | saleId: this.loginUser.suId, | 
|---|
|  |  |  | achieveMoney: item.payMoney, | 
|---|
|  |  |  | t3 : '现金业绩', | 
|---|
|  |  |  | commission : 0, | 
|---|
|  |  |  | isShare: false, | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | if (this.staffUser) { | 
|---|
|  |  |  | //加入业绩 | 
|---|
|  |  |  | this.achieveList.push({ | 
|---|
|  |  |  | orderItem: item, | 
|---|
|  |  |  | staff: this.staffUser, | 
|---|
|  |  |  | saleId: this.staffUser.suId, | 
|---|
|  |  |  | achieveMoney: item.payMoney, | 
|---|
|  |  |  | t3: '现金业绩', | 
|---|
|  |  |  | commission: 0, | 
|---|
|  |  |  | isShare: false, | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | //加入业绩 | 
|---|
|  |  |  | this.achieveList.push({ | 
|---|
|  |  |  | orderItem: item, | 
|---|
|  |  |  | staff: this.loginUser, | 
|---|
|  |  |  | saleId: this.loginUser.suId, | 
|---|
|  |  |  | achieveMoney: item.payMoney, | 
|---|
|  |  |  | t3: '现金业绩', | 
|---|
|  |  |  | commission: 0, | 
|---|
|  |  |  | isShare: false, | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | this.order.items.push(item); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | if (submitType == 1) { | 
|---|
|  |  |  | if (_this.printPaper) { | 
|---|
|  |  |  | _this.print(); | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | _this.$message.success({ | 
|---|
|  |  |  | message : data.info, | 
|---|
|  |  |  | duration : 1000, | 
|---|
|  |  |  | onClose() { | 
|---|
|  |  |  | _this.closeFram(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // _this.closeFram(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // _this.$confirm('结算成功,是否立刻打印小票?', '提示', { | 
|---|
|  |  |  | //     confirmButtonText: '打印', | 
|---|
|  |  |  | //     cancelButtonText: '取消', | 
|---|
|  |  |  | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | _this.$message.success(data.info); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if(parent.myGrid) { | 
|---|
|  |  |  | parent.myGrid.serchData(); | 
|---|
|  |  |  | } | 
|---|