Ok, I went searching for .sxw references under 'addons' and I found a few:
[EMAIL PROTECTED] addons]# find . -name *.xml -exec grep -Hn sxw {} \;
./account/account_report.xml:62:
sxw="account/report/rappel.sxw"
./account/account_report.xml:69:
sxw="account/report/invoice.sxw"
./report_analytic_planning/report_analytic_planning_report.xml:9:
sxw="report_analytic_planning/report/report_planning.sxw"
./purchase/purchase_report.xml:9:
sxw="purchase/report/request_quotation.sxw"
So I looks like we need to take care of these four references:
[EMAIL PROTECTED] addons]# touch account/report/rappel.sxw
[EMAIL PROTECTED] addons]# touch account/report/invoice.sxw
[EMAIL PROTECTED] addons]# touch
report_analytic_planning/report/report_planning.sxw
[EMAIL PROTECTED] addons]# touch purchase/report/request_quotation.sxw
And yes, now the update runs to completion except for a few warnings:
Mon, 20 Aug 2007 08:39:19 INFO:init:addon:base:creating or updating database
tables
Mon, 20 Aug 2007 08:39:22 WARNING:init:column 'rounding' in table
'res_currency' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:22 WARNING:init:column rate (Current rate) in table
res_currency was converted to a function !
You should remove this column from your database.
Mon, 20 Aug 2007 08:39:30 WARNING:init:column 'list_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:30 WARNING:init:column 'standard_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:30 WARNING:init:column 'uos_coeff' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:31 WARNING:init:column 'price_extra' in table
'product_product' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:31 WARNING:init:column 'price_margin' in table
'product_product' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:31 WARNING:init:column 'price' in table
'pricelist_partnerinfo' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:34 WARNING:init:column 'model' in table
'subscription_document' has changed type (DB = varchar, def = many2one) !
Mon, 20 Aug 2007 08:39:34 WARNING:init:column 'field' in table
'subscription_document_fields' has changed type (DB = varchar, def = many2one) !
Mon, 20 Aug 2007 08:39:34 WARNING:init:column 'date' in table
'subscription_subscription_history' has changed type (DB = date, def =
datetime) !
Mon, 20 Aug 2007 08:39:34 INFO:init:addon:subscription:loading
subscription_view.xml
Mon, 20 Aug 2007 08:39:34 INFO:init:addon:account
Mon, 20 Aug 2007 08:39:34 INFO:init:addon:account:creating or updating database
tables
Mon, 20 Aug 2007 08:39:36 WARNING:init:column 'price_unit' in table
'account_invoice_line' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:37 WARNING:init:column 'list_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:37 WARNING:init:column 'standard_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:37 WARNING:init:column 'uos_coeff' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:46 WARNING:init:column 'price_extra' in table
'product_product' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:46 WARNING:init:column 'price_margin' in table
'product_product' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:46 WARNING:init:column 'list_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:46 WARNING:init:column 'standard_price' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:46 WARNING:init:column 'uos_coeff' in table
'product_template' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:51 WARNING:init:column 'price_unit' in table
'account_invoice_line' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:39:51 WARNING:init:WARNING: unable to set column
probability of table crm_case_categ not null !
Try to re-run: tinyerp-server.py --update=module
If it doesn't work, update records and execute manually:
ALTER TABLE crm_case_categ ALTER COLUMN probability SET NOT NULL
Mon, 20 Aug 2007 08:39:55 WARNING:init:column 'price_unit' in table
'purchase_order_line' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:40:02 WARNING:init:column 'price_unit' in table
'sale_order_line' has changed type (DB = float8, def = float) !
Mon, 20 Aug 2007 08:40:02 WARNING:init:WARNING: unable to set column delay of
table sale_order_line not null !
Try to re-run: tinyerp-server.py --update=module
If it doesn't work, update records and execute manually:
ALTER TABLE sale_order_line ALTER COLUMN delay SET NOT NULL
Are these warnings because we reran the --update=all ???
Or should we take some of the actions recommended in the warnings?
Gerry
_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman/listinfo/tinyerp-users