← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 804148] [NEW] l10n_chart_us_manufacturing won't install

 

Public bug reported:

Attempt to install module: "l10n_chart_us_manufacturing"
Receive error message: "No references to account.account_type_root"
I'm using ubuntu 10.10, and OpenErp 6.0
The code in trunk still has the problem
This can be fixed by changing 68 lines, like the following:

@@ -58,13 +58,13 @@
 		<field name="code">0</field>
 		<field name="name">Account Chart for US</field>
 		<field name="type">view</field>
-		<field name="user_type" ref="account.account_type_root"/>
+		<field name="user_type" ref="account_type_root"/>
 	</record>
 	<record id="chart1000" model="account.account.template">
 		<field name="code">1000</field>
 		<field name="reconcile" eval="False"/>
 		<field name="parent_id" ref="chart0"/>
-		<field name="user_type" ref="account.account_type_root"/>
+		<field name="user_type" ref="account_type_root"/>
 		<field name="type">view</field>
 		<field name="name">CURRENT ASSETS</field>
 	</record>

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/804148

Title:
  l10n_chart_us_manufacturing won't install

Status in OpenERP Modules (addons):
  New

Bug description:
  Attempt to install module: "l10n_chart_us_manufacturing"
  Receive error message: "No references to account.account_type_root"
  I'm using ubuntu 10.10, and OpenErp 6.0
  The code in trunk still has the problem
  This can be fixed by changing 68 lines, like the following:

  @@ -58,13 +58,13 @@
   		<field name="code">0</field>
   		<field name="name">Account Chart for US</field>
   		<field name="type">view</field>
  -		<field name="user_type" ref="account.account_type_root"/>
  +		<field name="user_type" ref="account_type_root"/>
   	</record>
   	<record id="chart1000" model="account.account.template">
   		<field name="code">1000</field>
   		<field name="reconcile" eval="False"/>
   		<field name="parent_id" ref="chart0"/>
  -		<field name="user_type" ref="account.account_type_root"/>
  +		<field name="user_type" ref="account_type_root"/>
   		<field name="type">view</field>
   		<field name="name">CURRENT ASSETS</field>
   	</record>

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/804148/+subscriptions


Follow ups

References