Merge with addons
authorRucha Patel <ruchakpatel@gmail.com>
Mon, 13 Oct 2008 06:58:47 +0000 (12:28 +0530)
committerRucha Patel <ruchakpatel@gmail.com>
Mon, 13 Oct 2008 06:58:47 +0000 (12:28 +0530)
bzr revid: ruchakpatel@gmail.com-20081013065847-ffnjkovsr3zuxif1

1  2 
addons/account/account_invoice_view.xml
addons/account/invoice.py
addons/account/project/project_view.xml
addons/mrp/mrp.py
addons/purchase/purchase.py
addons/stock/stock.py

Simple merge
              <field name="res_model">account.analytic.account</field>
              <field name="domain">[('parent_id','=',False)]</field>
              <field name="view_type">tree</field>
+              <field name="view_mode">form,graph</field>
              <field name="view_id" ref="view_account_analytic_account_tree"/>
          </record>
 +        
          <menuitem
              action="action_account_analytic_account_tree2"
              id="account_analytic_def_chart"
Simple merge
Simple merge
@@@ -320,7 -320,9 +320,13 @@@ class stock_picking(osv.osv)
      _description = "Packing list"
      def _set_maximum_date(self, cr, uid, ids, name, value, arg, context):
          if not value: return False
++<<<<<<< TREE
 +        for pick in self.browse(cr, uid, [ids], context):
++=======
+         if isinstance(ids, (int, long)):
+             ids=[ids]
+         for pick in self.browse(cr, uid, ids, context):
++>>>>>>> MERGE-SOURCE
              cr.execute("""update stock_move set
                      date_planned=%s 
                  where
  
      def _set_minimum_date(self, cr, uid, ids, name, value, arg, context):
          if not value: return False
++<<<<<<< TREE
 +        for pick in self.browse(cr, uid,[ids], context):
++=======
+         if isinstance(ids, (int, long)):
+             ids=[ids]
+         for pick in self.browse(cr, uid, ids, context):
++>>>>>>> MERGE-SOURCE
              cr.execute("""update stock_move set
                      date_planned=%s 
                  where