2.仓库查询(gy.erp.warehouse.get)

马浩栋发表于:2019年01月28日 16:40:09更新于:2019年01月30日 09:30:55

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

string

页码

默认1

page_size

string

每页大小


start_date

datetime

开始时间


end_date

datetime

结束时间


date_type

int

时间类型

0:创建时间

1:修改时间

默认1

has_del_data

boolean

是否附带返回已删除的仓库数据

true:返回

false:不返回

默认false

code

string

仓库代码


 Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.warehouse.get",
    "page_no": "1",
    "page_size": "10",
    "code": "16",
    "sign": "B9E95F000B3D137A2DBDC37CCFCE567E"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorCode

string

错误代码



subErrorCode

string

子错误代码



errorDesc

string

错误描述



subErrorDesc

string

子错误描述



requestMethod

string

请求方法



warehouses

warehouse []

仓库列表



total

int

总记录数



 warehouse:

字段名

类型

描述

必填

备注

code

string

代码



name

string

名称



address

string

地址



note

string

备注



create_date

datetime

创建时间



modify_date

datetime

修改时间



contact_name

string

联系人



contact_phone

string

联系电话



contact_mobile

string

联系手机



type_name

string

仓库类型



area_name

string

地区信息



is_del

boolean

删除状态


已删除的仓库数据返回true,未删除的仓库数据返回false

is_warehouse_stock

boolean

是否启用了库位库存



 Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.warehouse.get",
    "warehouses": [{
        "code": "16",
        "name": "测试仓库1",
        "address": "",
        "note": "",
        "create_date": "2016-08-04 19:37:54",
        "modify_date": "2016-08-04 19:37:54",
        "contact_name": "",
        "contact_phone": "",
        "contact_mobile": "",
        "type_name": "嗨云",
        "area_name": "山西省-阳泉市-郊区",
        "is_del": false,
        "is_warehouse_stock": false
    }],
    "total": 1
}