这四个网格对应的更多,都是对应一个功能
待办任务和提交任务是下面的,通过参数来区分的
cTaskFuncURL = 'Biz:\COLLABORATION\MyTaskFunc.Func';
待办任务
TSystemCore.FuncManager.RunFunc(Context, '', cTaskFuncURL, '-fNeedProcess -vvmTaskGrid -d待办', False, nil, False);
提交任务是
TSystemCore.FuncManager.RunFunc(Context, '', cTaskFuncURL, '-vvmTaskGrid -fPost -d交办', False, nil, False);
当前计划是
cPlanFuncURL = 'Biz:\COLLABORATION\PlanCenterFunc.Func';
我的客户是
cCustomerFuncURL = 'Biz:\OPERATION\CRMSPACE\CustomerMngFunc.Func'; |