Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 16 additions & 29 deletions sale_import_wizard/README.rst
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Por que borras la descripcion del readme?

Original file line number Diff line number Diff line change
@@ -1,53 +1,40 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

==================
Sale Import Wizard
==================

Module to import **Sale Orders** from Excel files, improving usability and automation in sales operations.

* Allows importing sale orders and order lines from structured Excel files.
* Automatically validates customers, products, invoice addresses, and delivery addresses.
* Creates sale orders and order lines from imported data.
* Provides a log of errors and highlights issues in import lines.
* Quick access to imported lines and created sale orders.
.. |badge1| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

Key Features
============
|badge1|

- Wizard to upload Excel files and import sale orders.
- Validation of imported lines, with error reporting in **Log Info**.
- Automatic creation of **Sale Orders** and **Order Lines** from import lines.
- Search, filter, and group by **Product**, **Customer**, **Invoice Address**, **Delivery Address**, and **State**.
- Statusbar and state management for import workflow (`draft`, `2validate`, `pass`, `error`, `done`).
- Tree, form, and search views for **Sale Order Import Lines** with decorations to highlight errors and processed lines.
Module to import sale orders, it allows to create sale orders.

Configuration
=============
**Table of contents**

1. Go to **Sales → Configuration → Import Sale Orders**.
2. Upload an Excel file using the column names in the **Help** tab.
3. Click **Validate** to check imported lines.
4. Click **Process** to create sale orders from valid lines.
.. contents::
:local:

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

Bugs are tracked on `GitHub Issues
<https://github.com/avanzosc/sale-addons/issues>`_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us improve it by providing detailed feedback.
Bugs are tracked on `GitHub Issues <https://github.com/avanzosc/sale-addons/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
feedback.

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

Credits
=======

Authors
-------
~~~~~~~

* AvanzOSC

Contributors
------------
~~~~~~~~~~~~

* Ana Juaristi <anajuaristi@avanzosc.es>
* Alfredo de la Fuente <alfredodelafuente@avanzosc.es>
8 changes: 1 addition & 7 deletions sale_import_wizard/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,7 @@
"license": "AGPL-3",
"author": "AvanzOSC",
"website": "https://github.com/avanzosc/sale-addons",
"depends": [
"sale",
"sales_team",
"base_import_wizard",
"stock",
"product_trim_name",
],
"depends": ["sale", "sales_team", "base_import_wizard", "product_trim_name"],
"data": [
"security/ir.model.access.csv",
"security/sale_import_wizard_security.xml",
Expand Down
Loading