purchaserequisitionlist/batch_get
目录 |
1.接口说明
1.1接口描述
获取请购单列表
1.2适用版本
支持U8V12.0 及更高版本
2.使用场景
订购应用
3.接口调用说明
3.1请求说明
| url | https://api.yonyouup.com/api/purchaserequisitionlist/batch_get |
| 格式 | JSON |
| https请求方式 | GET |
3.2url参数说明
| 参数 | 是否必填 | 类型 | 描述 |
|---|---|---|---|
| from_account | 是 | sting | 调用方id |
| to_account | 是 | string | 提供方id |
| app_key | 是 | string | 应用编码 |
| token | 是 | string | 全局访问唯一识别码 |
| ds_sequence | 否 | number | 数据源序号(默认取应用的第一个数据源) |
| code_begin | 否 | string | 起始单据编号 |
| code_end | 否 | string | 结束单据编号 |
| date_begin | 否 | date | 起始单据日期 |
| date_end | 否 | date | 结束单据日期 |
| departmentcode | 否 | string | 部门编号 |
| personcode | 否 | string | 职员编号 |
| purchasetypecode | 否 | string | 采购类型编码 |
| businesstype | 否 | string | 业务类型 |
| maker | 否 | string | 制单 |
| memory | 否 | string | 备注关键字 |
| cvoucherstate | 否 | string | 状态 |
3.3请求示例
GET https://api.yonyouup.com/api/purchaserequisitionlist/batch_get?from_account=openapi_dev&to_account=openapi_ent&app_key=opa6fdd4bea98b95ad7&token=26d2fc4a06844448957a7f8260f3d08b&code_begin=xxxxx&code_end=xxxxx&date_begin=xxxxx&date_end=xxxxx&departmentcode=xxxxx&personcode=xxxxx&purchasetypecode=xxxxx&businesstype=xxxxx&maker=xxxxx&memory=xxxxx&cvoucherstate=xxxxx
3.4返回参数说明
| 参数说明 | 类型 | 参数路径 | 描述 |
|---|---|---|---|
| errcode | string | 错误码,0 为正常。 | |
| errmsg | string | 错误信息。 | |
| code | string | 单据编号 | |
| date | date | 单据日期 | |
| departmentcode | string | 部门编号 | |
| personcode | string | 职员编号 | |
| purchasetypecode | string | 采购类型编码 | |
| businesstype | string | 业务类型 | |
| maker | string | 制单 | |
| define1 | string | 表头自定义项1 | |
| define2 | string | 表头自定义项2 | |
| define3 | string | 表头自定义项3 | |
| define4 | date | 表头自定义项4 | |
| define5 | number | 表头自定义项5 | |
| define6 | date | 表头自定义项6 | |
| define7 | number | 表头自定义项7 | |
| define8 | string | 表头自定义项8 | |
| define9 | string | 表头自定义项9 | |
| define10 | string | 表头自定义项10 | |
| define11 | string | 表头自定义项11 | |
| define12 | string | 表头自定义项12 | |
| define13 | string | 表头自定义项13 | |
| define14 | string | 表头自定义项14 | |
| define15 | number | 表头自定义项15 | |
| define16 | number | 表头自定义项16 | |
| memory | string | 备注 | |
| cvoucherstate | string | 状态 |
3.5正确返回示例
JSON示例:
application/json;charset=UTF-8
{
"page_index":"1",
"rows_per_page":"20",
"purchaserequisitionlist":[
{
"cvoucherstate":"审核",
"define1":"徐海",
"define2":"",
"define3":"",
"define4":"",
"define5":"",
"define6":"",
"define16":"",
"define7":"",
"date":"2014-12-0200:00:00.0",
"define8":"",
"define9":"",
"purchasetypecode":"",
"departmentcode":"",
"maker":"demo3",
"businesstype":"普通采购",
"code":"0000000001",
"memory":"",
"define15":"",
"define14":"",
"define13":"",
"define12":"",
"define11":"",
"define10":"",
"personcode":""
},
{
"cvoucherstate":"审核",
"define1":"",
"define2":"",
"define3":"",
"define4":"",
"define5":"",
"define6":"",
"define16":"",
"define7":"",
"date":"2014-12-0200:00:00.0",
"define8":"",
"define9":"",
"purchasetypecode":"",
"departmentcode":"",
"maker":"demo3",
"businesstype":"固定资产",
"code":"0000000002",
"memory":"",
"define15":"",
"define14":"",
"define13":"",
"define12":"",
"define11":"",
"define10":"",
"personcode":""
}
],
"row_count":"225",
"errmsg":"",
"page_count":"12",
"errcode":"0"
}
3.6错误返回示例
application/json;charset=UTF-8
{
"errcode":"30021",
"errmsg":"此应用未上线"
}