我在我的模塊中有以下選擇字段我想獲得選擇字段的字符串值。假設用戶選擇'o'我想打印O - Original請給我提供任何更好的解決方案。 type = fields.Selection([
('o', 'O - Original'),
('a', 'A - Amended')],
string="Is this an Original I
我正在使用Odoo 10-e。我正在研究一個示例模塊。 我有5款(客戶,產品,訂單,訂單明細,運動) Customer : class Customer(models.Model):
_name ="amgl.customer"
…… all other fields related to customer
product_ids = fields.Many2many
當我打印我的報告時,我總是得到錯誤的時間(-1小時),並且我不知道如何解決這個問題。 我在我的代碼,這樣的功能: def _interpolation_dict(self):
t = time.localtime() # Actually, the server is always in UTC.
return {
'year': time.strftime('%Y
我正在一個示例模塊中工作,我正在創建一個視圖,其中我想根據條件和來自多個模型來顯示記錄。哪些已經被創建。 Pending Accounts class PendingAccounts(models.Model):
_name = 'amgl.pending_accounts'
_description = 'Pending Account'
name = field
class procurement(models.Model)
_name="procurement"
procurement_line_ids = fields.One2many(comodel_name='procurement.line', inverse_name='procurement_id', string='Procurement Lines')
g