码迷,mamicode.com
首页 > Windows程序 > 详细

金蝶二次开发C#

时间:2019-05-29 14:33:44      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:interface   mode   handler   object   ams   end   alert   项目   font   

1 建立C#类库项目

引用EBOS组建Kingdee.K3.BOS.PlugInModel

示例代码

 

usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
usingKingdee.K3.BOS.PlugInModel.Bill;
usingKingdee.K3.BOS.PlugInModel.Bill.Events;
namespaceKingdee.K3.BOS.Plugint
{
    public class BillPlugin : IBillPlugIn
    {
        private BillInterface m_oBillInterface
        public void Show(BillInterface oBillInterface)
        {
            m_oBillInterface = oBillInterface;
            m_oBillInterface.CommandClick += new CommandClickHandler(m_oBillInterface_CommandClick);
        }
        void m_oBillInterface_CommandClick(object sender, CommandClickEventArgs e)
        {
            switch (e.CommandName)
            {
                case "FBUTTON":
                    m_oBillInterface.Alert(m_oBillInterface.GetFieldValue("FBillNo").ToString());
                    break;
                default:
                    break;
            }}}}

4 DLL文件部署路径//K3ERP/KDHR/SITEFILE/WEBUI/BIN

插件中输入命名空间名+类名

可设置程序属性中的生成目录为//K3ERP/KDHR/SITEFILE/WEBUI/BIN方便测试和部署

调试附加到进程 w3wp.exewinSer系统)/aspnet_wp.exexp系统)

金蝶二次开发C#

标签:interface   mode   handler   object   ams   end   alert   项目   font   

原文地址:https://www.cnblogs.com/qiu18359243869/p/10943371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!