68.采购应收应付单查询(gy.erp.purchase.payment.get)

马浩栋发表于:2019年01月28日 18:07:47更新于:2019年02月14日 11:07:12

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

start_date

datetime

修改时间开始段


end_date

datetime

修改时间时间结束段


approve

int

审核状态

0:未审核

1:已审核

code

string

单据编号


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.purchase.payment.get",
    "page_no": "1",
    "page_size": "10",
    "code": "31712642367",
    "sign": "A4190A71074D7A912553294EBC96BB93"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorDesc

string

错误信息



subErrorCode

string




errorDesc

string




subErrorDesc

string




requestMethod

string




supplierPayments

supplierPayment[]

采购应收应付单列表



total

int

总记录数



supplierPayment:

字段名

类型

描述

必填

备注

approve

int

审核状态


0:未审核

1:已审核

create_date

string

创建时间



approve_date

datetime

审核时间



modify_date

datetime

修改时间



amount

double

结算金额



note

string

备注



code

string

单据编号



supplier_code

string

供应商代码



supplier_name

string

供应商名称



billDetails

billDetail[]

应收应付明细



cashDetails

cashDetail[]

结算明细



billDetail:

字段名

类型

描述

必填

备注

amount

double

总金额



order_name

string

账单名称



order_code

string

账单编号



date

datetime

单据日期



amount_current

double

本次结算金额



cashDetail:

字段名

类型

描述

必填

备注

pay_time

datetime

支付时间



amount

double

支付金额



pay_type_code

string

支付类型代码



pay_type_name

string

支付类型名称



account_name

string

账户名称



account_no

string

账户账号



account_id

string

账户ID



account_code

string

账户代码



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.purchase.payment.get",
    "supplierPayments": [{
        "approve": 1,
        "create_date": "2016-11-18 11:58:29",
        "approve_date": "2016-11-18 11:58:48",
        "modify_date": "2016-11-18 11:58:48",
        "amount": 7500.0,
        "note": "",
        "code": "31712642367",
        "supplier_code": "8888",
        "supplier_name": "mxth供应商",
        "billDetails": [{
            "amount": 7500.0,
            "order_name": "采购入库单",
            "order_code": "25205869386",
            "date": "2016-09-09 16:17:30",
            "amount_current": 7500.0
        }],
        "cashDetails": [{
            "pay_time": "2016-11-18 11:58:19",
            "amount": 7500.0,
            "pay_type_code": "zhifubao",
            "pay_type_name": "支付宝",
            "account_name": "",
            "account_no": "",
            "account_id": null,
            "account_code": null
        }]
    }],
    "total": 1
}