39.退款单新增(gy.erp.trade.refund.add)

马浩栋发表于:2019年01月28日 17:45:39更新于:2019年02月13日 14:01:22

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

refund_code

string

退款单单号


refund_type

number

退款单种类

0-仅退款

1-退货退款

refund_reason

string

退款原因


trade_code

string

关联订单单号


shop_code

string

店铺代码


vip_code

string

会员代码


type_code

string

单据类型代码


payment_type_code

string

退款支付方式代码


amount

price

退款金额


note

string

备注


item_detail

Item[]

退款商品列表

退货退款(refund_type为1)必填

Item:

字段名

类型

描述

必填

备注

barcode

string

商品条码


qty

string

数量


price

string

单价


note

number

备注


Json请求示例:

{

      "appkey": "112194",

      "sessionkey": "50b24306aacf479a9a5651f0fc7cabc3",

      "method": "gy.erp.trade.refund.add",

      "refund_code": "6401506928338909820",

      "refund_type": 1,

      "trade_code": "SO56150291587",

      "shop_code": "gsh_test",

      "vip_code": "112953",

      "payment_type_code": "zhifubao",

      "amount": 0.01,

      "note": "2015100901211341",

      "item_detail": [

        {

              "barcode": "gytest001_marygytest001_mary",

              "qty": 1

        }

    ],

      "sign": "A9DA35897759983CAFBF858E5E4CFB85"

}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorCode

string

错误代码



subErrorCode

string

子错误代码



errorDesc

string

错误描述



subErrorDesc

string

子错误描述



requestMethod

string

请求方法



code

string

单据编号



Json返回示例:

{

      "success": true,

      "errorCode": "",

      "subErrorCode": "",

      "errorDesc": "",

      "subErrorDesc": "",

      "requestMethod": "gy.erp.trade.refund.add",

      "code": "RMO56235851624"

}