~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to sourcing/__init__.py

  • Committer: jf
  • Date: 2014-03-14 16:56:51 UTC
  • mfrom: (2004.1.38 unifield-wm)
  • Revision ID: jfb@tempo-consulting.fr-20140314165651-kxeadsxm2nw4srwf
REF-37 [IMP] Improve performance on sourcing 'from stock'
lp:~qt-tempo-consulting/unifield-wm/ref_wm_qt @2042

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
##############################################################################
3
 
#    
 
3
#
4
4
#    OpenERP, Open Source Management Solution
5
5
#    Copyright (C) 2011 MSF, TeMPO Consulting
6
6
#
15
15
#    GNU Affero General Public License for more details.
16
16
#
17
17
#    You should have received a copy of the GNU Affero General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
19
#
20
20
##############################################################################
21
 
import sourcing
 
21
 
 
22
import sale_order_line
22
23
import wizard
23
24
 
 
25
import procurement_order
 
26
import product_supplierinfo
 
27
import product_template
 
28
import purchase_order
 
29
import res_partner
 
30
import sale_order
24
31
 
25
32
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
26