Skip to content

Odoo 新手求助

No decsciption available
2.5k Topics 10.7k Posts
  • 如何把发到某个用户邮箱的邮件自动转成ISSUE

    4
    0 Votes
    4 Posts
    1k Views
    F

    已OK,在邮件别名里就可以。先前是自己加多了东西,所以老是有问题。删掉后就好了。万分感谢mrshelly 🙂

  • 0 Votes
    3 Posts
    2k Views
    mrshellyM

    双核 RAM 2G+ 的VPS服务器就可以用.. 主要看用户数和模块数..........

  • 0 Votes
    2 Posts
    1k Views
    No one has replied
  • 0 Votes
    4 Posts
    2k Views
    9

    我正在尝试这些方法,很感谢您的指点!!!

  • V9 leads 转 ISSUE 的出错

    2
    0 Votes
    2 Posts
    817 Views
    No one has replied
  • Odoo扫码枪+包裹怎么操作?

    2
    0 Votes
    2 Posts
    2k Views
    No one has replied
  • Odoo生产订单物料不足也能进行生产?

    4
    0 Votes
    4 Posts
    2k Views
    B

    多谢前辈的指点。

  • 昨天开始装Odoo,今天就遇到问题了。求教

    5
    0 Votes
    5 Posts
    4k Views
    L

    update web 模块

  • 请问数据库里哪些table是inventory相关的?

    4
    0 Votes
    4 Posts
    3k Views
    L

    stock
    激活开发模式,用哪个看哪个

  • 0 Votes
    2 Posts
    1k Views
    No one has replied
  • 0 Votes
    3 Posts
    2k Views

    装了之后导出了schema,将近200个table,有的一看了

  • Odoo8.0销售订单是不是没有渠道管理概念?

    6
    0 Votes
    6 Posts
    4k Views
    W

    [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已经很熟悉了。

  • 求助!!Odoo新手试写新建模块

    3
    0 Votes
    3 Posts
    2k Views
    JoshuaJ

    表单上的object类型按钮都会先保存当前表单信息。

  • OpenERP对象跟数据库数据的联系

    15
    0 Votes
    15 Posts
    9k Views
    KevinKongK

    [quote author=Peter Seng link=topic=5842.msg14571#msg14571 date=1363836235]
    总结:OpenERP的model其实是一个类(Class),它和一个数据表(Table)对应,而不是和一个记录(Record)对应。
    [/quote]

    确切地说,一个model并非对应一个Table,对于Related、Function类型的字段来说,并不在数据库中有对应,Many2many类型更是存储在另一张表里。

  • Odoo 新手菜鸟求助

    5
    0 Votes
    5 Posts
    2k Views
    F

    [quote author=KevinKong link=topic=17356.msg31240#msg31240 date=1446004089]
    Odoo在中国空热而发展不起来,多半大家都想白用而不花钱~
    [/quote]

    被国内的厂商代理商坑怕了,选择开源的服务商,又怕是另一个坑。既然是开源的,大多数公司,比较保守的做法是,自己先熟悉,然后再找服务商,这样至少心里有底,能掌控局面。

  • Odoo分销模块是怎么安装?

    10
    0 Votes
    10 Posts
    5k Views
    L

    1.你图里的商店其实对应的是仓库对象,勾选仓库设置里的【管理多个库位和仓库】
    2.勾选销售设置里的【允许逐行设置折扣】

  • 公司谷歌地图不能使用

    4
    0 Votes
    4 Posts
    1k Views
    JoshuaJ

    你首先要确定你直接在浏览器能访问谷歌地图否?

  • 0 Votes
    5 Posts
    5k Views
    mrshellyM

    将 https://pypi.python.org/pypi/Werkzeug 版本升到最新版 试试. 或者将版本降降级.....

  • 求助;Odoo 9 安装完毕后,选择数据库后没反应了。

    7
    0 Votes
    7 Posts
    3k Views
    卓忆

    这不应该的,这估计是有bug

  • Odoo9企业版 复选框不能正常显示

    3
    0 Votes
    3 Posts
    2k Views
    卓忆

    [quote author=袁峰 link=topic=17338.msg31182#msg31182 date=1445238224]
    odoo9企业版 复选框可以勾选和取消勾选,但是显示不了,无论有没勾选显示都是没勾选?这是为什么,有解决方法吗?
    [/quote]


    企业版?
    有截图么?