You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4.7 KiB
4.7 KiB
查询物料详情(GetMaterial)
此接口用于查询物料详情
基本信息
方法:POST
URL: http://localhost:8033/open/GetMaterial
请求
请求参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
profile | string | 是 | 厂区代码 |
materialCode | string | 否 | 物料编码 |
示例 1:查询物料详情
{
"data": {
"profile": "测试",
"materialCode": "M.1.1.N.107"
}
}
响应
响应字段
字段 | 类型 | 说明 |
---|---|---|
materialCode | string | 物料编码 |
materialTypeCode | string | 物料类别代码 |
materialTypeDesc | string | 物料类别名称 |
descriptions | string | 物料描述 |
flag | int | 数据状态:0禁用 1启用 |
spec | string | 规格 |
model | string | 型号 |
erpTypeCode | string | ERP物料类型 |
unitId | string | 主单位 |
astUnitId | string | 辅单位 |
changeRate | string | 换算率 |
isNeedCheck | string | 是否检验 |
validDay | string | 保质期 |
validType | string | 保质期类型 |
cellGrade | string | 辅助属性:等级 |
cellColor | string | 辅助属性:颜色 |
cellEff | string | 辅助属性:效率 |
cellUop | string | 辅助属性:功率 |
currentGrade | string | 辅助属性:电流 |
isBatchManage | string | 是否启用批次管理 |
createTime | string | 创建时间 |
attrs | Array | 物料属性 |
attrs字段
字段 | 类型 | 说明 |
---|---|---|
materialCode | string | 物料编码 |
materialTypeCode | string | 物料类别代码 |
materialTypeDesc | string | 物料类别名称 |
attrCode | string | 属性代码 |
attrName | string | 属性名称 |
attrValue | string | 物料属性值 |
attrValueCode | string | 物料属性值代码 |
flag | int | 数据状态:0禁用 1启用 |
查询成功时,响应如下:
{
"clock": "2023-07-05 14:04:45.089",
"status": "ok",
"data": {
"info": {
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"descriptions": "电池片",
"flag": 1,
"createTime": "2023-04-08 23:43:38.023",
"attrs": [
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_uop",
"attrName": "单片功率",
"attrValue": "7.82",
"attrValueCode": "",
"flag": 1
},
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_color",
"attrName": "电池颜色",
"attrValue": "淡蓝",
"attrValueCode": "",
"flag": 1
},
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_grade",
"attrName": "电池等级",
"attrValue": "A",
"attrValueCode": "",
"flag": 1
},
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_size",
"attrName": "电池规格",
"attrValue": "M10",
"attrValueCode": "",
"flag": 1
},
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_eff",
"attrName": "电池效率",
"attrValue": "22.9%",
"attrValueCode": "",
"flag": 1
},
{
"materialCode": "M.1.1.N.107",
"materialTypeCode": "CELL",
"materialTypeDesc": "电池片",
"attrCode": "cell_type",
"attrName": "电池类型",
"attrValue": "N",
"attrValueCode": "",
"flag": 1
}
]
}
}
}
查询报错:
{
"clock": "2023-06-25 20:00:00.000",
"status": "exception",
"message": "查询物料详情失败",
"data": {}
}