~carlos-realsystems/+junk/openacademy

« back to all changes in this revision

Viewing changes to openacademy/xml-rpc/test.py

  • Committer: Carlos Contreras
  • Author(s): carlos at com
  • Date: 2011-09-09 21:08:55 UTC
  • Revision ID: carlos@realsystems.com.mx-20110909210855-m0gds7nj5760jxul

[IMP] Implementacion de Wizard
Creamos el modelo del wizard herendado
de las clase osv.osv_memory.
uno que es el contenedor del wizard
y el otro que es el objeto contenido
Adicionalmente devolvemos en el wizard
una vista del elemento que se afecta.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution    
 
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    d$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
 
 
24
import xmlrpclib
 
25
HOST='localhost'
 
26
PORT=38069
 
27
DB='openacademy'
 
28
USER='admin'
 
29
PASS='admin'
 
30
url ='http://%s:%d/xmlrpc/' % (HOST,PORT)
 
31
common_proxy = xmlrpclib.ServerProxy(url+'common')
 
32
object_proxy = xmlrpclib.ServerProxy(url+'object')
 
33
 
 
34
#######create
 
35
#######write
 
36
#######read
 
37
 
 
38
 
 
39
###Me logueo
 
40
uid = common_proxy.login(DB,USER,PASS)
 
41
#### Creo
 
42
import csv
 
43
Partners = csv.DictReader(open('demo_use.csv'))
 
44
P={}
 
45
A={}
 
46
for Partner in Partners:
 
47
    
 
48
    P = {'name':Partner['name'],
 
49
        'is_instructor':Partner['is_instructor'],
 
50
        'country':Partner['pais']}
 
51
    p = object_proxy.execute(DB,uid,PASS,'res.partner','create',P)
 
52
    A = {'street':Partner['calle'],
 
53
        'zip':Partner['zip'],'partner_id':p}
 
54
    a = object_proxy.execute(DB,uid,PASS,'res.partner.address','create',A)
 
55
    print  "se ha creado %s " % object_proxy.execute(DB,uid,PASS,'res.partner','read',[p],['name'])
 
56
 
 
57
 
 
58
 
 
59
 
 
60
 
 
61
 
 
62
 
 
63
 
 
64
 
 
65
 
 
66
 
 
67