API接口文档

订单待开票 - 列表

创建于 2021-10-15 / 最近更新于 2021-10-15 / 869
字体: [默认] [大] [更大]

简要描述

订单待开票列表

接口版本

版本号 制定人 制定日期 修订日期
1.0.0 Devil 2020-09-29

请求URL

plugins/index&pluginsname=invoice&pluginscontrol=order&pluginsaction=index

请求方式

POST

公共参数

参数名 是否必须 类型 默认值 描述
application string web 请求应用、参考公共中详解
application_client_type string pc 请求客户端、参考公共中详解
token string token

请求参数

{
    "page": 1
}
参数名 是否必须 类型 默认值 描述
page int 分页值

返回示例

正确时返回

{
    "msg": "success",
    "code": 0,
    "data": {
        "total": 1,
        "page_total": 1,
        "data": [
            {
                "id": "216",
                "order_no": "20211015103228688828",
                "user_id": "1",
                "shop_id": "1",
                "shop_user_id": "4148",
                "warehouse_id": "2",
                "user_note": "",
                "express_id": "0",
                "express_number": "",
                "payment_id": "1",
                "status": "4",
                "pay_status": "1",
                "extension_data": "",
                "buy_number_count": "1",
                "increase_price": "0.00",
                "preferential_price": "0.00",
                "price": "1499.45",
                "total_price": "1499.45",
                "pay_price": "1499.45",
                "refund_price": "0.00",
                "returned_quantity": "0",
                "client_type": "pc",
                "order_model": "2",
                "is_under_line": "1",
                "pay_time": "1634268610",
                "confirm_time": "1634265148",
                "delivery_time": "1634268630",
                "cancel_time": "0",
                "collect_time": "1634268635",
                "close_time": "0",
                "comments_time": "0",
                "is_comments": "0",
                "user_is_comments": "0",
                "is_delete_time": "0",
                "user_is_delete_time": "0",
                "shop_is_delete_time": "0",
                "add_time": "2021-10-15 10:32:28",
                "upd_time": "2021-10-15 11:30:35"
            }
        ]
    }
}

错误时返回

{
    "msg": "error",
    "code": -1,
    "data": []
}

返回参数说明 -> data

参数名 是否必须 类型 描述
page_total int 分页总数
total int 数据总数
data array 数据列表

备注

更多返回错误代码请看首页的错误代码描述

1 人点赞过