Odoo8.0销售订单是不是没有渠道管理概念?
- 
现在我们公司的业务有天猫店、自己的B2C网站,线下批销。因两块业务不在同一个系统里处理。导致数据割裂,业务不顺畅。现在需要整合。odoo8.0初步了解下来功能很全的,但是有一个疑问。如果我把网购订单和线下批销订单放在odoo销售订单模块处理,有几个问题,我不知道怎么配置,还请各位前辈指教。 
 1、网购订单,特别是我们有多个天猫店、还有自己的官网销售平台。所有这些订单集中在odoo的销售模块里,怎么没有一个订单类型区分:零售订单、批销订单。每个订单有不同的归属店铺,至少后面的统计各店铺的销量也方便呀,我看了老肖的淘宝订单处理模块,是通过订单号加前缀加以区分,这个处理方案,我觉得有点欠妥。
 2、为什么要区分零售订单和批销订单,有一个很多的区别是订单的处理流程上。比如批销订单,我们是款到发货,所以订单必须是财务先审核,才流转到仓库进行发货。但是网购订单,是需要客服批量审单的,是不需要财务审核的。
 说白了,现在大多公司的销售是多渠道的,直营门店+加盟店+网店+批销。因刚接触Odoo, 不知道Odoo是否现有的功能模块就可以配置出多渠道销售的管理。最起码也解决上面两个问题的。
 谢谢!!!
- 
[quote author=emc link=topic=17362.msg31272#msg31272 date=1446205858] 
 1、odoo是通过销售团队来区分不同的销售渠道的;另外也可以通过订单上的标签来区分或者增加一个订单类型的字段;
 2、如果是批销订单,确认订单的按钮显示给财务(未付款不显示);如果是网购订单,确认订单的按钮显示给客服。
 [/quote]
 你的方案,我之前试过。但销售团队只能比较粗的归分订单,如果我再设一个网销团队,归属网购订单类型,但这些网购订单归属的店铺还是需要一个字段来标记。本想用”线索和商机“模块里的“渠道”,但担心用打乱这个功能。后来自己添加一个字段“商店”,有个不好的地方,就是自己添加的字段,无法在高级搜索了进行检索,也就无法在销售报表里按“店铺”来源统计销售
- 
可以自定义修改搜索视图的。 
 找到销售订单对应的搜索视图,把自定义字段加进去。
 路径:设置>>技术设置>>用户界面>>视图,找到sale.order.list.select,修改成这样:
 <?xml version="1.0"?>
 <search string="Search Sales Order">
 <field name="name" string="Sales Order" filter_domain="['|',('name','ilike',self),('client_order_ref','ilike',self)]"/>
 <field name="partner_id" operator="child_of"/>
 <field name="user_id"/>
 <field name="section_id" string="Sales Team" groups="base.group_multi_salesteams"/>
 <field name="project_id"/>
 <field name="product_id"/>
 [color=red]<field name="x_order_type"/> #可以在搜索框里搜索[/color]
 <filter string="My" domain="[('user_id','=',uid)]" name="my_sale_orders_filter"/>
 <separator/>
 <filter string="Quotations" name="draft" domain="[('state','in',('draft','sent'))]" help="Sales Order that haven't yet been confirmed"/>
 <filter string="Sales" name="sales" domain="[('state','in',('manual','progress'))]"/>
 <filter string="To Invoice" domain="[('state','=','manual')]" help="Sales Order ready to be invoiced"/>
 <filter string="Done" domain="[('state','=','done')]" help="Sales Order done"/>
 [color=red]<filter string="E-Commerce" domain="[('x_order_type','=','e-commerce')]" help="E-Commerce Orders"/> #过滤器里增加E-Commerce[/color]
 [color=red]<filter string="PoS" domain="[('x_order_type','=','pos')]" help="PoS Orders"/> #过滤里增加PoS[/color]
 <separator/>
 <filter string="New Mail" name="message_unread" domain="[('message_unread','=',True)]"/>
 <group expand="0" string="Group By">
 <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
 <filter string="Customer" domain="[]" context="{'group_by':'partner_id'}"/>
 <filter string="Order Month" domain="[]" context="{'group_by':'date_order'}"/>
 [color=red]<filter string="Order Type" domain="[]" context="{'group_by':'x_order_type'}"/> #分组里增加按Order Type汇总[/color]
 </group>
 </search>
 [color=red]注意我自定义字段x_order_type的字段类型是selection类[/color]
- 
[quote author=emc link=topic=17362.msg31275#msg31275 date=1446260848] 
 可以自定义修改搜索视图的。
 找到销售订单对应的搜索视图,把自定义字段加进去。
 路径:设置>>技术设置>>用户界面>>视图,找到sale.order.list.select,修改成这样:
 <?xml version="1.0"?>
 <search string="Search Sales Order">
 <field name="name" string="Sales Order" filter_domain="['|',('name','ilike',self),('client_order_ref','ilike',self)]"/>
 <field name="partner_id" operator="child_of"/>
 <field name="user_id"/>
 <field name="section_id" string="Sales Team" groups="base.group_multi_salesteams"/>
 <field name="project_id"/>
 <field name="product_id"/>
 [color=red]<field name="x_order_type"/> #可以在搜索框里搜索[/color]
 <filter string="My" domain="[('user_id','=',uid)]" name="my_sale_orders_filter"/>
 <separator/>
 <filter string="Quotations" name="draft" domain="[('state','in',('draft','sent'))]" help="Sales Order that haven't yet been confirmed"/>
 <filter string="Sales" name="sales" domain="[('state','in',('manual','progress'))]"/>
 <filter string="To Invoice" domain="[('state','=','manual')]" help="Sales Order ready to be invoiced"/>
 <filter string="Done" domain="[('state','=','done')]" help="Sales Order done"/>
 [color=red]<filter string="E-Commerce" domain="[('x_order_type','=','e-commerce')]" help="E-Commerce Orders"/> #过滤器里增加E-Commerce[/color]
 [color=red]<filter string="PoS" domain="[('x_order_type','=','pos')]" help="PoS Orders"/> #过滤里增加PoS[/color]
 <separator/>
 <filter string="New Mail" name="message_unread" domain="[('message_unread','=',True)]"/>
 <group expand="0" string="Group By">
 <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
 <filter string="Customer" domain="[]" context="{'group_by':'partner_id'}"/>
 <filter string="Order Month" domain="[]" context="{'group_by':'date_order'}"/>
 [color=red]<filter string="Order Type" domain="[]" context="{'group_by':'x_order_type'}"/> #分组里增加按Order Type汇总[/color]
 </group>
 </search>
 [color=red]注意我自定义字段x_order_type的字段类型是selection类[/color]
 [/quote]
 非常感谢!
 您发帖不多,但感觉你对Odoo已经很熟悉了。