-
Notifications
You must be signed in to change notification settings - Fork 28
/
update_stock_uy.py
executable file
·49 lines (40 loc) · 1.35 KB
/
update_stock_uy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python
import sys
import xmlrpclib
import ssl
import csv
username = 'admin' #the user
pwd = 'demo_uy' #the user
dbname = 'demo_uy' #the database
gcontext = ssl._create_unverified_context()
# Get the uid
sock_common = xmlrpclib.ServerProxy ('http://capacitacion:8069/xmlrpc/common',context=gcontext)
uid = sock_common.login(dbname, username, pwd)
#replace localhost with the address of the server
sock = xmlrpclib.ServerProxy('http://capacitacion:8069/xmlrpc/object',context=gcontext)
f = open('ejemplo_sibra.csv','rt')
reader = csv.DictReader(f,delimiter='|')
vals_inv_header = {
'company_id': 1,
'name': 'Ejemplo 1 - version 3',
'prefill_counted_quantity': 'counted',
}
inv_header = sock.execute(dbname,uid,pwd,'stock.inventory','create',vals_inv_header)
print inv_header
action_id = sock.execute(dbname,uid,pwd,'stock.inventory','action_start',[inv_header])
print action_id
for row in reader:
print row
default_code = row['default_code']
name = row['name']
category = row['category']
stock = int(row['inventario'])
product_id = sock.execute(dbname,uid,pwd,'product.product','search',[('default_code','=',default_code)])
if product_id:
vals_line = {
'inventory_id': inv_header,
'location_id': 18,
'product_id': product_id[0],
'product_qty': stock
}
line_id = sock.execute(dbname,uid,pwd,'stock.inventory.line','create',vals_line)