移动销售订单添加库存项目

时间:2021-05-13 14:32:39

标签: acumatica acumatica-kb

我正在尝试将添加库存项目弹出窗口添加到移动销售订单 (SO301000)。我成功添加了项目列表(InventoryLookup)。但是,我想添加过滤器,但它不起作用。

我正在尝试遵循文档 https://help-2020r1.acumatica.com/(W(4))/Help?ScreenId=ShowWiki&pageid=7244493f-a03a-4efa-9cef-18f2d4f08682

<块引用>

RedirectToContainer="InventoryLookup$List$InventoryLookupInventory"

$(document).ready(function(){  
   $("#selbox").on("change",function(){

        var selboxId = $(this).val();

        $.ajax({
            url:"action.php",
            type:"POST",
            cache:false,
            data:{selboxId:selboxId},
            success:function(data){
                $("#sel-number").html(data);
            }
        });
    });
});

我做错了什么?

0 个答案:

没有答案
相关问题