Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
249
4.58k
__index_level_0__
int64
0
99
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with journal_id attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' journal_id = fields.Many2one( 'account.journal', string='Financial Journ...
48
<|endoftext|> Prompt: Create an Odoo model class named AccountMove with statement_line_ids attribute Completion: class AccountMove(models.Model): _name = "account.move" _inherit = ['account.move'] statement_line_ids = fields.One2many('account.bank.statement.line', 'move_id', string='Statements') <|endoftex...
92
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with currency_id attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" currency_id = fields.Man...
81
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with company_currency_id attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" company_currency_id = fields.Many2one(related='company_id.currency_id') ...
2
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticApplicability with account_prefix attribute Completion: class AccountAnalyticApplicability(models.Model): _inherit = 'account.analytic.applicability' _description = "Analytic Plan's Applicabilities" account_prefix = fields.Char( s...
55
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with sequence attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" sequence = fields.Integer(d...
75
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with name attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' name = fields.Char('Tag Name', required=True) <|endoftext|>
33
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with payment_ref attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" payment_ref = fields.Cha...
80
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticAccount with credit attribute Completion: class AccountAnalyticAccount(models.Model): _inherit = 'account.analytic.account' credit = fields.Monetary(groups='account.group_account_readonly') <|endoftext|>
42
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with foreign_currency_id attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" foreign_currency...
84
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with amount_currency attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" amount_currency = fi...
85
<|endoftext|> Prompt: Create an Odoo model class named AccountRoot with company_id attribute Completion: class AccountRoot(models.Model): _name = 'account.root' _description = 'Account codes first 2 digits' company_id = fields.Many2one('res.company') <|endoftext|>
32
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with statement_valid attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" statement_valid = fi...
91
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticDistributionModel with product_categ_id attribute Completion: class AccountAnalyticDistributionModel(models.Model): _inherit = 'account.analytic.distribution.model' product_categ_id = fields.Many2one( 'product.category', strin...
45
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with category attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' category = fields.Selection(selection_add=[('invoice', 'Customer Invoice') <|endoftext|>
53
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with code attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" code = fields.Char(size=64, required=True, tracking=True, unaccent=False) <|endoftext|>
3
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with transaction_type attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" transaction_type = ...
79
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with currency_id attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" currency_id = fields.Many2one( comodel_name='res.currency', compute='_...
65
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticApplicability with product_categ_id attribute Completion: class AccountAnalyticApplicability(models.Model): _inherit = 'account.analytic.applicability' _description = "Analytic Plan's Applicabilities" product_categ_id = fields.Many2one( ...
56
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with attachment_ids attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" attachment_ids = fields.Many2many( comodel_name='ir.attachment', st...
71
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticDistributionModel with account_prefix attribute Completion: class AccountAnalyticDistributionModel(models.Model): _inherit = 'account.analytic.distribution.model' account_prefix = fields.Char( string='Accounts Prefix', help="P...
43
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with name attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" name = fields.Char(string="Account Name", required=True, index='trigram', tracking=True)...
0
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with balance_start attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" balance_start = fields.Monetary( string='Starting Balance', compute=...
61
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with allowed_journal_ids attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" allowed_journal_ids = fields.Many2many('account.journal', string="Allowed...
16
<|endoftext|> Prompt: Create an Odoo model class named AccountGroup with parent_path attribute Completion: class AccountGroup(models.Model): _name = "account.group" _description = 'Account Group' parent_path = fields.Char(index=True, unaccent=False) <|endoftext|>
25
<|endoftext|> Prompt: Create an Odoo model class named AccountGroup with name attribute Completion: class AccountGroup(models.Model): _name = "account.group" _description = 'Account Group' name = fields.Char(required=True) <|endoftext|>
26
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with include_initial_balance attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" include_initial_balance = fields.Boolean(string="Bring Accounts Balan...
7
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with profit_account_id attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' profit_account_id = fields.Many2one('account.account', string='Profit Accoun...
96
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticAccount with vendor_bill_count attribute Completion: class AccountAnalyticAccount(models.Model): _inherit = 'account.analytic.account' vendor_bill_count = fields.Integer( "Vendor Bill Count", compute='_compute_vendor_bill_coun...
40
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with opening_debit attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" opening_debit = fields.Monetary(string="Opening Debit", compute='_compute_openi...
17
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with non_trade attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" non_trade = fields.Boolean(default=False, help="If s...
23
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with account_number attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" account_number = fiel...
77
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with statement_complete attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" statement_complet...
90
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticDistributionModel with product_id attribute Completion: class AccountAnalyticDistributionModel(models.Model): _inherit = 'account.analytic.distribution.model' product_id = fields.Many2one( 'product.product', string='Product', ...
44
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with general_account_id attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' general_account_id = fields.Many2one( 'account.account', string=...
47
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with country_code attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" country_code = fields.C...
87
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with related_taxes_amount attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" related_taxes_amount = fields.Integer(compute='_compute_related_taxes_am...
22
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with journal_id attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" journal_id = fields.Many2one( comodel_name='account.journal', compute='...
66
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with running_balance attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" running_balance = fi...
83
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with active attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' active = fields.Boolean(default=True, help="Set active to false to hide the Account Tag without removin...
36
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with current_balance attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" current_balance = fields.Float(compute='_compute_current_balance') def _c...
21
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with color attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' color = fields.Integer('Color Index') <|endoftext|>
35
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with move_line_id attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' move_line_id = fields.Many2one( 'account.move.line', string='Journal I...
50
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with name attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" name = fields.Char( string='Reference', compute='_compute_name', store=True, ...
57
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with first_line_index attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" first_line_index = fields.Char( comodel_name='account.bank.statement.line...
60
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with company_id attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' company_id = fields.Many2one('res.company', related='profit_account_id.company_id')...
99
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with reference attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" reference = fields.Char( string='External Reference', copy=False, ) ...
58
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with internal_index attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" internal_index = fiel...
88
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with rounding attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' rounding = fields.Float(string='Rounding Precision', required=True, default=0.01, ...
94
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with ref attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' ref = fields.Char(string='Ref.') <|endoftext|>
52
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with strategy attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' strategy = fields.Selection([('biggest_tax', 'Modify tax amount') <|endoftext|>
95
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with statement_id attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" statement_id = fields.M...
73
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with company_id attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" company_id = fields.Many2one( comodel_name='res.company', related='jour...
64
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with applicability attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' applicability = fields.Selection([('accounts', 'Accounts') <|endoftext|>
34
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with used attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" used = fields.Boolean(compute='_compute_used', search='_search_used') def _compute_u...
5
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with deprecated attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" deprecated = fields.Boolean(default=False, tracking=True) <|endoftext|>
4
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with rounding_method attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' rounding_method = fields.Selection(string='Rounding Method', required=True, ...
98
<|endoftext|> Prompt: Create an Odoo model class named AccountCashRounding with loss_account_id attribute Completion: class AccountCashRounding(models.Model): _name = 'account.cash.rounding' _description = 'Account Cash Rounding' loss_account_id = fields.Many2one('account.account', string='Loss Account', co...
97
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with is_valid attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" is_valid = fields.Boolean( compute='_compute_is_valid', search='_search_i...
69
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticLine with code attribute Completion: class AccountAnalyticLine(models.Model): _inherit = 'account.analytic.line' _description = 'Analytic Line' code = fields.Char(size=8) <|endoftext|>
51
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with company_id attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" company_id = fields.Many2one('res.company', string='Company', required=True, reado...
12
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with country_id attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' country_id = fields.Many2one(string="Country", comodel_name='res.country', help="Country for which ...
38
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with currency_id attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" currency_id = fields.Many2one('res.currency', string='Account Currency', tracking...
1
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with date attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" date = fields.Date( compute='_compute_date_index', store=True, index=True, ...
59
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with reconcile attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" reconcile = fields.Boolean(string='Allow Reconciliation', tracking=True, co...
9
<|endoftext|> Prompt: Create an Odoo model class named AccountGroup with code_prefix_start attribute Completion: class AccountGroup(models.Model): _name = "account.group" _description = 'Account Group' code_prefix_start = fields.Char() <|endoftext|>
27
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with amount attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" amount = fields.Monetary() <...
82
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatement with line_ids attribute Completion: class AccountBankStatement(models.Model): _name = "account.bank.statement" _description = "Bank Statement" line_ids = fields.One2many( comodel_name='account.bank.statement.line', i...
67
<|endoftext|> Prompt: Create an Odoo model class named AccountAccountTag with tax_negate attribute Completion: class AccountAccountTag(models.Model): _name = 'account.account.tag' _description = 'Account Tag' tax_negate = fields.Boolean(string="Negate Tax Balance", help="Check this box to negate the absolut...
37
<|endoftext|> Prompt: Create an Odoo model class named AccountGroup with code_prefix_end attribute Completion: class AccountGroup(models.Model): _name = "account.group" _description = 'Account Group' code_prefix_end = fields.Char() <|endoftext|>
28
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with tax_ids attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" tax_ids = fields.Many2many('account.tax', 'account_account_tax_default_rel', ...
10
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with group_id attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" group_id = fields.Many2one('account.group', compute='_compute_account_group', store=...
14
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with move_id attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" move_id = fields.Many2one( ...
72
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with partner_name attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" partner_name = fields.C...
78
<|endoftext|> Prompt: Create an Odoo model class named AccountBankStatementLine with partner_id attribute Completion: class AccountBankStatementLine(models.Model): _name = "account.bank.statement.line" _inherits = {'account.move': 'move_id'} _description = "Bank Statement Line" partner_id = fields.Many2...
76
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with root_id attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" root_id = fields.Many2one('account.root', compute='_compute_account_root', store=True...
15
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticApplicability with business_domain attribute Completion: class AccountAnalyticApplicability(models.Model): _inherit = 'account.analytic.applicability' _description = "Analytic Plan's Applicabilities" business_domain = fields.Selection( ...
54
<|endoftext|> Prompt: Create an Odoo model class named AccountAnalyticAccount with debit attribute Completion: class AccountAnalyticAccount(models.Model): _inherit = 'account.analytic.account' debit = fields.Monetary(groups='account.group_account_readonly') <|endoftext|>
41
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with opening_balance attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" opening_balance = fields.Monetary(string="Opening Balance", compute='_compute...
19
<|endoftext|> Prompt: Create an Odoo model class named AccountAccount with note attribute Completion: class AccountAccount(models.Model): _name = "account.account" _inherit = ['mail.thread'] _description = "Account" note = fields.Text('Internal Notes', tracking=True) <|endoftext|>
11
README.md exists but content is empty.
Downloads last month
3

Models trained or fine-tuned on ikyuarqie/gptjodoo100