You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
namespace BP.WF.HttpHandler
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 页面功能实体
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class WF_GPM_CreateMenu : DirectoryPageBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 构造函数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public WF_GPM_CreateMenu()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建独立流程
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public string StandAloneFlow_Save()
|
|
|
|
|
{
|
|
|
|
|
//首先创建流程. 参数都通过 httrp传入了。
|
|
|
|
|
BP.WF.HttpHandler.WF_Admin_CCBPMDesigner_FlowDevModel handler = new WF_Admin_CCBPMDesigner_FlowDevModel();
|
|
|
|
|
string flowNo = handler.FlowDevModel_Save();
|
|
|
|
|
return flowNo;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模板复制
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public string Menus_DictCopy()
|
|
|
|
|
{
|
|
|
|
|
// BP.CCBill.FrmDict en = new CCBill.FrmDict();
|
|
|
|
|
// en.doC
|
|
|
|
|
return "复制成功.";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|