1
Jianw
9 天以前 70f29da38121b9a467841253e3268feb5df02902
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--[[
    编码: JX-911-02
    名称:  测试入库口货位计算
    作者:HAN
    日期:2025-1-29
 
    级别:项目
    
    函数: main
 
    功能:
        -- 模拟在料箱库的入口输送线入口处(库区K4)任务,用于测试巷道任务均衡时需要大量任务来进行测试
        -- 任务号 TEST-XX-001 开头,便于数据清理,在模拟入库任务前先删除原来的模拟入库任务
 
    更改记录:
       
--]]
 
 
wms_wh = require( "wms_wh" )
 
 
function main( strLuaDEID )
    local nRet, strRetInfo
 
    nRet, strRetInfo = jx_base.Get_StorageCache_Loc( strLuaDEID )
    if ( nRet ~= 0 ) then lua.Error( strLuaDEID, debug.getinfo(1), strRetInfo ) end
 
    lua.Debug( strLuaDEID, debug.getinfo(1), "Location -->", strRetInfo )
 
    mobox.setInfo( strLuaDEID, strRetInfo )
end