Odoo 开发与实施交流

No decsciption available
2.3k Topics 10.5k Posts
  • 0 Votes
    4 Posts
    3k Views

    "涉及现场安装和根据序列号售后服务的如何工作流"

    我怎么读这个标题,都觉得读不太通顺....

  • Openerp web客户端工作原理?

    3
    0 Votes
    3 Posts
    3k Views

    server 做中间件服务..

    web 只是模拟 N个 gtk client 而已.. 你可以理解为, 用浏览器画了个 gtk client...  你的操作. 发送给 web , web 翻译为 xmlrpc 请求发给 oe server. oe server 返回. 再翻译为显示结果 显示给浏览器用户....



  • 0 Votes
    5 Posts
    4k Views

    mark!!!!!!!!!!!

  • Openerp整合cms

    6
    0 Votes
    6 Posts
    4k Views

    大神  精神可嘉

    php调用方法先学习了  好像xmlrpc.inc位置不对

    不过昨天晚上研究了一下magento,整个程序真不错,确实适合做正式上线运营的网店,方便二次开发

    同时,magento已经做到  产品 会员 订单等整合了

    学习基本php调用xmlrpc方法还是大神这个直接

    ps:只是自己部署在公司用,不想用个需要太多开发的东西,简单改改代码能用,对我是最好的

  • 請教關於Dynamical View

    9
    0 Votes
    9 Posts
    4k Views

    再次謝謝 Joshua大以及mrshelly大的不吝指導

  • 有实现基于地理位置的模块吗?

    6
    0 Votes
    6 Posts
    3k Views

    刚开始openerp  以前一直vtiger ,想二次开发来,不过感觉openerp二次开发快点,所以过来


    把销售部门分成不同省份的小部门,应该可以实现这个管理了

    以后再详细测试

    先把大的东西确认,才能用openerp

  • Many2many字段的搜索

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

    非常有帮助,特地登录感谢老肖!

    现在有其他人或者公司在专门用Openerp做CRM会员营销这一块的吗? 求交流!

    http://weibo.com/1735377647/

  • 深入解说OpenERP的各种提前期和时间

    3
    0 Votes
    3 Posts
    4k Views

    每个时间都整个例子就好了.....  看文字的东西好痛苦....  谢谢...

  • 0 Votes
    6 Posts
    5k Views

    是的。
    被wizard窗口中的过滤字段误导了。
    大致过程应该是这样的:
    account\account.py

    <br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;balance&#039;: fields.function(__compute, digits_compute=dp.get_precision(&#039;Account&#039;), method=True, string=&#039;Balance&#039;, multi=&#039;balance&#039;),<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;credit&#039;: fields.function(__compute, digits_compute=dp.get_precision(&#039;Account&#039;), method=True, string=&#039;Credit&#039;, multi=&#039;balance&#039;),<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;debit&#039;: fields.function(__compute, digits_compute=dp.get_precision(&#039;Account&#039;), method=True, string=&#039;Debit&#039;, multi=&#039;balance&#039;),<br />


    在这个方法__compute里,层层调用才刚刚开始,多少明白一点了。
    谢谢Shelly, Jeff,继续往下看。。。

  • 分享OE的数据库字典网页版

    4
    0 Votes
    4 Posts
    4k Views

    很好的资料啊

  • 求助通过按钮弹出窗口问题

    12
    0 Votes
    12 Posts
    6k Views

    非常感谢,这样做可以了。

  • 0 Votes
    7 Posts
    7k Views

    有些插件就是不行,有些功能就是不行。。。 😞

  • 求教优化和提高openerp的访问速度

    4
    0 Votes
    4 Posts
    4k Views

    这也正是困扰我的地方,不知道哪里出问题了,有心要求公司买个好点的服务器,但是又觉得不像是硬件的问题。我在这台服务器上还装了confluence,java写的,网页的速度就比openerp快多了。似乎从一开始我接触openerp的时候就没有感受到多少刷刷的感觉,唉。

  • 如何获取当前页面的URL

    11
    0 Votes
    11 Posts
    6k Views

    谢谢,我试一下哈,有问题再来请教。

  • 0 Votes
    6 Posts
    3k Views

    谢谢,不过这样也有问题,但是我使用如下的代码实现了:

    <br />def get_user_email(self, cr, uid, ids, context=None):<br />&nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; for case in self.browse(cr, uid, ids, context=context):<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if case.assign_to.user_email:<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; email=case.assign_to.user_email<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return email<br />&nbsp; &nbsp; &nbsp; &nbsp; return False<br />
  • 0 Votes
    4 Posts
    2k Views

    3Q哈,搞定了

  • OpenERP中如何导出Excel数据

    4
    0 Votes
    4 Posts
    6k Views

    在V5中是修改orm.py文件中的__export_row方法,将原方法中的data[fpos] = tools.ustr(r or '')改为data[fpos] = r.encode('gb2312')即可。
    V6的代码没有研究过,不过猜想应该类似

  • Web端增加 addons的方法分享

    6
    0 Votes
    6 Posts
    5k Views

    继承report我开始就是这么想,但是比较复杂,就没有用这个办法,report有很多处理rml的方法和替换render

  • Web client 的 addons 样例模块...

    6
    0 Votes
    6 Posts
    5k Views

    理论上

    @expose(content_type='text/html; charset=utf-8')

    修改 content_type 再输出 页面内容就可以了.