123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- # -*- coding: utf-8 -*-
- # !/usr/bin/env python
- import datetime
- from ..api.base import BaseWeChatAPI
- from ...type import RequestType
- class Complaint(BaseWeChatAPI):
- def complaint_list_query(
- self, begin_date = None, end_date = None, limit = 10, offset = 0, complainted_mchid = None):
- """查询投诉单列表
- :param begin_date: 开始日期,投诉发生的开始日期,格式为YYYY-MM-DD。注意,查询日期跨度不超过30天,当前查询为实时查询。示例值:'2019-01-01'
- :param end_date: 结束日期,投诉发生的结束日期,格式为YYYY-MM-DD。注意,查询日期跨度不超过30天,当前查询为实时查询。示例值:'2019-01-01'
- :param limit: 分页大小,设置该次请求返回的最大投诉条数,范围【1,50】,商户自定义字段,不传默认为10。示例值:5
- :param offset: 分页开始位置,该次请求的分页开始位置,从0开始计数,例如offset=10,表示从第11条记录开始返回,不传默认为0 。示例值:10
- :param complainted_mchid: 被诉商户号,投诉单对应的被诉商户号。示例值:'1900012181'
- """
- if not begin_date:
- begin_date = datetime.datetime.now().strftime("%Y-%m-%d")
- if not end_date:
- end_date = begin_date
- path = '/v3/merchant-service/complaints-v2?limit={}&offset={}&begin_date={}&end_date={}'
- path = path.format(limit, offset, begin_date, end_date)
- if complainted_mchid:
- path = '{}&complainted_mchid={}'.format(path, complainted_mchid)
- return self.client.core.request(path)
- def complaint_detail_query(self, complaint_id):
- """查询投诉单详情
- :param complaint_id: 投诉单对应的投诉单号。示例值:'200201820200101080076610000'
- """
- if not complaint_id:
- raise Exception('complaint_id is not assigned.')
- path = '/v3/merchant-service/complaints-v2/%s' % complaint_id
- return self.client.core.request(path)
- def complaint_history_query(self, complaint_id, limit = 100, offset = 0):
- """查询投诉协商历史
- :param complaint_id: 投诉单对应的投诉单号。示例值:'200201820200101080076610000'
- :param limit: 分页大小,设置该次请求返回的最大协商历史条数,范围[1,300],不传默认为100。。示例值:5
- :param offset: 分页开始位置,该次请求的分页开始位置,从0开始计数,例如offset=10,表示从第11条记录开始返回,不传默认为0。示例值:10
- """
- if not complaint_id:
- raise Exception('complaint_id is not assigned.')
- if limit not in range(1, 301):
- limit = 100
- path = '/v3/merchant-service/complaints-v2/%s/negotiation-historys?limit=%s&offset=%s' % (
- complaint_id, limit, offset)
- return self.client.core.request(path)
- def complaint_notification_create(self, url):
- """创建投诉通知回调地址
- :param: url: 通知地址,仅支持https。示例值:'https://www.xxx.com/notify'
- """
- params = {}
- if url:
- params.update({'url': url})
- else:
- raise Exception('url is not assigned.')
- path = '/v3/merchant-service/complaint-notifications'
- return self.client.core.request(path, method = RequestType.POST, data = params)
- def complaint_notification_query(self):
- """查询投诉通知回调地址
- :param: url: 通知地址,仅支持https。示例值:'https://www.xxx.com/notify'
- """
- path = '/v3/merchant-service/complaint-notifications'
- return self.client.core.request(path)
- def complaint_notification_update(self, url):
- """更新投诉通知回调地址
- :param: url: 通知地址,仅支持https。示例值:'https://www.xxx.com/notify'
- """
- params = {}
- if url:
- params.update({'url': url})
- else:
- raise Exception('url is not assigned.')
- path = '/v3/merchant-service/complaint-notifications'
- return self.client.core.request(path, method = RequestType.PUT, data = params)
- def complaint_notification_delete(self):
- """删除投诉通知回调地址
- :param: url: 通知地址,仅支持https。示例值:'https://www.xxx.com/notify'
- """
- path = '/v3/merchant-service/complaint-notifications'
- return self.client.core.request(path, method = RequestType.DELETE)
- def complaint_response(self, complaint_id, complainted_mchid, response_content, response_images = None,
- jump_url = None,
- jump_url_text = None):
- """提交投诉回复
- :param complaint_id: 投诉单对应的投诉单号。示例值:'200201820200101080076610000'
- :param response_content: 回复内容,具体的投诉处理方案,限制200个字符以内。示例值:'已与用户沟通解决'
- :param response_images: 回复图片,传入调用商户上传反馈图片接口返回的media_id,最多上传4张图片凭证。示例值:['file23578_21798531.jpg', 'file23578_21798532.jpg']
- :param jump_url: 跳转链接,附加跳转链接,引导用户跳转至商户客诉处理页面,链接需满足https格式。示例值:"https://www.xxx.com/notify"
- :param jump_url_text: 转链接文案,展示给用户的文案,附在回复内容之后。用户点击文案,即可进行跳转。示例值:"查看订单详情"
- """
- params = {}
- if not complaint_id:
- raise Exception('complaint_id is not assigned')
- if response_content:
- params.update({'response_content': response_content})
- else:
- raise Exception('response_content is not assigned')
- params.update({'complainted_mchid': complainted_mchid})
- if response_images:
- params.update({'response_images': response_images})
- if jump_url:
- params.update({'jump_url': jump_url})
- if jump_url_text:
- params.update({'jump_url_text': jump_url_text})
- path = '/v3/merchant-service/complaints-v2/%s/response' % complaint_id
- return self.client.core.request(path, method = RequestType.POST, data = params)
- def complaint_complete(self, complaint_id, complainted_mchid):
- """反馈投诉处理完成
- :param complaint_id: 投诉单对应的投诉单号。示例值:'200201820200101080076610000'
- """
- params = {}
- if not complaint_id:
- raise Exception('complaint_id is not assigned')
- params.update({'complainted_mchid': complainted_mchid})
- path = '/v3/merchant-service/complaints-v2/%s/complete' % complaint_id
- return self.client.core.request(path, method = RequestType.POST, data = params)
- def complaint_image_download(self, media_url):
- """下载客户投诉图片
- :param media_url: 图片下载地址,示例值:'https://api.mch.weixin.qq.com/v3/merchant-service/images/xxxxx'
- """
- path = media_url[len(self.client.core._gate_way):] if media_url.startswith(
- self.client.core._gate_way) else media_url
- return self.client.core.request(path, skip_verify = True)
- def complaint_update_refund(self, complaint_id, action, launch_refund_day = None, reject_reason = None,
- reject_media_list = {}, remark = None):
- """更新退款审批结果
- :param compaint_id: 投诉单对应的投诉单号。示例值:'200201820200101080076610000'
- :param action: 审批动作,同意 或 拒绝,REJECT:拒绝,拒绝退款;APPROVE:同意,同意退款;示例值:'APPROVE'
- :param launch_refund_day: 预计发起退款时间,预计将在多少个工作日内能发起退款, 0代表当天。示例值:3
- :param reject_reason: 拒绝退款原因,示例值:'拒绝退款'
- :param reject_media_list: 拒绝退款的举证图片列表,传入调用“商户上传反馈图片”接口返回的media_id,最多上传4张图片凭证,示例值:{'file23578_21798531.jpg'}
- :param remark: 备注,示例值:'已处理完成'
- """
- if complaint_id:
- path = '/v3/merchant-service/complaints-v2/%s/update-refund-progress' % complaint_id
- else:
- raise Exception('complaint_id is not assigned')
- params = {}
- if action:
- params.update({'action': action})
- else:
- raise Exception('action is not assigned')
- if isinstance(launch_refund_day, int):
- params.update({'launch_refund_day': launch_refund_day})
- if reject_reason:
- params.update({'reject_reason': reject_reason})
- if reject_media_list:
- params.update({'reject_media_list': reject_media_list})
- if remark:
- params.update({'remark': remark})
- return self.client.core.request(path, method = RequestType.POST, data = params)
|