摘要:
a=[1,2,4,3,5]sorted(a)output:[1,2,3,4,5] 阅读全文
摘要:
pg_restore -C -d postgres db.dump 阅读全文
摘要:
First ,Write Database Backup Script:pg_dump -Fc yourdatabasename > /home/yourfilepath/yourdatabasename$(date +%Y-%m-%d).dumpSave it as a file name dum... 阅读全文
摘要:
There're two commen type of actions in odoo: ir.actions.server,ir.actions.client_multi 1.Using ir.actions.server 2.Using ir.actions.act_window about i 阅读全文
摘要:
Open/etc/ssh/sshd_configand check ifPermitRootLoginis set toyes. If not, then set it to yes and restartsshwithsudo service ssh restart 阅读全文
摘要:
As we all know, Odoo 8 has new api which is different with v7. So how to override the create,write,unlink orm method in odoo 8 way ?Let see it.if you ... 阅读全文
摘要:
JavaScript’s function scope means that all variables declared within a function are visi-ble throughout the body of the function. Curiously, this mean... 阅读全文
摘要:
首先说下起因,在修改英国会计模块(没错,就是那个安格鲁撒克逊记账模式!)中不符合中国国情的部分供能时,碰到了一个棘手的问题,简单的说就是B类继承它的父类A并重载了A的方法M,同时C类也继承了A类也重载了方法M,那么问题来了(嗯?挖掘机技术哪家强?),究竟是B的方法起作用还是C的方法起作用呢?我们一步... 阅读全文
摘要:
一. openerp.Widget 方法列表 init:function(parent) destroy:function() appendTo:function(target) prependTo:function(target) insertAfter:function(target)... 阅读全文
摘要:
stock.picking.out 和 stock.picking.in 都是继承自stock.picking新添加columns时需要注意,在stock.picking.out和stock.picking.in里新添的column必须在stock.picking里重复定义一遍,否则即使编译通过也还... 阅读全文