Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Consulting
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Append data - what I'm doing wrong ?

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
pythonprogrammingodoo8.0
3 Replies
10259 Rodiniai
Portretas
Dr Obx

Browsing data: - gathering product_id and qty in selected period of time (last 6 months) in location 'production'

  for obj in self.browse(cr, uid, ids):

days = obj.nod

weeks = obj.now

months = obj.nom

cr.execute(""" select product_id, sum(qty) from stock_quant where write_date ::date>=to_date('%s', 'YYYY-MM-DD') and

write_date ::date<= to_date('%s', 'YYYY-MM-DD') and location_id =%s group by product_id;""" %(obj.st_date, obj.en_date, obj.location_id.id))

toty = cr.fetchall()

Browsing data and appending in_stock: -  gathering qty for product in other locations except 'production'

for prod in toty:

cr.execute(""" select sum(qty) from stock_quant where product_id = %s and location_id != 7;""" %(int(prod[0])))

in_stock = cr.fetchall()

tot_qty.append([prod[0], prod[1], in_stock[0][0]])

Browsing again and appending lmsq to the existing one: - gathering qty in selected period of time (last 1 month) in location 'production'

for prod in toty:

cr.execute(""" select sum(qty) from stock_quant where product_id = %s and write_date ::date>=to_date('%s', 'YYYY-MM-DD') and

write_date ::date<= to_date('%s', 'YYYY-MM-DD') and location_id = 7;""" %(int(prod[0]), obj.mt_date, obj.en_date))

lmsq = cr.fetchall()

print 'LMSQ ',lmsq

# joining lists

print 'PROD ',tot_qty, prod

tot_qty.append([prod[0], prod[1], in_stock[0][0]], lmsq[0][0]) 

What I'm doing wrong ?

ERROR:

File "/usr/lib/python2.7/dist-packages/openerp/addons/iProdLoc/iprodloc.py", line 124, in moves_get

tot_qty.append([prod[0], prod[1], in_stock[0][0]], lmsq[0][0])

TypeError: append() takes exactly one argument (2 given)

0
Portretas
Atmesti
Portretas
Pawan
Best Answer

Rob,
Your way of appending Imsq to the already creating list is not correct.

As you already have a list created after creating in_stock, and then you are trying to add imsq to that samelist for that same [product, qty, in_stock] combination which will not work like the way you are trying to do it....

Keep both the fetchings under one loop only:

for prod in toty:

    Browsing data and appending in_stock: -  gathering qty for product in other locations except 'production'

    cr.execute(""" select sum(qty) from stock_quant where product_id = %s and location_id != 7;""" %(int(prod[0])))

    in_stock = cr.fetchall()

    Browsing again and appending lmsq to the existing one: - gathering qty in selected period of time (last 1 month) in location 'production'

    cr.execute(""" select sum(qty) from stock_quant where product_id = %s and write_date ::date>=to_date('%s', 'YYYY-MM-DD') and write_date ::date<= to_date('%s', 'YYYY-MM-DD') and location_id = 7;""" %(int(prod[0]), obj.mt_date, obj.en_date))

    lmsq = cr.fetchall() 

    #Now finally after retrieving all data, form a list and append to tot_qty..

    tot_qty.append([prod[0], prod[1], in_stock[0][0]], lmsq[0][0])

HOPE IT HELPS ;)

0
Portretas
Atmesti
Dr Obx
Autorius

Hehehe Hi Pawan, Already sorted it. It works beautifully :) However, I have a question for you my friend. Once I create a list of products and I would like to put it into email. Would you help me with it ? Its easy if I'm adding only one product and sending email but I can't make it work for more than one ....

Dr Obx
Autorius

Or how to add data from another object. For example, stock_check is creating a list then list is passed to product_data. How can I get those data and use it in email ? Browse product_data, create another list inside the def mailing .... ?

Pawan

Rob, you can use current object field only to loop on in an email template, as template works on one object at a time, like if you are having any one2many or many2many then you can use
  % for row in object.[one2many/many2one FIELD]:
 ${row.[FIELD] or ""}
 ${row.[FIELD] or ''}
 ${object.[FIELD] or ''}
 %endfor
This will print all the records from the [one2many/many2one FIELD] under that object...
OTHERWISE
You can format your string for body of email at your logic(.py) only and then replace the templates body with your string before sending
Regards!

Portretas
Swapnesh Shah
Best Answer

Hello,

Please use 

tot_qty.append([prod[0], prod[1], in_stock[0][0], lmsq[0][0]]) 

instead of 

tot_qty.append([prod[0], prod[1], in_stock[0][0]], lmsq[0][0]) 

Thanks

0
Portretas
Atmesti
Dr Obx
Autorius

Problem solved :)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registracija
Related Posts Replies Rodiniai Veikla
Evaluation of python expression Solved
python odoo8.0
Portretas
Portretas
1
liep. 17
10666
create a getter for odoo 8 Solved
python odoo8.0
Portretas
Portretas
2
liep. 17
4538
recuperate fields of budget lines
python odoo8.0
Portretas
0
rugp. 16
3657
Using Blob to save in postgres via odoo
python odoo8.0
Portretas
Portretas
1
liep. 16
5719
How to add auto refreshing for hr_attendance in odoo?
python odoo8.0
Portretas
0
birž. 16
3693
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now