[IMP]:stock:set pdf title
[odoo/odoo.git] / addons / stock / report / stock_graph.py
index 0fdf88d..4b92192 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    GNU Affero General Public License for more details.
 #
 #    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
-from mx.DateTime import *
 from pychart import *
 import pychart.legend
 import time
 from report.misc import choice_colors
 
 #
-# dRAw a graph for stocks
+# Draw a graph for stocks
 #
 class stock_graph(object):
     def __init__(self, io):
         self._datas = {}
         self._canvas = canvas.init(fname=io, format='pdf')
-        self._canvas.set_author("Open ERP")
+        self._canvas.set_author("OpenERP")
+        self._canvas.set_title("Stock Level Forecast")
         self._names = {}
         self.val_min = ''
         self.val_max = ''