# -*- coding: utf-8 -*- # !/usr/bin/env python # TODO 目前采用主体相同协议拷贝的方式, 后续需要考虑更适合的方式 # 修改zhixia.py问题的时候需要考虑是否修改aiyaxin5.py和zhixia2.py. # 三者协议一致, 但是因为加载reload问题, 目前必须拆开. import datetime import logging import time from decimal import Decimal from typing import TYPE_CHECKING from apilib.monetary import RMB from apps.web.constant import DeviceCmdCode, Const, ErrorCode, DeviceErrorCodeDesc, MQTT_TIMEOUT from apps.web.core.adapter.base import SmartBox, fill_2_hexByte, make_six_bytes_session_id from apps.web.core.exceptions import ServiceException from apps.web.core.networking import MessageSender from apps.web.device.models import Device, DeviceType from apps.web.south_intf.yuhuan_fire import YuhuanNorther if TYPE_CHECKING: from apps.web.device.models import GroupDict logger = logging.getLogger(__name__) class ChargingZHIXIABox(SmartBox): def __init__(self, device): super(ChargingZHIXIABox, self).__init__(device) def translate_funcode(self, funCode): funCodeDict = { '01': u'获取端口数量', '02': u'移动支付', '0C': u'获取设备设置', '08': u'设置设备参数', '06': u'获取设备端口详情', '07': u'获取刷卡投币统计数据', '09': u'设置刷卡投币使能', '0A': u'端口使能', '0B': u'端口关闭', '16': u'设置设备参数', '20': u'设备重启', '13': u'设置卡充满退费', '15': u'获取功率费率配置', '14': u'设置功率费率配置', '12': u'充值', } return funCodeDict.get(funCode, '') def translate_event_cmdcode(self, cmdCode): cmdDict = { '03': u'投币上报', '04': u'刷卡上报', '05': u'充电结束', '16': u'充电结束', '10': u'刷卡上报', '0D': u'故障', '20': u'启动设备', '11': u'刷卡使用', '12': u'卡充值', '21': u'电流上报', '22': u'温度上报', '23': u'烟感上报', } return cmdDict.get(cmdCode, '') def is_port_can_use(self, port, canAdd = False): # 电川的在启动的时候去判断是否需要续充 return True, '' def check_dev_status(self, attachParas = None): """ 如果超过两个心跳周期没有报心跳,并且最后一次更新时间在2个小时内,需要从设备获取状态 否则以缓存状态为准。 :param attachParas: :return: """ if attachParas is None: raise ServiceException({'result': 0, 'description': u'请您选择合适的充电端口、电池类型信息'}) if not attachParas.has_key('chargeIndex'): raise ServiceException({'result': 0, 'description': u'请您选择合适的充电端口'}) if not self.device.need_fetch_online: raise ServiceException( {'result': 2, 'description': DeviceErrorCodeDesc.get(ErrorCode.DEVICE_CONN_CHECK_FAIL)}) self.get_port_status_from_dev() group = self.device.group # type: GroupDict if group.is_free: logger.debug('{} is free. no need to check continue pay.'.format(repr(self.device))) return # 处理是否能够续充 portDict = self.get_port_status() port = str(attachParas['chargeIndex']) if port in portDict: isCanAdd = self.device['devType'].get('payableWhileBusy', False) if portDict[port]['status'] == Const.DEV_WORK_STATUS_IDLE: return elif portDict[port]['status'] == Const.DEV_WORK_STATUS_FAULT: raise ServiceException({'result': 0, 'description': u'该端口故障,暂时不能使用'}) elif portDict[port]['status'] == Const.DEV_WORK_STATUS_WORKING: if isCanAdd: return else: raise ServiceException({'result': 0, 'description': u'该端口正在工作不能使用,请您使用其他端口'}) elif portDict[port]['status'] == Const.DEV_WORK_STATUS_FORBIDDEN: raise ServiceException({'result': 0, 'description': u'该端口已被禁止使用,请您使用其他端口'}) elif portDict[port]['status'] == Const.DEV_WORK_STATUS_CONNECTED: return else: raise ServiceException({'result': 0, 'description': u'端口状态未知,暂时不能使用'}) else: raise ServiceException({'result': 0, 'description': u'未知端口,暂时不能使用'}) def test(self, coins): hexPort = fill_2_hexByte(hex(int(1)), 2) hexTime = fill_2_hexByte(hex(5)) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = { 'IMEI': self._device['devNo'], "funCode": '02', 'data': hexPort + '0000' + hexTime }, timeout = MQTT_TIMEOUT.SHORT) return devInfo def port_is_busy(self, port_dict): if not port_dict: return False if 'status' not in port_dict: return False if 'coins' not in port_dict: return False if 'price' not in port_dict: return False if 'needTime' not in port_dict: return False if port_dict['status'] == Const.DEV_WORK_STATUS_WORKING: return True else: return False def start_device(self, package, openId, attachParas): if attachParas is None: raise ServiceException({'result': 2, 'description': u'请您选择合适的充电线路、电池类型信息'}) if not attachParas.has_key('chargeIndex'): raise ServiceException({'result': 2, 'description': u'请您选择合适的充电线路'}) port = hex(int(attachParas['chargeIndex'])) hexPort = fill_2_hexByte(port, 2) needTime = int(package['time']) unit = package.get('unit', u'分钟') if unit == u'小时': needTime = int(package['time']) * 60 elif unit == u'天': needTime = int(package['time']) * 1440 coins = float(package['coins']) price = float(package['price']) hexTime = fill_2_hexByte(hex(needTime)) devInfo = MessageSender.send( device = self.device, cmd = DeviceCmdCode.PASSTHROUGH_OPERATE_DEV_SYNC, payload = { 'IMEI': self._device['devNo'], "funCode": '02', 'data': 'EE0D02{}'.format(make_six_bytes_session_id()) + hexPort + '0000' + hexTime }, timeout = MQTT_TIMEOUT.START_DEVICE) usePort = int(attachParas['chargeIndex']) if 'rst' not in devInfo: raise ServiceException( { 'result': 2, 'description': u'启动设备失败,您的支付金额已经退还,请重新扫码设备试试(1001)' }) if devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( { 'result': 2, 'description': u'充电桩正在玩命找网络,您的金币还在,重试不需要重新付款,建议您试试旁边其他设备,或者稍后再试哦' }) elif devInfo['rst'] == 1: self.check_serial_port_for_startcmd(attachParas['chargeIndex']) else: raise ServiceException( { 'result': 2, 'description': u'启动设备失败,您的支付金额已经退回,请重新扫码设备({})'.format(devInfo['rst']) }) else: if 'data' not in devInfo: logger.warning('no data in success response. result = {}'.format(str(devInfo))) raise ServiceException( { 'result': 2, 'description': u'启动设备失败,您的支付金额已经退还,请重试' }) else: data = devInfo['data'][18::] result = data[2:4] if result == '01': # 成功 pass elif result == '02': newValue = {str(usePort): {'status': Const.DEV_WORK_STATUS_FAULT, 'statusInfo': u'充电站故障'}} Device.update_dev_control_cache(self._device['devNo'], newValue) raise ServiceException({'result': 2, 'description': u'充电站故障'}) elif result == '03': newValue = {str(usePort): {'status': Const.DEV_WORK_STATUS_WORKING, 'statusInfo': u''}} Device.update_dev_control_cache(self._device['devNo'], newValue) raise ServiceException({'result': 2, 'description': u'该端口正在使用中'}) else: raise ServiceException({ 'result': 2, 'description': u'启动设备失败({}),您的支付金额已经退回,请重新扫码设备'.format(result) }) portDict = { 'startTime': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'status': Const.DEV_WORK_STATUS_WORKING, 'coins': coins, 'price': price, 'isStart': True, 'needTime': needTime, 'openId': openId, 'refunded': False, 'vCardId': self._vcard_id, 'payInfo': list() } ctrInfo = Device.get_dev_control_cache(self._device.devNo) lastPortInfo = ctrInfo.get(str(usePort), {}) if self.port_is_busy(lastPortInfo) and \ lastPortInfo.get('openId') == openId: is_continus = True portDict['coins'] = float(coins) + lastPortInfo['coins'] portDict['price'] = float(price) + lastPortInfo['price'] portDict['needTime'] = needTime + lastPortInfo['needTime'] else: is_continus = False portDict['coins'] = float(coins) portDict['price'] = float(price) portDict['needTime'] = needTime if 'linkedRechargeRecordId' in attachParas: if is_continus: payInfo = lastPortInfo.get("payInfo", list()) if not payInfo: logger.warning("miss payInfo! {}-{}".format(self._device["devNo"], usePort)) else: payInfo = list() payInfo.append({'rechargeRcdId': str(attachParas['linkedRechargeRecordId'])}) portDict['payInfo'] = payInfo else: if is_continus: portDict['payInfo'] = lastPortInfo.get("payInfo", list()) else: portDict['payInfo'] = list() finishedTime = int(time.time()) + needTime * 60 portDict.update({'finishedTime': finishedTime}) if 'orderNo' in attachParas: portDict.update({'orderNo': attachParas['orderNo']}) Device.update_dev_control_cache( self._device['devNo'], { str(usePort): portDict }) # 玉环的对接,放这里吧 YuhuanNorther.send_dev_status(self._device, attachParas['chargeIndex'], '1') return devInfo def analyze_event_data(self, data): cmdCode = data[4:6] if cmdCode in ['05']: port = int(data[18:20], 16) leftTime = int(data[20:24], 16) reason = data[24:26] devType = DeviceType.objects(id=self.device['devType']['id']).first() finishedReasonDict = devType.finishedReasonDict if finishedReasonDict != {}: desc_map = finishedReasonDict else: desc_map = { '00': u'购买的充电时间或电量用完了。', '01': u'插头被拔或者松动,或者电瓶已经充满(系统判断为异常断电,电瓶车充电器种类繁多,可能存在误差)', '02': u'电池已经充满', '03': u'设备或者端口故障。建议您根据已经充电的时间评估是否需要到现场换到其他端口充电', '04': u'警告!您的电池功率超过本机最大限制。为了公共安全,不建议您在该充电桩充电', '05': u'刷卡退费结束', '06': u'可能是插头被拔掉或者未连接充电器。如果不是自己操作,建议您到现场检查是否有人误操作', '07': u'远程方式停止充电。如果不是自己操作,建议到现场尽快恢复充电' } desc = desc_map.get(reason, u'电池没有充满!原因未知。') # 刷卡充电的结束 if len(data) > 34: cardNo = int(data[26:34], 16) backMoney = int(data[34:36], 16) / 10.0 cardType = 'ID' if data[36:40] == 'AA33' else 'IC' if cardNo != 0: return {'status': Const.DEV_WORK_STATUS_IDLE, 'cmdCode': cmdCode, 'port': port, 'leftTime': leftTime, 'reason': desc, 'isStart': False, 'cardNo': cardNo, 'backMoney': backMoney, 'cardType': cardType, 'endType': reason, 'reasonCode': reason, 'uartData': data} else: return {'status': Const.DEV_WORK_STATUS_IDLE, 'cmdCode': cmdCode, 'port': port, 'leftTime': leftTime, 'reason': desc, 'isStart': False, 'endType': reason, 'reasonCode': reason, 'uartData': data} # 非刷卡充电的结束 else: return {'status': Const.DEV_WORK_STATUS_IDLE, 'cmdCode': cmdCode, 'port': port, 'leftTime': leftTime, 'reason': desc, 'isStart': False, 'endType': reason, 'reasonCode': reason, 'uartData': data} elif cmdCode == '16': # 高版本的 port = int(data[8:10], 16) leftTime = int(data[10:14], 16) elec = int(data[14:18], 16) reason = data[18:20] if reason == '00': desc = u'您购买的充电时间用完了。' elif reason == '01': desc = u'可能是插头被拔掉,或者电瓶已经充满。系统判断为异常断电,由于电瓶车充电器种类繁多,可能存在误差。如有问题,请您及时联系商家协助解决问题并恢复充电。' elif reason == '02': desc = u'恭喜您!电池已经充满电!' elif reason == '03': desc = u'警告!您的电池功率超过本机最大限制,已经停止充电,为了公共安全,不建议您在该充电桩充电!提醒您,为了安全大功率的电池不要放入楼道、室内等位置充电哦' elif reason == '04': desc = u'管理人员可能远程断电了,建议您根据已经充电的时间评估是否需要到现场换到其他端口充电。' elif reason == '0B': desc = u'设备或端口出现问题,为了安全起见,被迫停止工作。建议您根据已经充电的时间评估是否需要到现场换到其他端口充电。' else: desc = '' return {'status': Const.DEV_WORK_STATUS_IDLE, 'reason': desc, 'cmdCode': cmdCode, 'port': port, 'leftTime': leftTime, 'elec': elec, 'isStart': False, 'reasonCode': reason, 'uartData': data} elif cmdCode == '0D': port = int(data[16:18], 16) errCode = data[18:20] if errCode == '01': return {'statusInfo': u'端口输出故障', 'cmdCode': cmdCode, 'port': port, 'FaultCode': errCode, "uart": data} elif errCode == '02': return {'statusInfo': u'机器整体充电功率过大', 'cmdCode': cmdCode, 'port': port, 'FaultCode': errCode, "uart": data} elif errCode == '03': return {'statusInfo': u'电源故障', 'cmdCode': cmdCode, 'port': port, 'FaultCode': errCode, "uart": data} elif cmdCode == '10': # 用户刷卡上报的信息 cardNo = data[8:16] cardNo = str(int(cardNo, 16)) preFee = int(data[16:18], 16) / 10.0 oper = data[18:20] return {'cardNo': cardNo, 'preFee': preFee, 'cmdCode': cmdCode, 'oper': oper} elif cmdCode == '20': # 启动设备 port = int(data[8:10], 16) needTime = int(data[10:14], 16) elec = int(data[14:18], 16) consumeType = data[18:20] money = int(data[20:22], 16) return {'cmdCode': cmdCode, 'port': port, 'needTime': needTime, 'elec': elec, 'consumeType': consumeType, 'coins': money} elif cmdCode == '03': coin = int(data[18:20], 16) return {'cmdCode': cmdCode, 'coins': coin} elif cmdCode == '11': cardNo = data[18:26] cardNo = str(int(cardNo, 16)) money = int(data[26:28], 16) / 10.0 balance = int(data[28:32], 16) / 10.0 port = int(data[36:38], 16) status = data[38:40] return {'cmdCode': cmdCode, 'cardNo': cardNo, 'coins': money, 'balance': balance, 'status': status, 'port': port} elif cmdCode == '12': cardNo = data[18:26] cardNo = str(int(cardNo, 16)) balance = int(data[26:30], 16) / 10.0 cardType = data[30:34] return {'cmdCode': cmdCode, 'balance': balance, 'cardType': cardType, 'cardNo': cardNo} elif cmdCode == '04': # 旧版本的刷卡报文 money = int(data[18:20], 16) return {'cmdCode': cmdCode, 'money': money} elif cmdCode == '30': # 宇泽家的,主动上报电流 portData = data[18:48] port1 = int(portData[2:4]) port2 = int(portData[4:6]) port3 = int(portData[6:8]) port4 = int(portData[8:10]) port5 = int(portData[10:12]) port6 = int(portData[12:14]) port7 = int(portData[14:16]) port8 = int(portData[16:18]) port9 = int(portData[18:20]) port10 = int(portData[20:22]) device = int(portData[22:24]) return { 'cmdCode': cmdCode, 'port1': port1, 'port2': port2, 'port3': port3, 'port4': port4, 'port5': port5, 'port6': port6, 'port7': port7, 'port8': port8, 'port9': port9, 'port10': port10, 'device': device, } elif cmdCode == '31': # 宇泽家的,主动上报温度 portData = data[18:48] port1 = int(portData[2:4]) port2 = int(portData[4:6]) port3 = int(portData[6:8]) port4 = int(portData[8:10]) port5 = int(portData[10:12]) port6 = int(portData[12:14]) port7 = int(portData[14:16]) port8 = int(portData[16:18]) port9 = int(portData[18:20]) port10 = int(portData[20:22]) device = int(portData[22:24]) return { 'cmdCode': cmdCode, 'port1': port1, 'port2': port2, 'port3': port3, 'port4': port4, 'port5': port5, 'port6': port6, 'port7': port7, 'port8': port8, 'port9': port9, 'port10': port10, 'device': device, } elif cmdCode == '32': # 宇泽家的,主动上报温度 if data[18:20] == '01': return {'isYangan': True, 'cmdCode': cmdCode} else: return {'isYangan': False, 'cmdCode': cmdCode} elif cmdCode == '17': """ IC卡回收余额成功,上报回收的数目 样例 660F170048614800052DDA5A0D000001DD """ cardNo = int(data[18:26], 16) cardNo = str(cardNo) backMoney = int(data[26:30], 16) / 10.0 return {'cmdCode': cmdCode, 'cardNo': cardNo, 'backMoney': backMoney} def get_dev_consume_count(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '07', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) data = devInfo['data'][16::] cardFee = int(data[2:6], 16) / 10.0 # 以角为单位 coinFee = int(data[6:10], 16) # 以元为单位 return {'cardFee': cardFee, 'coinFee': coinFee} def get_port_info(self, line): support_06 = self._device.get('otherConf', {}).get('support_06', True) if not support_06: return {'port': line} data = fill_2_hexByte(hex(int(line)), 2) devInfo = MessageSender.send(device = self.device, cmd = self.make_random_cmdcode(), payload = {'IMEI': self._device['devNo'], "funCode": '06', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) data = devInfo['data'][16::] leftTime = int(data[4:8], 16) if data[8:12] == 'FFFF': power = 0 else: power = int(data[8:12], 16) / 10.0 return {'port': line, 'leftTime': leftTime, 'power': power} # 访问设备电流 def get_port_elec_from_dev(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '21', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) portData = devInfo['data'][18::] port1 = int(portData[2:4], 16) port2 = int(portData[4:6], 16) port3 = int(portData[6:8], 16) port4 = int(portData[8:10], 16) port5 = int(portData[10:12], 16) port6 = int(portData[12:14], 16) port7 = int(portData[14:16], 16) port8 = int(portData[16:18], 16) port9 = int(portData[18:20], 16) port10 = int(portData[20:22], 16) device = int(portData[22:24], 16) return { 'port1': port1, 'port2': port2, 'port3': port3, 'port4': port4, 'port5': port5, 'port6': port6, 'port7': port7, 'port8': port8, 'port9': port9, 'port10': port10, 'device': device, } # 访问设备 def get_port_temperature_from_dev(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '22', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) portData = devInfo['data'][18::] port1 = int(portData[2:4], 16) port2 = int(portData[4:6], 16) port3 = int(portData[6:8], 16) port4 = int(portData[8:10], 16) port5 = int(portData[10:12], 16) port6 = int(portData[12:14], 16) port7 = int(portData[14:16], 16) port8 = int(portData[16:18], 16) port9 = int(portData[18:20], 16) port10 = int(portData[20:22], 16) device = int(portData[22:24], 16) return { 'port1': port1, 'port2': port2, 'port3': port3, 'port4': port4, 'port5': port5, 'port6': port6, 'port7': port7, 'port8': port8, 'port9': port9, 'port10': port10, 'device': device, } # 访问设备,获取设备端口信息 def get_port_status_from_dev(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.PASSTHROUGH_OPERATE_DEV_SYNC, payload = { 'IMEI': self._device['devNo'], 'funCode': '01', 'data': 'EE0901{}'.format(make_six_bytes_session_id()) + '00' }) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试', 'rst': -1}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能', 'rst': 1}) data = devInfo['data'][16::] result = {} portNum = int(data[2:4], 16) portData = data[4::] ii = 0 while ii < portNum: statusTemp = portData[ii * 2:ii * 2 + 2] if statusTemp == '01': status = {'status': Const.DEV_WORK_STATUS_IDLE} elif statusTemp == '02': status = {'status': Const.DEV_WORK_STATUS_WORKING} elif statusTemp == '03': status = {'status': Const.DEV_WORK_STATUS_FORBIDDEN} elif statusTemp == '04': status = {'status': Const.DEV_WORK_STATUS_FAULT} ii += 1 result[str(ii)] = status allPorts, usedPorts, usePorts = self.get_port_static_info(result) Device.update_dev_control_cache(self._device['devNo'], {'allPorts': allPorts, 'usedPorts': usedPorts, 'usePorts': usePorts}) # 这里存在多线程更新缓存的场景,可能性比较低,但是必须先取出来,然后逐个更新状态,然后再记录缓存 ctrInfo = Device.get_dev_control_cache(self._device['devNo']) for strPort, info in result.items(): if ctrInfo.has_key(strPort): ctrInfo[strPort].update({'status': info['status']}) else: ctrInfo[strPort] = info Device.update_dev_control_cache(self._device['devNo'], ctrInfo) return result def get_default_port_nums(self): default_num = 10 if self.device.devTypeCode == Const.DEVICE_TYPE_CODE_CHARGING_DIANCHUAN_HIGH: default_num = 2 return default_num def get_port_status(self, force = False): if force: return self.get_port_status_from_dev() ctrInfo = Device.get_dev_control_cache(self.device.devNo) if 'allPorts' in ctrInfo and ctrInfo['allPorts'] > 0: allPorts = ctrInfo['allPorts'] else: allPorts = self.get_default_port_nums() statusDict = {} for ii in range(allPorts): tempDict = ctrInfo.get(str(ii + 1), {}) if tempDict.has_key('status'): statusDict[str(ii + 1)] = {'status': tempDict.get('status')} elif tempDict.has_key('isStart'): if tempDict['isStart']: statusDict[str(ii + 1)] = {'status': Const.DEV_WORK_STATUS_WORKING} else: statusDict[str(ii + 1)] = {'status': Const.DEV_WORK_STATUS_IDLE} else: statusDict[str(ii + 1)] = {'status': Const.DEV_WORK_STATUS_IDLE} allPorts, usedPorts, usePorts = self.get_port_static_info(statusDict) Device.update_dev_control_cache(self._device['devNo'], {'allPorts': allPorts, 'usedPorts': usedPorts, 'usePorts': usePorts}) return statusDict def lock_unlock_port(self, port, lock = True): lockStr = '00' if lock else '01' portStr = fill_2_hexByte(hex(int(port)), 2) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '0A', 'data': portStr + lockStr}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'端口禁用功能只有带保险丝版本的才有。可能是您的设备版本过低,暂时不支持此功能,也可能是设备繁忙无响应。'}) data = devInfo['data'][18::] if data[0:2] == '01': # 表示成功 pass else: raise ServiceException({'result': 2, 'description': u'操作端口失败,请重试看能否解决'}) if lock: Device.update_dev_control_cache(self._device['devNo'], {str(port): {'status': Const.DEV_WORK_STATUS_FORBIDDEN}}) else: Device.update_dev_control_cache(self._device['devNo'], {str(port): {'status': Const.DEV_WORK_STATUS_IDLE}}) def active_deactive_port(self, port, active): if active: raise ServiceException({'result': 2, 'description': u'该设备不支持直接打开端口'}) self.stop_charging_port(port) devInfo = Device.get_dev_control_cache(self._device['devNo']) portCtrInfo = devInfo.get(str(port), {}) portCtrInfo.update({'isStart': False, 'status': Const.DEV_WORK_STATUS_IDLE, 'needTime': 0, 'leftTime': 0, 'endTime': datetime.datetime.now().strftime(Const.DATETIME_FMT)}) newValue = {str(port): portCtrInfo} Device.update_dev_control_cache(self._device['devNo'], newValue) def stop_charging_port(self, port): portStr = fill_2_hexByte(hex(int(port)), 2) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '0B', 'data': portStr}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) data = devInfo['data'][16::] port = int(data[2:4], 16) leftTime = int(data[4:8], 16) return {'port': port, 'leftTime': leftTime} # 获取IC卡、投币、最大功率设置 def get_IC_coin_power_config(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '0C', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) confData = devInfo['data'][18::] maxPower = int(confData[0:4], 16) icMoney = int(confData[4:6], 16) if len(confData) > 6: time1 = int(confData[6:10], 16) time2 = int(confData[10:14], 16) time3 = int(confData[14:18], 16) else: time1, time2, time3 = 0, 0, 0 return {'maxPower': maxPower, 'icMoney': icMoney, 'time1': time1, 'time2': time2, 'time3': time3} def set_IC_coin_power_config(self, infoDict): data = '' data += fill_2_hexByte(hex(int(infoDict['maxPower'])), 4) data += fill_2_hexByte(hex(int(infoDict['icMoney'])), 2) data += fill_2_hexByte(hex(int(infoDict['time1'])), 4) data += fill_2_hexByte(hex(int(infoDict['time2'])), 4) data += fill_2_hexByte(hex(int(infoDict['time3'])), 4) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '08', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试'}) def get_coin_card_enable(self): devs = Device.get_collection().find({'devNo': self._device['devNo']}) if devs.count == 0: raise ServiceException( {'result': 2, 'description': u'没有找到设备哦'}) return {'putCoins': devs[0].get('otherConf', {}).get('putCoins', False), 'icCard': devs[0].get('otherConf', {}).get('icCard', False)} def set_coin_card_enable(self, infoDict): data = '' if infoDict['putCoins']: data += '01' else: data += '00' if infoDict['icCard']: data += '01' else: data += '00' devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '09', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) try: conf = Device.objects.get(devNo = self._device['devNo']).otherConf conf.update({'putCoins': infoDict['putCoins'], 'icCard': infoDict['icCard']}) Device.get_collection().update({'devNo': self._device['devNo']}, {'$set': {'otherConf': conf}}) except Exception, e: logger.error('update dev=%s coin enable ic enable e=%s' % (self._device['devNo'], e)) # 获取设备配置参数 def get_dev_setting(self): resultDict = self.get_IC_coin_power_config() tempDict = self.get_coin_card_enable() resultDict.update(tempDict) tempDict = self.get_gear_conf() resultDict.update(tempDict) tempDict = self.get_fullstop_cardrefund() resultDict.update(tempDict) dev = Device.objects.get(devNo = self._device['devNo']) # todo 电川新版本才支持浮充设置, 现网做兼容, 获取数据从数据库获取 fuchongPower = dev.otherConf.get('fuchongPower', '') fuchongTime = dev.otherConf.get('fuchongTime', '') # 兼容刷卡时间 2a指令 try: tempDict = self.get_freemode_volume_andsoon_config() except Exception: tempDict = {} card1Time = tempDict.get('card1Time', '') card2Time = tempDict.get('card2Time', '') card3Time = tempDict.get('card3Time', '') fuchongPower = tempDict.get('fuchongPower') or fuchongPower fuchongTime = tempDict.get('fuchongTime') or fuchongTime volume = tempDict.get('volume', '') resultDict.update({'card1Time': card1Time}) resultDict.update({'card2Time': card2Time}) resultDict.update({'card3Time': card3Time}) resultDict.update({'volume': volume}) resultDict.update({'fuchongPower': fuchongPower}) resultDict.update({'fuchongTime': fuchongTime}) return resultDict # 获取设备配置参数 def set_dev_setting(self, setConf): keys = setConf.keys() if 'putCoins' in keys or 'icCard' in keys: self.set_coin_card_enable(setConf) if 'maxPower' in keys or 'icMoney' in keys or 'time1' in keys or 'time2' in keys or 'time3' in keys: self.set_IC_coin_power_config(setConf) def get_fullstop_cardrefund(self): try: dev = Device.objects.get(devNo = self._device['devNo']) except Exception, e: logger.error('get dev error = %s' % e) return {'autoStop': False, 'cardRefund': False} return {'autoStop': dev['otherConf'].get('autoStop', False), 'cardRefund': dev['otherConf'].get('cardRefund', False)} def set_fullstop_cardrefund(self, infoDict): data = '' if infoDict['autoStop']: data += '01' else: data += '00' if infoDict['cardRefund']: data += '01' else: data += '00' devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '13', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) try: conf = Device.objects.get(devNo = self._device['devNo']).otherConf conf.update({'autoStop': infoDict['autoStop'], 'cardRefund': infoDict['cardRefund']}) Device.get_collection().update({'devNo': self._device['devNo']}, {'$set': {'otherConf': conf}}) except Exception, e: logger.error('update dev=%s coin enable ic enable e=%s' % (self._device['devNo'], e)) def get_gear_conf(self): resultDict = {'power1': 0, 'power1ratio': 0, 'power2': 0, 'power2ratio': 0, 'power3': 0, 'power3ratio': 0} devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '15', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: return resultDict confData = devInfo['data'][18::] power1 = int(confData[0:4], 16) power1ratio = int(confData[4:6], 16) * 10 power2 = int(confData[6:10], 16) power2ratio = int(confData[10:12], 16) * 10 power3 = int(confData[12:16], 16) power3ratio = int(confData[16:18], 16) * 10 result = { 'power1': power1, 'power1ratio': power1ratio, 'power2': power2, 'power2ratio': power2ratio, 'power3': power3, 'power3ratio': power3ratio } if len(confData) > 31: power4 = int(confData[18:22], 16) power4ratio = int(confData[22:24], 16) * 10 power5 = int(confData[24:28], 16) power5ratio = int(confData[28:30], 16) * 10 result.update({'power4': power4, 'power4ratio': power4ratio, 'power5': power5, 'power5ratio': power5ratio}) return result def set_gear_conf(self, infoDict): data = '' data += fill_2_hexByte(hex(int(infoDict['power1'])), 4) data += fill_2_hexByte(hex(int(infoDict['power1ratio']) / 10), 2) data += fill_2_hexByte(hex(int(infoDict['power2'])), 4) data += fill_2_hexByte(hex(int(infoDict['power2ratio']) / 10), 2) data += fill_2_hexByte(hex(int(infoDict['power3'])), 4) data += fill_2_hexByte(hex(int(infoDict['power3ratio']) / 10), 2) if infoDict.has_key('power4'): data += fill_2_hexByte(hex(int(infoDict['power4'])), 4) data += fill_2_hexByte(hex(int(infoDict['power4ratio']) / 10), 2) data += fill_2_hexByte(hex(int(infoDict['power5'])), 4) data += fill_2_hexByte(hex(int(infoDict['power5ratio']) / 10), 2) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '14', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) # 给实体卡充值 def recharge_card(self, cardNo, money, orderNo = None): # type:(str,RMB)->(dict, RMB) try: data = 'EE1012{}'.format(make_six_bytes_session_id()) cardNo = fill_2_hexByte(hex(int(cardNo)), 8) data += cardNo + fill_2_hexByte(hex(int(money * 10)), 4) + '0001' devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.PASSTHROUGH_OPERATE_DEV_SYNC, payload = { 'IMEI': self._device['devNo'], 'data': data, 'funCode': '12' }, timeout = MQTT_TIMEOUT.LONGEST) if devInfo['rst'] != 0: if devInfo['rst'] == ErrorCode.DEVICE_CONN_FAIL: # 离线无法判断是否成功, 认为充值成功, 走售后解决 return { 'result': ErrorCode.DEVICE_CONN_FAIL, 'description': u'当前充电桩正在玩命找网络,请您稍候再试' }, None elif devInfo['rst'] == ErrorCode.BOARD_UART_TIMEOUT: return { 'result': ErrorCode.BOARD_UART_TIMEOUT, 'description': u'当前充电桩忙,无响应,请您稍候再试' }, None else: return { 'result': devInfo['rst'], 'description': u'系统异常' }, None resultData = devInfo['data'] if resultData[4:6] != '16': return { 'result': ErrorCode.PARAMETER_ERROR_TO_BOX, 'description': u'充值返回报文命令码不为16' }, None balance = RMB(int(resultData[26:30], 16)) * Decimal('0.1') result = True if resultData[34:36] == '01' else False if result: return { 'result': ErrorCode.SUCCESS, 'description': '' }, balance else: return { 'result': ErrorCode.IC_RECHARGE_FAIL, 'description': u'充值失败' }, balance except Exception as e: logger.exception(e) return { 'result': ErrorCode.EXCEPTION, 'description': e.message }, None # 获取IC卡、投币、最大功率设置 def get_freemode_volume_andsoon_config(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '2A', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) confData = devInfo['data'][18::] card1Time = int(confData[0:4], 16) card2Time = int(confData[4:8], 16) card3Time = int(confData[8:12], 16) chargeFree = True if confData[12:14] == '01' else False volume = int(confData[14:16], 16) fuchongPower = int(confData[16:20], 16) fuchongTime = int(confData[20:24], 16) return {'card1Time': card1Time, 'card2Time': card2Time, 'card3Time': card3Time, 'chargeFree': chargeFree, 'volume': volume, 'fuchongPower': fuchongPower, 'fuchongTime': fuchongTime} def get_mcu_version(self): devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '25', 'data': '00'}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试。也可能是您的设备版本过低,暂时不支持此功能'}) confData = devInfo['data'][18::] mcuVersion = int(confData[0:4], 16) return {'mcuVersion': mcuVersion} def set_freemode_volume_config(self, infoDict): data = '01' if infoDict['chargeFree'] else '00' data += fill_2_hexByte(hex(int(infoDict.get('volume', 5))), 2) devInfo = MessageSender.send(device = self.device, cmd = self.make_random_cmdcode(), payload = {'IMEI': self._device['devNo'], "funCode": '27', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试'}) def set_fuchong_config(self, infoDict): data = fill_2_hexByte(hex(int(infoDict['fuchongPower']) * 10), 4) data += fill_2_hexByte(hex(int(infoDict['fuchongTime'])), 4) devInfo = MessageSender.send(device = self.device, cmd = DeviceCmdCode.OPERATE_DEV_SYNC, payload = {'IMEI': self._device['devNo'], "funCode": '28', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试'}) dev = Device.objects.get(devNo = self._device['devNo']) dev.otherConf.update({'fuchongPower': int(infoDict['fuchongPower'])}) dev.otherConf.update({'fuchongTime': int(infoDict['fuchongTime'])}) dev.save() def set_card_time_config(self, infoDict): data = fill_2_hexByte(hex(int(infoDict['card1Time'])), 4) data += fill_2_hexByte(hex(int(infoDict['card2Time'])), 4) data += fill_2_hexByte(hex(int(infoDict['card3Time'])), 4) devInfo = MessageSender.send(device = self.device, cmd = self.make_random_cmdcode(), payload = {'IMEI': self._device['devNo'], "funCode": '29', 'data': data}, timeout = MQTT_TIMEOUT.SHORT) if devInfo.has_key('rst') and devInfo['rst'] != 0: if devInfo['rst'] == -1: raise ServiceException( {'result': 2, 'description': u'充电桩正在玩命找网络,请您稍候再试'}) elif devInfo['rst'] == 1: raise ServiceException( {'result': 2, 'description': u'充电桩忙,无响应,请您稍候再试'}) def set_device_function(self, request, lastSetConf): if request.POST.has_key('putCoins'): # putCoins = True if request.POST.get('putCoins') == 'true' else False putCoins = request.POST.get("putCoins", False) lastSetConf.update({'putCoins': putCoins}) self.set_coin_card_enable(lastSetConf) if request.POST.has_key('icCard'): # icCard = True if request.POST.get('icCard') == 'true' else False icCard = request.POST.get("icCard", False) lastSetConf.update({'icCard': icCard}) self.set_coin_card_enable(lastSetConf) if request.POST.has_key('autoStop'): # autoStop = True if request.POST.get('autoStop') == 'true' else False autoStop = request.POST.get("autoStop", False) lastSetConf.update({'autoStop': autoStop}) self.set_fullstop_cardrefund(lastSetConf) if request.POST.has_key('cardRefund'): # cardRefund = True if request.POST.get('cardRefund') == 'true' else False cardRefund = request.POST.get("cardRefund", False) lastSetConf.update({'cardRefund': cardRefund}) self.set_fullstop_cardrefund(lastSetConf) if request.POST.has_key('chargeFree'): # chargeFree = True if request.POST.get('chargeFree') == 'true' else False chargeFree = request.POST.get("chargeFree", False) lastSetConf.update({'chargeFree': chargeFree}) self.set_freemode_volume_config(lastSetConf) def set_device_function_param(self, request, lastSetConf): if request.POST.has_key('maxPower') and request.POST.has_key('icMoney'): lastSetConf.update({'maxPower': int(request.POST.get('maxPower', 0))}) lastSetConf.update({'icMoney': int(request.POST.get('icMoney', 0))}) self.set_IC_coin_power_config(lastSetConf) if request.POST.has_key('time1') and request.POST.has_key('time2') and request.POST.has_key('time3'): lastSetConf.update({'time1': int(request.POST.get('time1', 0))}) lastSetConf.update({'time2': int(request.POST.get('time2', 0))}) lastSetConf.update({'time3': int(request.POST.get('time3', 0))}) self.set_IC_coin_power_config(lastSetConf) if request.POST.has_key('power1') and request.POST.has_key('power1ratio'): lastSetConf.update({'power1': int(request.POST.get('power1', 0))}) lastSetConf.update({'power1ratio': int(request.POST.get('power1ratio', 0))}) lastSetConf.update({'power2': int(request.POST.get('power2', 0))}) lastSetConf.update({'power2ratio': int(request.POST.get('power2ratio', 0))}) lastSetConf.update({'power3': int(request.POST.get('power3', 0))}) lastSetConf.update({'power3ratio': int(request.POST.get('power3ratio', 0))}) lastSetConf.update({'power4': int(request.POST.get('power4', 0))}) lastSetConf.update({'power4ratio': int(request.POST.get('power4ratio', 0))}) lastSetConf.update({'power5': int(request.POST.get('power5', 0))}) lastSetConf.update({'power5ratio': int(request.POST.get('power5ratio', 0))}) self.set_gear_conf(lastSetConf) if request.POST.has_key('card1Time') and request.POST.has_key('card2Time') and request.POST.has_key( 'card3Time'): lastSetConf.update({'card1Time': int(request.POST.get('card1Time', 0))}) lastSetConf.update({'card2Time': int(request.POST.get('card2Time', 0))}) lastSetConf.update({'card3Time': int(request.POST.get('card3Time', 0))}) self.set_card_time_config(lastSetConf) if 'fuchongPower' in request.POST and 'fuchongTime' in request.POST: fuchongPower = 0 if request.POST.get('fuchongPower') == '' else int(request.POST.get('fuchongPower')) fuchongTime = 0 if request.POST.get('fuchongTime') == '' else int(request.POST.get('fuchongTime')) lastSetConf.update({'fuchongPower': fuchongPower}) lastSetConf.update({'fuchongTime': fuchongTime}) self.set_fuchong_config(lastSetConf) if 'cardPassword' in request.POST: lastSetConf.update({'cardPassword': int(request.POST.get('cardPassword', 0))}) self.set_IC_card_password(lastSetConf) if 'cardNoRangeStart' in request.POST and 'cardNoRangeEnd' in request.POST: lastSetConf.update({'cardNoRangeStart': int(request.POST.get('cardNoRangeStart', 0))}) lastSetConf.update({'cardNoRangeEnd': int(request.POST.get('cardNoRangeEnd', 0))}) self.set_IC_card_range(lastSetConf) def get_IC_card_password(self): raise ServiceException( {'result': 2, 'description': u'您的设备暂不支持该功能'}) def set_IC_card_password(self, lastSetConf): raise ServiceException( {'result': 2, 'description': u'您的设备暂不支持该功能'}) def set_IC_card_range(self, lastSetConf): raise ServiceException( {'result': 2, 'description': u'您的设备暂不支持该功能'}) def format_upload_power(self, power): return float(power / 10) @property def isHaveStopEvent(self): return True def get_server_setting(self): if self.device.devTypeCode == Const.DEVICE_TYPE_CODE_CHARGING_DIANCHUAN_HIGH: default_refund_protection_time = 3 else: default_refund_protection_time = 5 return { 'refundProtectionTime': int( self.device.get_other_conf_item('refundProtectionTime', default_refund_protection_time)), } def set_server_setting(self, payload): refundProtectionTime = int(payload['refundProtectionTime']) self.device.update_other_conf(refundProtectionTime=refundProtectionTime)