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
--[[
    编码: WMS-30-11
    名称: 货位组-触发数据校验
    作者:HAN  
    日期:2025-1-29
 
    级别:固定 (说明本段代码在项目中不太会变化)
    
    函数: TriggeDataCheck
 
    功能:
        
--]]
 
json  = require ("json")
mobox = require ("OILua_JavelinExt")
 
function TriggeDataCheck ( strLuaDEID ) 
    local nRet, strRetInfo
 
    nRet, strRetInfo = mobox.triggerClsEventBatch( strLuaDEID, "Location_Group", "", "数据校验" )
    if ( nRet ~=0 ) then
        lua.Error( strLuaDEID, debug.getinfo(1), "触发数据校验事件失败!"..strRetInfo )
    end  
end