Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to use import button for custom development?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
buttonspython2.7button_functionodoo10
1 Beantwoorden
20421 Weergaven
Avatar
giantmalik

I am new here. I am working on Purchase Management where i ve a csv files and want to produce a code that imports all data from file and place in database just on clicking button. For a moment i ve added import button xml bt i need help how shd i proceed in order to do so.

http://imgur.com/a/dcSnX

1
Avatar
Annuleer
OdooBot
hi can u help me that:

https://stackoverflow.com/questions/46783504/expand-groups-when-button-is-clicked


On Sat, Aug 26, 2017 at 1:21 PM, Yenthe <yenthespam@gmail.com> wrote:

A new question How to use import button for custom development? on Help has been posted. Click here to access the question :

See question

--
Yenthe


Sent by Odoo S.A. using Odoo.


OdooBot
hi can u help me here:
https://stackoverflow.com/questions/46783504/expand-groups-when-button-is-clicked

On Sun, Oct 22, 2017 at 1:32 PM, Zohaib Rehman <zohaibrehman1991@gmail.com> wrote:
hi can u help me that:

https://stackoverflow.com/questions/46783504/expand-groups-when-button-is-clicked


On Sat, Aug 26, 2017 at 1:21 PM, Yenthe <yenthespam@gmail.com> wrote:

A new question How to use import button for custom development? on Help has been posted. Click here to access the question :

See question

--
Yenthe


Sent by Odoo S.A. using Odoo.



Avatar
Dan Čermák
Beste antwoord

I think the best approach would be to create a wizard for this. You generate a wizard by creating a class that inherits from TransientModel. An instance of it will not stay in the database forever, as it is intended for processes (for example your import).

I would suggest, that you create a completely new view with a file upload dialog and an import button. The xml for that looks something like this (you'll have to adapt the names):

<odoo>
<data>
<record id="your_wizard_form" model="ir.ui.view">
<field name="name">your.wizard.form</field>
<field name="model">your_wizard</field>
<field name="arch" type="xml">
<form string="Import a csv file">
<group name="main">
<field name="csv_file" />
</group>

<footer>
<button name="import_csv" type="object"
string="Import" class="oe_highlight"/>
<button special="cancel" string="Cancel"/>
</footer>

</form>
</field>
</record>

<record id="your_wizard_action" model="ir.actions.act_window">
<field name="name">Import a csv file</field>
<field name="res_model"your_wizard</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>

<menuitem id="your_wizard_menu"
parent="SOME_MENU_IN_PURCHASE"
action="your_wizard_action"
sequence="15" />
</data>
</odoo>

What this does is the following:

- You create a new view your_wizard_form with a field csv_file (your file upload), and two buttons: Import and Cancel. Cancel is handled by Odoo by default, if you define it as special="cancel". The import button will execute the python function import_csv of the model your_wizard.

- The remaining stuff is basically additional code, to add your import dialog as a menu item. You don't have to do it like this, there are other ways too.

Now to the python code. Your wizard class should look like this:

class YourWizard(models.TransientModel):
_name = 'your_wizard'
    # your file will be stored here:
csv_file = fields.Binary(string='CSV File', required=True)
     
    @api.multi
    def import_csv(self):
        # this will get executed when you click the import button in your form
        return {}

Here fields.Binary tells Odoo, that this is a file upload. Your file will get stored in base64 encoded form, so to use the csv reader, you'll have to at first decode it from base64 and split it into lines for the csv python module:

reader = csv.DictReader(base64.b64decode(self.csv_file).split('\n'))

Then you'll have a DictReader that you can use to read the data from your csv file and create new records directly in the database.

Note that this will only work for csv files encoded with UTF-8. For files with different encodings, you have to insert another step:

reader = csv.DictReader(base64.b64decode(self.csv_file).decode('file_encoding').encode('utf-8').split('\n'))

where you replace file_encoding with the correct encoding (I have seen you are using Linux, you can get the file encoding using the 'file' command).

This is probably a lot to digest and it does not even tell you how to write the data to the database. If you could specify what you are trying to write, I might be able to help you further. Database writes are usually quite simple, once you know which fields of which models you want to write (that's the hard part).

EDIT: As noted in the comments, this code is copy-pasted from my own addon. I forgot to change some variable names (changed bom_file -> csv_file).

3
Avatar
Annuleer
Ermin Trevisan

What a well elaborated and presented answer! Thanks.

Dan Čermák

I have written an addon that does a very similar thing just last week, so I have mostly copy-pasted my code, hoping that OP does not have to go through all the headaches that I had with this.

giantmalik
Auteur

thanks for elaborating my question. whats bom_file?

giantmalik
Auteur

i am getting garbage value everytime

giantmalik
Auteur

here is my xml and python:

<record id="view_pack_operation_lot_form_custom" model="ir.ui.view">

<field name="name">stock.pack.operation.lots.form</field>

<field name="model">stock.pack.operation</field>

<field eval="20" name="priority"/>

<field name="inherit_id" ref="stock.view_pack_operation_lot_form" />

<field name="arch" type="xml">

<xpath expr="//button[@name='save']" position="after">

<form string="Import a csv file">

<!-- <group name="main"> -->

<field name="file" />

<!-- </group>

<footer> -->

<button name="import_csv" type="object"

string="Import" class="oe_highlight"/>

<button special="cancel" string="Cancel"/>

<!-- </footer> -->

</form>

</xpath>

</field>

</record>

python:

def import_csv(self, options):

csv_data = self.file

# TODO: guess encoding with chardet? Or https://github.com/aadsm/jschardet

encoding = options.get('encoding', 'utf-8')

if encoding != 'utf-8':

# csv module expect utf-8, see http://docs.python.org/2/library/csv.html

csv_data = csv_data.decode(encoding).encode('utf-8')

csv_iterator = csv.DictReader(base64.b64decode(self.file).split('\n'))

Dan Čermák

bom_file was an error, it should have been csv_file.

You have a small mistake in your decoding process: at first you have to decode self.file from base64 into plain text and then decode().encode(). I.e.:

csv_data = base64.b64decode(self.file).decode(encoding).encode('utf-8')

csv_iterator = csv.DictReader(csv_data.split('\n'))

That should hopefully work.

giantmalik
Auteur

thanks can u guide me how shd i place that value in existing database field model name : "stock.pack.operation.lot" and in addons its "stock_pack_operation".

i dnt know if m doing wrong? m trying to place value in database through file such that it shd display value like clicking on "add item"

example:

http://imgur.com/a/dcj2j

my code is nt placing value in "lot_name" any idea where am wrong?

class stockpackoperartionlot2(models.Model):

_inherit = 'stock.pack.operation.lot'

lot_name = fields.Char('Lot/Serial Number')

class Import2(models.Model):

_name = 'stock.pack.operation'

# _inherit = 'stock.pack.operation'

_inherit = ['stock.pack.operation.lot','stock.pack.operation']

# allow imports to survive for 12h in case user is slow

_transient_max_hours = 12.0

res_model = fields.Char('Model')

file = fields.Binary(string='BOM File', required=True)

file_name = fields.Char('File Name')

file_type = fields.Char('File Type')

@api.multi

def _addfromfile(self,val):

self.lot_name = val

@api.multi

def import_csv(self, options):

""" Returns a CSV-parsed iterator of all empty lines in the file

:throws csv.Error: if an error is detected during CSV parsing

:throws UnicodeDecodeError: if ``options.encoding`` is incorrect

"""

csv_data = self.file

# TODO: guess encoding with chardet? Or https://github.com/aadsm/jschardet

encoding = options.get('encoding', 'utf-8')

if encoding != 'utf-8':

# csv module expect utf-8, see http://docs.python.org/2/library/csv.html

csv_data = csv_data.decode(encoding).encode('utf-8')

# csv_iterator = csv.DictReader(base64.b64decode(self.file).split('\n')) #base64.b64decode(self.file)

csv_data = base64.b64decode(self.file).decode(encoding).encode('utf-8')

# csv_iterator = csv.DictReader(csv_data.split('\n'))

# return base64.b64decode(self.file)

self._addfromfile(csv_data.split('\n')[0])

Dan Čermák

The Import2 class should be a models.TransientModel and it should not inherit from anything.

What you essentially have to do in the function import_csv(self, options) is to extract the lot_name and either create a new record or modify an existing one.

If you want to create a new record, you can achieve this via:

self.env['stock.pack.operation.lot'].create({

'lot_name': lot_name,

# optionally other parameters, that you want to set if no defaults exist

}

If you want to modify an existing record, you have to somehow pass its id to the wizard, where you would do the following:

self.env['stock.pack.operation.lot'].browse(record_id_that_you_obtained).lot_name = lot_name

Which way do you want to do it?

giantmalik
Auteur

ok Done thank you very much for this epic help..... !!! plus voted as well

OdooBot
hi can u help me here:

https://stackoverflow.com/questions/46783504/expand-groups-when-button-is-clicked

On Mon, Aug 28, 2017 at 4:30 AM, Dan Čermák <dan.cermak@cgc-instruments.com> wrote:

I have written an addon that does a very similar thing just last week, so I have mostly copy-pasted my code, hoping that OP does not have to go through all the headaches that I had with this.

--
Dan Čermák


Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
How to return action window or wizard from def copy()or def write method in odoo 10.
python2.7 odoo10
Avatar
Avatar
2
jul. 25
1668
Show edit button on odoo 10 qweb html report.
python2.7 odoo10
Avatar
0
dec. 24
1878
How to hide field on tree in odoo 10 based on a condition. Opgelost
python2.7 odoo10
Avatar
Avatar
2
okt. 24
2096
Remove html tags in a text field with html widget on an exported xml file in odoo 10.
python2.7 odoo10
Avatar
Avatar
1
aug. 24
3213
Cannot upload pdf file on odoo 10 attachments.
python2.7 odoo10
Avatar
Avatar
2
jul. 24
2487
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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