odoo-8

    0熱度

    1回答

    我只需要顯示組中的用戶。 例如,我有兩個字段組和分配給。 如果我選擇一個組,那麼我應該只獲得該組的列表。 您能否提供此問題的任何解決方案請

    1熱度

    1回答

    我在我的模塊中有以下選擇字段我想獲得選擇字段的字符串值。假設用戶選擇'o'我想打印O - Original請給我提供任何更好的解決方案。 type = fields.Selection([ ('o', 'O - Original'), ('a', 'A - Amended')], string="Is this an Original I

    2熱度

    1回答

    我添加 'LOCATION_ID' 字段樹視圖res.user到用戶連接到某個位置 類ResUser(models.Model): _inherit ='res.users ' current_location_id=fields.Many2one('physical.location',string="Current Loction") allowed_location_ids=fields.

    3熱度

    1回答

    我正在使用Odoo 10-e。我正在研究一個示例模塊。 我有5款(客戶,產品,訂單,訂單明細,運動) Customer : class Customer(models.Model): _name ="amgl.customer" …… all other fields related to customer product_ids = fields.Many2many

    3熱度

    2回答

    我們正在獲取登錄用戶self.env.user,但我想訪問登錄用戶ir.action.act.window。 <record id="act_mail_messages_form_ept_closed" model="ir.actions.act_window"> <field name="name">Closed</field> <field name="res_mode

    0熱度

    1回答

    問題: 雖然點擊項目看板視圖會重定向到project.tasks看板視圖,而不是從觀察孔工程。 我想要做什麼: 我想開的項目,而不是任務看板的形式視圖。有沒有簡單的解決方案呢? 我迄今所做的: 我已經找到了project.js文件項目模塊,其中一個函數寫,但我真的不明白他們在做的事。 openerp.web_kanban.KanbanRecord.include({ on_card_c

    1熱度

    1回答

    當我打印我的報告時,我總是得到錯誤的時間(-1小時),並且我不知道如何解決這個問題。 我在我的代碼,這樣的功能: def _interpolation_dict(self): t = time.localtime() # Actually, the server is always in UTC. return { 'year': time.strftime('%Y

    0熱度

    1回答

    我在stock.quant.package模型中創建了一個字段。 tracking_ref=fields.Char("Tracking Ref") 此字段在兩個單獨的模塊中使用,我不能給模塊依賴項,因爲它們都是單獨的模塊。 可能兩個模塊都安裝在同一個數據庫中,或者可能有可能是 在某些數據庫中只安裝了一個模塊。 由於這個原因,我在兩個模塊中創建了相同的字段&視圖。 但現在的問題是,如果兩個模塊都

    2熱度

    3回答

    我正在一個示例模塊中工作,我正在創建一個視圖,其中我想根據條件和來自多個模型來顯示記錄。哪些已經被創建。 Pending Accounts class PendingAccounts(models.Model): _name = 'amgl.pending_accounts' _description = 'Pending Account' name = field

    4熱度

    2回答

    class procurement(models.Model) _name="procurement" procurement_line_ids = fields.One2many(comodel_name='procurement.line', inverse_name='procurement_id', string='Procurement Lines') g