-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_standard_cost.py
executable file
·42 lines (33 loc) · 1.37 KB
/
update_standard_cost.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
#! /usr/bin/env python3
# -*- encoding: utf-8 -*-
import sys
import erppeek
import csv
import unidecode
from cfg_secret_configuration import odoo_configuration_user_test as odoo_configuration_user
###############################################################################
# Odoo Connection
###############################################################################
def init_openerp(url, login, password, database):
openerp = erppeek.Client(url)
uid = openerp.login(login, password=password, database=database)
user = openerp.ResUsers.browse(uid)
tz = user.tz
return openerp, uid, tz
openerp, uid, tz = init_openerp(
odoo_configuration_user['url'],
odoo_configuration_user['login'],
odoo_configuration_user['password'],
odoo_configuration_user['database'])
###############################################################################
# Configuration
###############################################################################
###############################################################################
# Script
###############################################################################
for product in openerp.ProductTemplate.browse([
('has_theoritical_cost_different', '=', True),
('standard_price', '=', 0)]):
print(product.name)
product.use_theoritical_cost()
print(product.standard_price, product.base_price)