https://github.com/akretion/connector-google-spreadsheet
Data spreadsheet import in Odoo https://www.youtube.com/watch?v=JiW67o4QCVA
https://github.com/akretion/connector-google-spreadsheet
Last synced: 11 months ago
JSON representation
Data spreadsheet import in Odoo https://www.youtube.com/watch?v=JiW67o4QCVA
- Host: GitHub
- URL: https://github.com/akretion/connector-google-spreadsheet
- Owner: akretion
- Created: 2015-03-25T18:25:42.000Z (about 11 years ago)
- Default Branch: 8.0
- Last Pushed: 2024-11-16T13:47:08.000Z (over 1 year ago)
- Last Synced: 2025-05-17T09:31:25.690Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 60.5 KB
- Stars: 17
- Watchers: 19
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# connector-google-spreadsheet
This module allows the importation of Google Spreadsheets into Odoo.
Important notes:
================
- The header row is mandatory, and use the same syntax as
the native Odoo CSV importation tool.
- In order to upload importation errors into a Google Spreadsheet,
you must title the *first* column of your Google sheet: "ERRORS".
- In order to determine the rows to import the program check the length
of the first column of data. In other words if the first column of
*data* (not the "ERRORS" column) is empty the program raise an error
(no data to import)
- Empty columns (with even the header cell empty) are ignored.
- Unknown model's columns are also ignored.
- Chunk logic handle the one2many cases if the first column of data
represent the relation (root entries not blank and child entries blank)
Dependencies:
=============
This module requires the following Python dependencies:
pip install pyOpenSSL
pip install 'oauth2client==1.5.1'
pip install gspread
Authors:
========
- Copyright (C) 2015-TODAY Akretion (http://www.akretion.com).
- Sylvain Calador
- David Beal
License:
========
AGPL-V3
(Work in progress)