1
Jianw
9 天以前 f6f5e6b632d6649386a380558d84003f3de7ec6c
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-999-03
   名称: 
   作者:
   日期:2025-05-21
 
   函数: Test
   功能:
 
   更改记录:
 
--]]
 
wms_inv  = require ("wms_inventory")
 
function Test( strLuaDEID )
    local nRet, strRetInfo
    local cntr_code = "FB-0004"
    nRet, strRetInfo = wms_inv.After_CntrLoc_UnBinding( strLuaDEID, cntr_code )
    if ( nRet ~= 0 ) then
        lua.Stop( strLuaDEID, "strRetInfo" )
        return
    end
end