文档
测试

1、发票记录列表

GET
https://ledger-stag-internal.cyy928.com/api/ledgerService/self/receivable/invoices

请求参数

参数名
类型
描述
必填
selfReceivableId
Long
账单ID
必填
agencyId
Long
服务商ID
必填
pageNo
Integer
页码
必填
pageSize
Integer
页大小
必填

响应参数

参数名
类型
描述
必填
id
Long
ID
必填
invoiceNo
String
发票号码
必填
invoiceAmount
BigDecimal
关联金额
必填
type
String
发票类型:general("普票"), special("专票");
必填
syncStatus
String
同步状态:UNSYNC("待同步"), SYNCING("同步中"), SUCCESS("同步成功"), FAILED("同步失败");
必填
createdDt
String
创建时间
必填
imageUrl
String
发票图片json字符串
必填
invoiceDt
Date
发票录入时间
必填
isDiscard
Boolean
是否作废
必填

说明 / 示例

``` { "pageNo": 1, "pageSize": 20, "pageCount": 1, "totalItemsCount": 1, "items": [{ "imageUrl": "[\"http://p6ym080y3.bkt.clouddn.com/img/20180614/1448/1528966965109.jpg\",\"http://p6ym080y3.bkt.clouddn.com/img/20180614/1448/1528966965109.jpg\"]", "invoiceAmount": 33.00, "id": 10000000, "invoiceNo": "555555", "type": "general", "syncStatus": "UNSYNC", "createdDt": "2021-09-14 13:21:33", "invoiceDt": "2021-09-16" }], "otherInfo": null, "version": null, "totalAmount": null, "hasNextPage": false } ```