mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-13 07:04:21 +08:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
export function getLocatorList({
|
|
warehouseId
|
|
}) {
|
|
const { getEntitiesList } = require('@/api/ADempiere/persistence')
|
|
|
|
return getEntitiesList({
|
|
tableName: 'M_Locator',
|
|
whereClause: `M_Warehouse_ID = ${warehouseId}`
|
|
})
|
|
}
|