콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
6 답글
53327 화면

Can anyone here knows about the UNLINK METHOD?? I have a button that needs to copy and update the data from the other fields.. Can someone here give an example of a UNLINK method on how does it works? thanks in advance..
 

아바타
취소

Here is a list with all the ORM methods you might ever need. This is also a good documentation source: https://doc.openerp.com/trunk/server/api_models/

베스트 답변

unlink method delete the record based on the given ID. Based on your requirement need to override copy Method.

unlink Method Example:-

Example 1: In button click call unlink method it will Delete records with given ids

                 self.unlink(cr, uid, ids, context=context)

Example 2: Sale Order:-  Allows to delete sales order lines in draft,cancel state only.

  def unlink(self, cr, uid, ids, context=None):
        if context is None:
            context = {}
        """Allows to delete sales order lines in draft,cancel states"""
        for rec in self.browse(cr, uid, ids, context=context):
            if rec.state not in ['draft', 'cancel']:
                raise osv.except_osv(_('Invalid Action!'), _('Cannot delete a sales order line which is in state \'%s\'.') %(rec.state,))
        return super(sale_order_line, self).unlink(cr, uid, ids, context=context)

 

아바타
취소
베스트 답변

Unlink method deals with the deletion of data based on condition.

@api.multi
def unlink(self):
for order in self:
if order.purchase_order:
raise UserError(_('You cannot Delete this record'))
return super(PurchasePerformance, self).unlink()
Here is a simple example of how to use unlink method if you do not want your record to be deleted.
For updation you will have to use write method

아바타
취소

The accepted answer is well-explained. But your answer shows what I need. Thanks

베스트 답변

Hi

Try this

https://doc.openerp.com/v6.0/developer/2_5_Objects_Fields_Methods/methods.html/

아바타
취소
베스트 답변
This works with Odoo 10.
    # DELETE POST
    # /[project]/admin/post/{menuId.id}/{post.id}/delete
    http.route(['/signage/admin/post/<model("signage.signage"):signage>/<model("signage.area.page"):page>/delete'],type='http', auth='user', website=True)
    def delete_postId (self, signage, page):
    #_logger.warn('<<<<<<<<<<<<<<<<<  signage = %s' % signage)
    #_logger.warn('<<<<<<<<<<<<<<<<<  postId = %s' % page)
   
page.unlink()
   
return werkzeug.utils.redirect('/signage/admin/menu/%s/edit' % signage.id)

https://github.com/vertelab/odoo-signage/blob/master10/signage/signage.py
아바타
취소
베스트 답변

In your class define the unlink method, this is called before deleting,
to see what happens I recommend doing this within your class

def unlink(self):
    print('-----------------------LLamada a unlink address')
    print(self)
    return super(youclassname, self).unlink()

아바타
취소