Skip to content

Commit

Permalink
[3532][ADD] base_data_import, product_plm_import (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
yostashiro authored Sep 19, 2023
1 parent 51f0502 commit 9c5ad16
Show file tree
Hide file tree
Showing 52 changed files with 3,849 additions and 3 deletions.
58 changes: 58 additions & 0 deletions base_data_import/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
================
Base Data Import
================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Fmi7--custom-lightgray.png?logo=github
:target: https://github.com/qrtl/mi7-custom/tree/15.0/base_data_import
:alt: qrtl/mi7-custom

|badge1| |badge2| |badge3|

This module does the following:

- Adds a generic wizard to import a CSV file to create/update records.
- Adds a generic logging models and views for import results.

This module is not useful by itself, but is expected to be used as a dependency
of specific data import functions.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/qrtl/mi7-custom/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/qrtl/mi7-custom/issues/new?body=module:%20base_data_import%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Quartile Limited

Maintainers
~~~~~~~~~~~

This module is part of the `qrtl/mi7-custom <https://github.com/qrtl/mi7-custom/tree/15.0/base_data_import>`_ project on GitHub.

You are welcome to contribute.
2 changes: 2 additions & 0 deletions base_data_import/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import wizards
18 changes: 18 additions & 0 deletions base_data_import/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2020-2022 Quartile Limited
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
{
"name": "Base Data Import",
"version": "16.0.1.0.0",
"category": "Hidden/Tools",
"author": "Quartile Limited",
"website": "https://www.quartile.co",
"license": "LGPL-3",
"depends": ["mail"],
"data": [
"security/data_import_security.xml",
"security/ir.model.access.csv",
"views/data_import_log_views.xml",
"wizards/data_import_views.xml",
],
"installable": True,
}
Loading

0 comments on commit 9c5ad16

Please sign in to comment.