kz-ui-base 1.0.173 → 1.0.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api/bd/item.js
CHANGED
|
@@ -39,6 +39,13 @@ export function listItemAttribute(itemId) {
|
|
|
39
39
|
method: 'get'
|
|
40
40
|
})
|
|
41
41
|
}
|
|
42
|
+
// 查询物料属性
|
|
43
|
+
export function listItemAttributeByItemNo(itemNo) {
|
|
44
|
+
return request({
|
|
45
|
+
url: '/bd/ItemAttribute/listItemAttributeByItemNo?itemNo=' + itemNo,
|
|
46
|
+
method: 'get'
|
|
47
|
+
})
|
|
48
|
+
}
|
|
42
49
|
|
|
43
50
|
export function listMdcAttributes(itemId) {
|
|
44
51
|
return request({
|
|
@@ -121,4 +128,12 @@ export function listItemByNos(itemNos) {
|
|
|
121
128
|
url: '/bd/item/getItemByItemNos?itemNos=' + itemNos,
|
|
122
129
|
method: 'get',
|
|
123
130
|
})
|
|
124
|
-
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export function listSortMaxByItemClassNo(query) {
|
|
134
|
+
return request({
|
|
135
|
+
url: '/bd/item/listSortMaxByItemClassNo',
|
|
136
|
+
method: 'get',
|
|
137
|
+
params: query
|
|
138
|
+
})
|
|
139
|
+
}
|