工作總結(3)
阿新 • • 發佈:2018-11-21
修改git的全域性名稱
C:\Users\Administrator>git config user.name
zhangcong
C:\Users\Administrator>git config --global user.name "張聰"
C:\Users\Administrator>git config user.name
張聰
1.odoo中search的用法:
search(arg,offset,limit,id)
在class,self表示的是一個例項,想要查詢每一條記錄,
self.env['product.object'].search([]) 或寫成 self.env['product.object'].search([(‘last_stock_move_id’,'!=',None)])
def fix_last_stock_move_id(self): """修正所有條碼品的最新出入庫id""" move_pool = self.env["stock.move"] pos = self.env['product.object'].search([('last_stock_move_id','=',None)]) for po in pos: last_move_ids = move_pool.search([("barcode", "like", po.name), ("barcode", "!=", None)], limit=1, order='id desc') if last_move_ids: po.last_stock_move_id = last_move_ids[0].id # 一次一提交到資料庫中 self._cr.commit()
新加的翻譯需要升級,但是修改的翻譯只需載入翻譯,覆蓋原有術語