|
@@ -2944,12 +2944,12 @@ class serveManagement(View):
|
|
if app_type:
|
|
if app_type:
|
|
InAppRefund.objects.create(
|
|
InAppRefund.objects.create(
|
|
uid=uid, transaction_id=transaction_id,
|
|
uid=uid, transaction_id=transaction_id,
|
|
- orderID=order_id, refund_progress=4,
|
|
|
|
|
|
+ orderID=order_id, refund_progress=4, app_type=app_type,
|
|
created_time=now_time, updated_time=now_time)
|
|
created_time=now_time, updated_time=now_time)
|
|
else:
|
|
else:
|
|
InAppRefund.objects.create(
|
|
InAppRefund.objects.create(
|
|
uid=uid, transaction_id=transaction_id,
|
|
uid=uid, transaction_id=transaction_id,
|
|
- orderID=order_id, refund_progress=4, app_type=app_type,
|
|
|
|
|
|
+ orderID=order_id, refund_progress=4,
|
|
created_time=now_time, updated_time=now_time)
|
|
created_time=now_time, updated_time=now_time)
|
|
return response.json(0)
|
|
return response.json(0)
|
|
|
|
|