1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| --[[
| 编码: WMS-04-20
| 名称: 货位-重置货位容器数量
| 作者:HAN
| 日期:2025-1-29
|
| 级别:固定 (说明本段代码在项目中不太会变化)
|
| 函数: RestLocation
|
| 功能:
|
|
| 更改记录:
|
| --]]
| wms_base = require ("wms_base")
|
| function RestLocation ( strLuaDEID )
| local nRet, strRetInfo
|
| nRet, strRetInfo = wms.wms_ResetZoneStoreNum( strLuaDEID, "", 1 )
| if ( nRet ~= 0 ) then lua.Error( strLuaDEID, debug.getinfo(1), "wms_ResetZoneStoreNum失败! "..strRetInfo ) end
| end
|
|