金蝶K3销售订单客户选择页面禁止显示未审核客户

来源:互联网 发布:linux服务器配置怎么看 编辑:程序博客网 时间:2024/04/28 00:15

为限制未经审核的客户下单,可以对销售订单的客户选择页面进行限制,如果客户未审核,在该页面就不显示,进而达到无法下单的目的。

更新代码如下:

update ictemplate set FFilter='t2.FitemID in (select Fitemid from t_item where Fitemclassid=1 and isnull(FChkUserID,0)>0)' where fid='S01' and FFieldName='FCustID'

如果要取消管控,执行以下语句即可:

update ictemplate set FFilter='' where fid='S01' and FFieldName='FCustID'


原创粉丝点击