跳转至内容
  • 版块
  • 标签
  • 热门
  • 用户
  • 群组
皮肤
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • 默认(Flatly)
  • 不使用皮肤
折叠

Odoo 中文社区

  1. 主页
  2. 版块
  3. Odoo 开发与实施交流
  4. 如何修改原class里的方法

如何修改原class里的方法

已定时 已固定 已锁定 已移动 Odoo 开发与实施交流
4 帖子 2 发布者 2.9k 浏览
  • 从旧到新
  • 从新到旧
  • 最多赞同
登录后回复
此主题已被删除。只有拥有主题管理权限的用户可以查看。
  • L 离线
    L 离线
    llcai0598
    写于 最后由 编辑
    #1

    按照Odoo的风格,理论上:
    Class A中的方法可以由继承A的ClassB中被修改  ?

    问题如下:

    在stock.py中的:

    [quote]
    class stock_picking(models.Model):
        _name = "stock.picking"
        _inherit = ['mail.thread']
        _description = "Transfer"
        _order = "priority desc, date asc, id desc"

        def _set_min_date(.....
    [/quote]

    有

    [quote]


        def create_lots_for_picking(self, cr, uid, ids, context=None):
            lot_obj = self.pool['stock.production.lot']
            opslot_obj = self.pool['stock.pack.operation.lot']
            to_unlink = []
            for picking in self.browse(cr, uid, ids, context=context):
                for ops in picking.pack_operation_ids:
                    for opslot in ops.pack_lot_ids:
                        if not opslot.lot_id:
                            print '=============not find stock.production.lot, create lot:',opslot.lot_name,ops.product_id.id,opslot.lot_weight
                            lot_id = lot_obj.create(cr, uid, {'name': opslot.lot_name, 'product_id': ops.product_id.id}, context=context)
                         
                            opslot_obj.write(cr, uid, [opslot.id], {'lot_id':lot_id}, context=context)
                    #Unlink pack operations where qty = 0
                    to_unlink += [x.id for x in ops.pack_lot_ids if x.qty == 0.0]
            opslot_obj.unlink(cr, uid, to_unlink, context=context)

    [/quote]

    现在需要修改这个方法,新建模块后:

    [quote]

    class dy_stock_picking(models.Model):
        inherit = 'stock.picking'

        def create_lots_for_picking(self, cr, uid, ids, context=None):
            print 'dy.stock.picking==============='
            lot_obj = self.pool['stock.production.lot']
            opslot_obj = self.pool['stock.pack.operation.lot']
            to_unlink = []
            for picking in self.browse(cr, uid, ids, context=context):
                for ops in picking.pack_operation_ids:
                    for opslot in ops.pack_lot_ids:
                        if not opslot.lot_id:
                            print 'dy.stock.picking=============not find stock.production.lot, create lot:',opslot.lot_name,ops.product_id.id
                            lot_id = lot_obj.create(cr, uid, {'name': opslot.lot_name, 'product_id': ops.product_id.id, 'lot_weight': opslot.lot_weight}, context=context)
                            opslot_obj.write(cr, uid, [opslot.id], {'lot_id':lot_id}, context=context)
                    #Unlink pack operations where qty = 0
                    to_unlink += [x.id for x in ops.pack_lot_ids if x.qty == 0.0]
            opslot_obj.unlink(cr, uid, to_unlink, context=context)

    [/quote]

    运行后发现,没有成功:
    [img [检测到链接无效,已移除] /img]
    还是调用了原来的方法
    什么原因?

    1 条回复 最后回复
    0
    • 天 离线
      天 离线
      天津-随风
      写于 最后由 编辑
      #2

      你把inherit = 'stock.picking' 修改成_inherit = 'stock.picking'试试

      1 条回复 最后回复
      0
      • L 离线
        L 离线
        llcai0598
        写于 最后由 编辑
        #3

        [quote author=青岛-随风 link=topic=17670.msg32443#msg32443 date=1468488224]
        你把inherit = 'stock.picking' 修改成_inherit = 'stock.picking'试试
        [/quote]


        你太对了,谢谢谢谢

        1 条回复 最后回复
        0

        • 登录

        • 没有帐号? 注册

        • 登录或注册以进行搜索。
        • 第一个帖子
          最后一个帖子
        0
        • 版块
        • 标签
        • 热门
        • 用户
        • 群组