|
问题:自定义表单新建和单据查看明细界面相关处如何增加选择源单字段?
操作步骤:
1、首先在Navicat.exe中执行 ldcrm_add_choosebillfield.sql 添加存储过程
2、模块增加字段的调用方法,以自定义表单2为例:
-- 模块增加单选客户
CALL ldcrm_add_choosebillfield('CustomForm02',73);
-- 模块增加单选联系人
CALL ldcrm_add_choosebillfield('CustomForm02',57);
-- 模块增加单选销售机会
CALL ldcrm_add_choosebillfield('CustomForm02',76);
-- 模块增加单选项目
CALL ldcrm_add_choosebillfield('CustomForm02',82);
-- 模块增加单选项目任务
CALL ldcrm_add_choosebillfield('CustomForm02',241);
-- 模块增加单选服务单
CALL ldcrm_add_choosebillfield('CustomForm02',240);
-- 模块增加单选产品
CALL ldcrm_add_choosebillfield('CustomForm02',59);
-- 模块增加单选供应商
CALL ldcrm_add_choosebillfield('CustomForm02',81);
-- 模块增加单选供应商联系人
CALL ldcrm_add_choosebillfield('CustomForm02',96);
-- 模块增加单选合同订单
CALL ldcrm_add_choosebillfield('CustomForm02',80);
-- 模块增加单选服务合同
CALL ldcrm_add_choosebillfield('CustomForm02',243);
3、执行完SQL之后,清除CRM软件缓存
ldcrm_add_choosebillfield.sql
(5.07 KB, 下载次数: 781)
|
|