q-koa 7.8.1 → 7.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -961,7 +961,9 @@ exports.refund_notify = async (ctx) => {
961
961
  : Number(out_refund_no)
962
962
  const type = out_refund_no.includes('_') ? out_refund_no.split('_')[1] : ''
963
963
  const model = prefix ? `${prefix}_order` : 'order'
964
- console.log(out_refund_no, '微信支付回调-----', type, model)
964
+ console.log(
965
+ `微信退款回调 prefix:${prefix}/model:${model}/order_id:${order_id}/type:${type}`
966
+ )
965
967
  if (app.service[model] && app.service[model].refund_notify) {
966
968
  await app.service[model].refund_notify({
967
969
  app,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "q-koa",
3
- "version": "7.8.1",
3
+ "version": "7.8.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {