workflow

利用开源的驰骋工作流程引擎,处理的税收业务流程应用案例之二.

白昼怎懂夜的黑 提交于 2019-12-07 20:05:06
利用开源的驰骋工作流程引擎,处理的税收业务流程应用案例之二. ----------------------------------------------------------- 说明: 1,你所用的版本是与ccflow的vip用户版本是一致的。 2,只要你耐心的研究ccflow,你一定会使用上ccflow。 3, 所有安装遇到的问题,我们都有总结。所有流程案例,我们都做了demo. 你总能在我们的文档里找到答案。 找不到答案就反馈到群论坛里,会有人回答你的问题。 4, 如果遇到bug或者有其它的需求建议,请反馈在群论坛里,我们去解决它. 5, 不要认为你的需求多么个性化而怀疑ccflow 是否能够实现它,办法总比困难多。 6, 以下的流程与表单设计全部是无代码实现, 彻底实现 零代码,不是不可能是你想不到。 ------------------------------------------------------------------------------------ 税收优惠管理服务 139 支付残疾职工工资加计扣除优惠 办税厅综合服务岗—受理审核 税收优惠管理服务 141 固定资产加速折旧优惠 办税厅综合服务岗—受理审核 税收优惠管理服务 136 小型微利企业低税率优惠 办税厅综合服务岗—受理审核 税收优惠管理服务 144 专用设备投资税额抵免优惠 办税厅综合服务岗

What is the differences between RetrieveRequest and IOrganizationService.Retrieve in CRM?

痞子三分冷 提交于 2019-12-07 19:16:16
问题 I'm new in CRM workflow step development by C#. I need to know what is the main difference between RetrieveRequest and Retrieve in IOrganizationService . When must use which one? And is there any example to show how use this objects to run in a performer manner? 回答1: In most cases the Retrieve method suffices. The RetrieveRequest however adds an interesting feature: it provides the option to query data associated with the retrieved object in one go. Imagine you need invoice data along with

View website live after Git push [duplicate]

最后都变了- 提交于 2019-12-07 19:09:04
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Git Post-Receive Hook for Website Staging I started learning Git today and I'm stuck on one thing. When I push my local production repository to my remote staging repository, I would like to immediately be able to view my newly pushed files live. When I try to look for my files in my remote repository (via an FTP client), I can't find them. Do I need to perform some advanced Git magic in order to achieve this

What do I do when a pull request is cherry picked?

筅森魡賤 提交于 2019-12-07 17:24:57
问题 I forked a project on GitHub, pushed some changes, and opened a pull request. The maintainer signed-off and applied the changes in a new commit (rather than merging my commit), and so the commit graph looked like this: * 03a0687 (origin/master) frotz: Corrected MAN_PREFIX | * 11d3e98 (HEAD, master, jleedev/master) frotz: Corrected MAN_PREFIX |/ * 9c3dd1a yajl: use direct patch from Github. Obviously, I have to either rebase or force-update my local branch. Do I then have to force-push to my

TeamCity push feature branches to master branch

喜你入骨 提交于 2019-12-07 16:44:39
问题 Is there any way to push successfully built feature branches to another branch? I'd like to have something like that: Git repository (Gitorious/GitHub whatever). Branches: master (current project's code) quality-assurance (branche where code waits for QA) feature-branches (many remote branches, where devs can develope their features) Developer should have only read access to master and read/write to his feature branches QA read/write quality-assurance branch TeamCity - read/write master,

Data-driven state machine application

柔情痞子 提交于 2019-12-07 16:36:21
问题 We are currently working on a "data-driven" state machine application. Right now, the state flows are all configured in the database, but none of the decision/business logic is configurable in the DB with our current design. Because of this, the code has to basically "know" the state flow as well, so there's really no point in configuring the flow in the database. I have a design in mind that would allow us to wire together a state pattern using dependency-injection (Spring.NET), but I'm not

Mercurial workflow with selective feature deployment and continuous integration

爷,独闯天下 提交于 2019-12-07 16:31:42
问题 for a team of 12 developers, can you help me determine a process and workflow for building and deploying a product using mercurial for source control and team city for build server? we have a system that tracks issues and enhancement requests. most of these are pretty small bugs and enhancement worked on by one developer in a timeframe of a day or two up to a week. what i want to accomplish is to have business persons and IT management negotiate priorities for tickets on which developers work

workflow-core 简介

北城余情 提交于 2019-12-07 15:06:34
最近想做一个OA相关的网站开发,一直都听说有workflow的东西,之前也断断续续学习过 Workflow Foundation 4.0,还是没有搞明白到底能够用它做什么 但还是觉得workflow在某种情形下应该可以适用,虽然还没有答案,网上搜楼了一通,发现一个workflow-core的东西,觉得挺有意思,遂停下来,琢磨一下,现分享与大家。 * 简介 workflow core的GitHub主页 如主页上介绍的,workflow core作为一个轻量级workflow引擎,可以嵌入到项目中,其底层是用.net standard 2.0开发,可以用来追踪长时间运行的任务状态,功能也比较强大,支持插件形式持久化,和多节点并行处理,貌似很牛。并且目前有给一个 Conductor 项目 ,就是使用workflow core作为内核的workflow服务器(原来运行workflow,需要单独的一个服务器啊),Conductor这里就不展开了。workflow core支持fluent语法,写起来也非常美观,虽然没有WF那样有图形化的操作界面,但感觉代码比较干净。 - 插播.Net Standard 2.0 简介 开始的时候不了解什么是.Net Standard 2.0,这篇文章讲得比较清楚, .Net Standard 与 .Net Framework关系 还有这个 .NET Core

Java application: Sequence workflow pattern

左心房为你撑大大i 提交于 2019-12-07 15:00:37
问题 I have a spring web application. When a user calls save endpoint, system should execute many external calls to save the state in multiple microservices. However, those steps depend on each other. In other words I have a sequence of steps to perform. sequence pattern Just calling a set of steps one by one is not a big deal, I can just create class for each step and call them one by one doing appropriate modifications between the steps. However, each of the steps can fail and if it happens it

Python Workflow like RStudio?

你离开我真会死。 提交于 2019-12-07 14:31:29
问题 I use Python as my main programming language, sometimes switching to R for quick data-analysis tasks due to it’s huge library for statistical programming purposes (although pandas for python is great!). I guess that most R-Users go for R-Studio, which is like an IDE for R. There are probably hundreds of IDE’s for Python, but i’d like to stick with VIM and IPython. Although there is the vim-ipython-plugin, i can’t recreate the R-Studio workflow, which is mainly: Write code in the source-editor