acceptlist/batch_get
目录 |
1.接口说明
1.1接口描述
获取收款单列表信息
1.2适用版本
支持U8V12.0 及更高版本
2.使用场景
销售应用
3.接口调用说明
3.1请求说明
url | https://api.yonyouup.com/api/acceptlist/batch_get |
格式 | JSON |
https请求方式 | GET |
编码类型 | UTF-8 |
3.2url参数说明
参数 | 是否必填 | 类型 | 描述 |
---|---|---|---|
from_account | 是 | string | 调用方id |
to_account | 是 | string | 提供方id |
app_key | 是 | string | 应用编码 |
token | 是 | string | 全局访问唯一识别码 |
ds_sequence | 否 | number | 数据源序号(默认取应用的第一个数据源) |
page_index | 否 | string | 页号 |
rows_per_page | 否 | string | 每页行数 |
vouchcode_begin | 否 | string | 起始单据编号 |
vouchcode_end | 否 | string | 结束单据编号 |
vouchdate_begin | 否 | date | 起始制单日期,格式:yyyy-MM-dd |
vouchdate_end | 否 | date | 结束制单日期,格式:yyyy-MM-dd |
vouchtype | 否 | string | 单据类型(48=收款单;49=付款单) |
customercode | 否 | string | 客户或供应商编码,可以通过 api/customer 或 api/vendor 获取 |
customername | 否 | string | 客户或供应商名称关键字,可以通过 api/customer 或 api/vendor 获取 |
personcode | 否 | string | 业务员编码,可以通过 api/person 获取 |
personname | 否 | string | 业务员名称关键字,可以通过 api/person 获取 |
departmentcode | 否 | string | 部门编码,可以通过 api/department 获取 |
departmentname | 否 | string | 部门名称关键字,可以通过 api/department 获取 |
digest | 否 | string | 摘要关键字 |
3.3请求示例
GET https://api.yonyouup.com/api/acceptlist/batch_get?from_account=openapi_dev&to_account=openapi_ent&app_key=opa6fdd4bea98b95ad7&token=843d03f66e6544e19707ccec11030296&page_index=1&rows_per_page=20&ds_sequence=1
3.4返回参数说明
参数说明 | 类型 | 参数路径 | 描述 |
---|---|---|---|
errcode | string | 错误码,0 为正常。 | |
errmsg | string | 错误信息。 | |
page_index | string | 页号 | |
rows_per_page | string | 每页行数 | |
row_count | string | 总行数 | |
page_count | string | 页数 | |
vouchcode | string | 应收付单据号 | |
vouchdate | date | 单据日期 | |
vouchtype | string | 单据类型(48=收款单;49=付款单) | |
customercode | string | 客商编码 | |
customername | string | 客商名称 | |
customerabbname | string | 客商简称 | |
departmentcode | string | 部门编码 | |
departmentname | string | 部门名称 | |
personcode | string | 人员编码 | |
personname | string | 人员 | |
amount | number | 本币金额 | |
originalamount | number | 原币金额 | |
digest | string | 摘要 |
3.5正确返回示例
JSON示例:
application/json;charset=UTF-8 { "page_index":"1", "rows_per_page":"10", "row_count":"40", "errmsg":"", "errcode":"0", "page_count":"4", "acceptlist":[ { "customercode":"9999", "originalamount":"1500.0000", "digest":null, "amount":"1500.0000", "customerabbname":"星空电子", "customername":"星空电子公司", "vouchdate":"2015-10-21", "departmentcode":"0302", "departmentname":"销售部", "personcode":"00042", "vouchcode":"0000000041", "personname":"徐海" }, { "customercode":"00000003", "originalamount":"1500.0000", "digest":null, "amount":"1500.0000", "customerabbname":"现代天浩机械有限公司", "customername":"现代天浩机械有限公司", "vouchdate":"2015-09-21", "departmentcode":"0301", "departmentname":"市场部", "personcode":"00024", "vouchcode":"0000000035", "personname":"刘天达" } ] }
3.6错误返回示例
application/json;charset=UTF-8 { "errcode" : "30021", "errmsg" : "此应用未上线" }