Ich versuche erben account.analytic.default
in odoo 8 von unten CodeWie Konto analytischen Standard in odoo 8
class analytic_default1(osv.osv):
_inherit = "account.analytic.default"
_columns = {
'x_analytics': fields.many2one('account.account', 'Account'),
}
zu erben Aber es ist mir unter Fehler geben
XmlHttpRequestError INTERNAL SERVER ERROR
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>500 Internal Server Error</title>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.</p>
, dass der Fehler in Protokoll ist? –
Bitte versuchen Sie die neue API zu verwenden (no osv, no _columns, ...) und geben Sie das vollständige Fehlerprotokoll an. – CZoellner