Changeset 812
- Timestamp:
- 06/12/07 19:47:25 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branch/ggpolo/umitInventory/new-sample/tests/test7-isolated.py
r811 r812 23 23 self.selection = None 24 24 25 """ 25 26 def get_selection(self): 26 27 return self.__selbtn … … 34 35 def set_graph(self, graph): 35 36 self.__graph = graph 37 """ 36 38 37 39 def _write_cell_text(self, cr, text, bold, y=19): … … 138 140 self._write_cell_text(cr, self.selection.month + ", 2007", True) 139 141 self._write_cell_text(cr, "Events Statistics", False, 40) 140 141 #self._draw_graph(cr, False, 1, level)142 142 else: 143 143 self._draw_raw(cr, level) 144 #self._draw_graph(cr, True, 1, level)145 144 146 145 … … 190 189 191 190 192 selection = property(get_selection, set_selection)193 graph = property(get_graph, set_graph)191 #selection = property(get_selection, set_selection) 192 #graph = property(get_graph, set_graph) 194 193 195 194
