目录

接入规范

查询待开票列表


查询待开票列表

GET
api/invoice/selectAllWaitInvoiceList

系统请求参数


参数名 中文参数名 类型 是否必填  描述
appKey             应用key string 客户提供的appKey
signStr 签名 string 客户提供的appKey和客户提供的appSecret加密生成
timeStamp 请求时间戳 long 单位:秒

业务请求参数



参数名 中文参数名 类型 是否必填 描述

pageIndex

页码

string

pageSize

页数

string

invoiceFeeType

类型

int

1运费,2放空费

orderSns

福佑单号

string 多个以“,”分隔,invoiceFeeType为运费时,orderSns只针对运费清单有效

thirdSns

三方单号

string 多个以“,”分隔,不可同时传orderSns

orderStartTime

下单起始时间

long 时间戳
orderEndTime

下单结束时间

long 时间戳

返回参数


参数名
中文参数名 类型 是否必填 描述
code 返回码 string code = 0,成功
desc 描述 string

请求示例


{
    "pageIndex" : 1,
    "pageSize" : 30,
    "invoiceFeeType" : 1
}

返回示例


{
    "status": {
        "desc": "操作成功",
        "code": 0
    },
    "data": [              
        {
            "invoiceFeeType": 1,
            "invoiceFeeTypeDesc": "运费",
            "orderList": [
            {
            "id": 190,
            "orderSn": "20000128714",
            "invoiceMoney": 8480,
            "exceptionStatus": 2, 
            "exceptionstatusenum": "UNMARK",
            "exceptionName": "未标记",    
            "startPlace":"始发地(市)名称",
            "endPlace":"目的地(市)名称",
            "carLengthId": 11,               
            "carModelId": 1,
            "carLengthName": "9.6",
            "carModelName": "厢式车",
            "startProvinceName": "始发省名称",
            "startCityName": "始发市名称",
            "startDistrictName": "始发区名称",
            "endProvinceName": "目的省名称",
            "endCityName": "目的市名称",
            "endDistrictName": "目的区名称",
            "goodsLoadDate":123560054540,
            "confirmTime":12312312312312,
            "isAppealing":1
        }]
        },
        {
            "invoiceFeeType": 2,
            "invoiceFeeTypeDesc": "放空费",
            "orderList": [
            {
            "id": 190,
            "orderSn": "20000128714",       
            "invoiceMoney": 8480,          
            "exceptionStatus": 2, 
            "exceptionstatusenum": "UNMARK",
            "exceptionName": "未标记",    
            "startPlace":"始发地(市)名称",
            "endPlace":"目的地(市)名称",
            "carLengthId": 11,               
            "carModelId": 1,
            "carLengthName": "9.6",
            "carModelName": "厢式车",
            "startProvinceName": "始发省名称",
            "startCityName": "始发市名称",
            "startDistrictName": "始发区名称",
            "endProvinceName": "目的省名称",
            "endCityName": "目的市名称",
            "endDistrictName": "目的区名称",
            "goodsLoadDate":123560054540,
            "confirmTime":12312312312312,
            "isAppealing":1
        }]
      }
     ]
}