- V4.2.4
- 基线
- 嗨报销(app)-报销
- 嗨报销(app)-公共
- 嗨报销(app)-发票
- 嗨报销(app)-挂帐单
- 嗨报销(app)-大数据
- 请款(app)
- V4.4.0
- 嗨报销(app)-报销
- 嗨报销(app)-挂帐单
- 嗨报销(app)-发票
- Copyright (C) 正大天晴药业集团股份有限公司
- 核心接口
- 嗨报销(app)-大数据
- 嗨报销(app)-报销
- 嗨报销(app)-公共
- 嗨报销(app)-发票
- v4.4.1
- v4.3.4
- v4.3.5
- v4.4.0.1
- v4.5.0.1
- V4.5.3
- v4.5.1.1
- v4.5.4
- v4.5.6
- v4.5.7
- 智审v1.1.0
- 智审v1.2.0
- 智审v1.1.0补充,风控接口
- v4.5.9
查询报销单列表状态分组
POST
/app/exp/qryExpOrderGroup
请求参数
Body 参数application/json
cid
string | null
创建人cid
businessTypeCodes
array[string] | null
可选
BTY006:租房,BTY007:车辆,BTY008:其他,BTY009:项目,BTY010:培训,BTY011:采购
startDate
string | null
开始日期
endDate
string | null
结束日期
businessCodes
array[string] | null
业务类型编码
orderStates
array[string] | null
报销单的状态
auditStatuss
array[string] | null
可选
全部 ALL
草稿 1 DRAFT
审批中 2、5 APPROVING
待修改/补充附件 11 WAITMODFY
待支付 21 WAITPAY
已支付 23、26 DONE
驳回/终止 3、6、27 OVERRULE
fuzzyValue
string | null
可选
compayCodes
array[string] | null
公司编码列表
orderType
string | null
可选
orderNum
string | null
单据号
payeeName
string | null
收款人名称
planName
string | null
计划名称
contractName
string | null
合同名称
contractCode
string | null
合同编码
userCode
string | null
用户工号
示例
{
"cid": "string",
"businessTypeCodes": [
"string"
],
"startDate": "string",
"endDate": "string",
"businessCodes": [
"string"
],
"orderStates": [
"string"
],
"auditStatuss": [
"string"
],
"fuzzyValue": "string",
"compayCodes": [
"string"
],
"orderType": "string",
"orderNum": "string",
"payeeName": "string",
"planName": "string",
"contractName": "string",
"contractCode": "string",
"userCode": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/app/exp/qryExpOrderGroup' \
--header 'Content-Type: application/json' \
--data-raw '{
"cid": "string",
"businessTypeCodes": [
"string"
],
"startDate": "string",
"endDate": "string",
"businessCodes": [
"string"
],
"orderStates": [
"string"
],
"auditStatuss": [
"string"
],
"fuzzyValue": "string",
"compayCodes": [
"string"
],
"orderType": "string",
"orderNum": "string",
"payeeName": "string",
"planName": "string",
"contractName": "string",
"contractCode": "string",
"userCode": "string"
}'
返回响应
🟢200成功
application/json
Body
msgCode
string | null
消息码
message
string | null
消息描述
sysMessage
string | null
消息描述
responseData
array[object (ExpOrderGroupFrontDTO) {2}] | null
业务数据
auditStatus
string | null
可选
count
integer | null
数量
ext
object (Object)
扩展数据
iTotalRecords
integer | null
可选
iTotalDisplayRecords
integer | null
可选
示例
{
"msgCode": "",
"message": "",
"sysMessage": "",
"responseData": [
{
"auditStatus": "",
"count": 0
}
],
"ext": {},
"iTotalRecords": 0,
"iTotalDisplayRecords": 0
}