• 系统首选项-》工作流-》新建
    保存后在工作流设计中将内容复制到编辑器中。

    出库流程

    支持分批次出库,支持外部单据转化为出库单并在出库结束后通知原始单据

    流程图:

    模块:storage.stockOut
    应用:仓储管理

    start=>start: 新出库单:>
    end=>end: 完成出库:>
    response=>inputoutput: 通知等待节点:> m:Storage/StockOut::response_to_outside
    save_bill=>operation: 保存出库单:> u:status=1
    confirm=>operation: 确认出库:> m:Storage/StockOut::confirm_stock_out
    check_if_all_out=>condition: 是否完全出库:> m:Storage/StockOut::check_if_all_out
    continue_out=>subroutine: 可以继续出库:> n:n start(right)->save_bill(right)->confirm->check_if_all_out
    check_if_all_out(yes)->response->end
    check_if_all_out(no)->continue_out->confirm(right) start=>auto:auto
    end=>auto:auto
    response=>auto:auto
    save_bill=>auto:owner
    confirm=>auto:owner
    check_if_all_out=>auto:auto
    continue_out=>auto:auto
  • 入库流程

    支持分批次入库,支持外部单据转化为入库单并转化

    流程图:

    模块:storage.stockIn
    应用:仓储管理

    start=>start: 新入库单:>
    end=>end: 完成入库:>
    response=>inputoutput: 通知等待节点:> m:Storage/StockIn::response_to_outside
    save_bill=>operation: 保存入库单:> u:status=1
    confirm=>operation: 确认入库:> m:Storage/StockIn::confirm_stock_in
    check_if_all_in=>condition: 是否完全入库:> m:Storage/StockIn::check_if_all_in
    continue_out=>subroutine: 可以继续入库:> n:n start(right)->save_bill(right)->confirm->check_if_all_in
    check_if_all_in(yes)->response->end
    check_if_all_in(no)->continue_out->confirm(right) start=>auto:auto
    end=>auto:auto
    response=>auto:auto
    save_bill=>auto:owner
    confirm=>auto:owner
    check_if_all_in=>auto:auto
    continue_out=>auto:auto
  • 销售订单

    支持生成应收款和出库单

    流程图:

    模块:sale.orders
    应用:销售管理

    start=>start: 新订单:>
    already_stockout=>operation: 已出库:>
    save_bill=>operation: 保存订单:> u:status=1
    make_receivable=>operation: 生成应收款:> m:Sale/Orders::make_receivable
    make_stockout=>operation: 生成出库单:> m:Sale/Orders::convert_to_stock_out
    end=>end: 完成订单:> u:status=2 start(right)->save_bill->make_receivable(right)->make_stockout->already_stockout->end start=>auto:auto
    already_stockout=>auto:wait
    save_bill=>auto:owner
    make_receivable=>auto:owner
    make_stockout=>auto:owner
    end=>auto:auto
  • 采购订单

    支持生成应付款及入库单
    流程图:

    模块:purchase.purchase
    应用:采购管理

    start=>start: 新采购单
    end=>end: 完成采购:> u:status=2
    save_bill=>operation: 保存采购单:> u:status=1
    make_payment=>operation: 生成应收款:> m:Purchase/Purchase::make_payment
    make_stockin=>operation: 生成入库单:> m:Purchase/Purchase::convert_to_stock_in
    already_stock_in=>operation: 已入库 start(right)->save_bill->make_payment(right)->make_stockin->already_stock_in->end start=>auto:auto
    save_bill=>auto:owner
    make_payment=>auto:owner
    make_stockin=>auto:owner
    already_stock_in=>auto:wait
    end=>auto:auto
     
  • 收款工作流

    支持多批次收款,支持其他流程回调

    流程图:

    模块:finance.receivables
    应用:财务模块

    start=>start: 新收款单:>
    end=>end: 已收款:>
    confirm=>operation: 确认收款:> m:Finance/Receivables::confirm
    check_full_received=>condition: 是否完全收款:> m:Finance/Receivables::check_full_received
    continue_confirm=>operation: 可继续收款:>
    response=>inputoutput: 通知外部等待相应节点:> m:Finance/Receivables::response_to_outside start(right)->confirm->check_full_received
    check_full_received(no)->continue_confirm->confirm
    check_full_received(yes)->response->end start=>auto:auto
    end=>auto:auto
    confirm=>auto:owner
    check_full_received=>auto:auto
    continue_confirm=>auto:auto
    response=>auto:auto
  • 付款工作流

    支持批次付款,支持其他流程回调

    流程图:

    模块:finance.payables
    应用:财务模块

    start=>start: 新付款单:>
    end=>end: 已付款:>
    confirm=>operation: 确认付款:> m:Finance/Payables::confirm
    check_full_paid=>condition: 是否完全付款:> m:Finance/Payables::check_full_paid
    continue_confirm=>operation: 可继续付款:>
    response=>inputoutput: 通知外部等待相应节点:> m:Finance/Payables::response_to_outside start(right)->confirm->check_full_paid
    check_full_paid(no)->continue_confirm->confirm
    check_full_paid(yes)->response->end start=>auto:auto
    end=>auto:auto
    confirm=>auto:owner
    check_full_paid=>auto:auto
    continue_confirm=>auto:auto
    response=>auto:auto

ones工作流预设的更多相关文章

  1. OA工作流规格--转

    工作流是整个OA系统的核心,也是BPM的核心,工作流到 底需要实现哪些功能,本文就此以用户的需求为蓝本进行阐述.工作流表面看起来是很简单的,无非是一个表单模板,一个流程定义,然后起草后根据设定的流程一 ...

  2. 通过新的 Azure 媒体服务资源管理器工具管理媒体工作流

    Xavier Pouyat    Azure 媒体服务高级项目经理 几个月前,一家广播公司找到了我,希望我向他们提供一种图形界面工具,好让他们使用 Azure媒体服务来上传.管理资产并对资产进行编 ...

  3. 利用django打造自己的工作流平台(一):从EXCEL到流程化运作

    因工作所需以及管理个人一些日常事项,自己基于django(一个基于python的web框架,详细介绍可查阅相关资料)开发了一个简易的工作流平台[平台地址].本文首先简要介绍工作流平台的设计思想及其在项 ...

  4. 前端实用程序包utils - 开发工作流(一)

    写在前面 早年间有幸在Raychee哥门下当小弟,学到两把刷子.在编程路上,他的很多思想深深影响了我,比如笔者今天要分享的主题.在程序开发中,有个utils包,叫做实用程序包,程序员们会把项目中通用的 ...

  5. 工作流引擎在vivo营销自动化中的应用实践 | 引擎篇03

    作者:vivo 互联网服务器团队- Cheng Wangrong 本文是<vivo营销自动化技术解密>的第4篇文章,分析了在营销自动化业务引入工作流技术的背景和工作流引擎的介绍,同时介绍了 ...

  6. Unity3d学习 预设体(prefab)的一些理解

    之前一直在想如果要在Unity3d上创建很多个具有相同结构的对象,是如何做的,后来查了相关资料发现预设体可以解决这个问题! 预设体的概念: 组件的集合体 , 预制物体可以实例化成游戏对象. 创建预设体 ...

  7. Oozie分布式任务的工作流——Spark篇

    Spark是现在应用最广泛的分布式计算框架,oozie支持在它的调度中执行spark.在我的日常工作中,一部分工作就是基于oozie维护好每天的spark离线任务,合理的设计工作流并分配适合的参数对于 ...

  8. Oozie分布式任务的工作流——邮件篇

    在大数据的当下,各种spark和hadoop的框架层出不穷.各种高端的计算框架,分布式任务如乱花般迷眼.你是否有这种困惑!--有了许多的分布式任务,但是每天需要固定时间跑任务,自己写个调度,既不稳定, ...

  9. 解析大型.NET ERP系统核心组件 查询设计器 报表设计器 窗体设计器 工作流设计器 任务计划设计器

    企业管理软件包含一些公共的组件,这些基础的组件在每个新项目立项阶段就必须考虑.核心的稳定不变功能,方便系统开发与维护,也为系统二次开发提供了诸多便利.比如通用权限管理系统,通用附件管理,通用查询等组件 ...

随机推荐

  1. django渲染模板时跟vue使用的{{ }}冲突解决方法

    var vm = new Vue({ el: '#app', // 分割符: 修改vue中显示数据的语法, 防止与django冲突 delimiters: ['[[', ']]'], data: { ...

  2. 算法入门系列2:k近邻算法

    用官方的话来说,所谓K近邻算法(k-Nearest Neighbor,KNN),即是给定一个训练数据集,对新的输入实例,在训练数据集中找到与该实例最邻近的K个实例(也就是上面所说的K个邻居), 这K个 ...

  3. linux命令(1):sed命令

    实例一: Config_file文件内容如下: sed去除注释行:sed -i -c -e '/^#/d' config_file  [会删除指定文件带有注释行] sed去除空行: sed -i -c ...

  4. HDU 2829 Lawrence(四边形优化DP O(n^2))

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2829 题目大意:有一段铁路有n个站,每个站可以往其他站运送粮草,现在要炸掉m条路使得粮草补给最小,粮草 ...

  5. Elasticsearch源码分析(一)启动流程 ModuleBuilder injector

    http://blog.csdn.net/u010994304/article/details/50452890 es启动脚本是bin目录下的elasticsearch. 脚本内容不再赘述,java主 ...

  6. Python 什么是ORM?

    关系映射 性能比源生sql效率略差一些 操作性更简单,快捷 Django的orm和sqlalchamy 区别 sqlalchamy没有django的功能全,不支持双下划线的连表跨表操作 sqlalch ...

  7. python标准库之【socket】

    socket通常也称作”套接字“.网络上的两个程序通过一个双向的通信连接实现数据的交换,这个连接的一端称为一个socket.socket 是网络连接端点.例如当你的Web浏览器请求www.fishc. ...

  8. 深度学习方法(五):卷积神经网络CNN经典模型整理Lenet,Alexnet,Googlenet,VGG,Deep Residual Learning

    欢迎转载,转载请注明:本文出自Bin的专栏blog.csdn.net/xbinworld. 技术交流QQ群:433250724,欢迎对算法.技术感兴趣的同学加入. 关于卷积神经网络CNN,网络和文献中 ...

  9. Combination Sum I&&II(经典的回溯算法题)

    I: Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C w ...

  10. Graph Cut

    转自:http://blog.csdn.net/zouxy09/article/details/8532111 Graph Cut,下一个博文我们再学习下Grab Cut,两者都是基于图论的分割方法. ...