Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎉 init version #785

Open
wants to merge 1 commit into
base: pos-addons-12.0-pos_custom_invoice_report
Choose a base branch
from
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
39 changes: 39 additions & 0 deletions pos_custom_invoice_report/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.. image:: https://img.shields.io/badge/license-LGPL--3-blue.png
:target: https://www.gnu.org/licenses/lgpl
:alt: License: LGPL-3

=======================
Custom invoice report
=======================



Credits
=======

Contributors
------------
* `Artem Rafailov <https://it-projects.info/team/Ommo73>`__

Sponsors
--------
* `IT-Projects LLC <https://it-projects.info>`__

Maintainers
-----------
* `IT-Projects LLC <https://it-projects.info>`__

To get a guaranteed support you are kindly requested to purchase the module at `odoo apps store <https://apps.odoo.com/apps/modules/12.0/pos_invoice_pay/>`__.

Thank you for understanding!

`IT-Projects Team <https://www.it-projects.info/team>`__

Further information
===================

Usage instructions: `<doc/index.rst>`__

Changelog: `<doc/changelog.rst>`__

Tested on Odoo 12.0 7bc849c3a698665d6f2379aa2b8d870c14a6c849
1 change: 1 addition & 0 deletions pos_custom_invoice_report/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
35 changes: 35 additions & 0 deletions pos_custom_invoice_report/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2020 Artem Rafailov <https://it-projects.info/team/Ommo73/>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
"name": """Custom invoice report""",
"summary": """Custom invoice report""",
"category": "Point of Sale",
# "live_test_url": "http://apps.it-projects.info/shop/product/pos-invoice-pay?version=12.0",
"images": [],
"version": "12.0.1.0.0",
"application": False,
"author": "IT-Projects LLC, Artem Rafailov",
"support": "[email protected]",
"website": "it-projects.info",
"license": "LGPL-3",
# "price": 9.00,
# "currency": "EUR",
"depends": ["point_of_sale", 'sale', "sale_stock"],
"external_dependencies": {"python": [], "bin": []},
"data": [
"views/report_template.xml",
],
"qweb": [],
"demo": [],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": True,
"demo_title": "",
"demo_addons": [],
"demo_addons_hidden": [],
"demo_url": "",
"demo_summary": "",
"demo_images": [""],
}
4 changes: 4 additions & 0 deletions pos_custom_invoice_report/doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
`1.0.0`
-------

**Init version**

Choose a reason for hiding this comment

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

😍

10 changes: 10 additions & 0 deletions pos_custom_invoice_report/doc/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
=======================
Custom invoice report
=======================

Installation
============

* `Install <https://odoo-development.readthedocs.io/en/latest/odoo/usage/install-module.html>`__ this module in a usual way


Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions pos_custom_invoice_report/static/src/css/custom_report.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
.cell-b4{
border:solid 1px white;
}

.cell-b0{
border:0;
}

.cell-tl{
border:solid 1px white;
border-top:0;
border-left:0;
}

.cell-tr{
border:solid 1px white;
border-top:0;
border-right:0;
}

.cell-t{
border:solid 1px white;
border-top:0;
}

.cell-r{
border:solid 1px white;
border-right:0;
}

.cell-l{
border:solid 1px white;
border-right:0;
}

.table-container {
border:solid 1px white;
display: block;
border-radius:5px;
max-width:632px;
margin-top:4px;
font-size:8px;
}

.table-b0 {
border:0;
border-collapse: collapse;
display: table;
width:635px;
font-size:8px;
font-weight: normal;
}

.top-block {
height:76px;
border:solid 1px white;
float: left;
border-radius:5px;
padding-left:5px;
}

.tr-tlr {
border:solid 1px white;
border-top:0;
border-left:0;
border-right:0;
}

.tr-lr {
border:solid 1px white;
border-left:0;
height:160px;
border-right:0;
}

.tr-b0 {
border:0;
}

.table-header {
text-align: center;
}

.checkbox-t {
height: 12px;
width: 12px;
border:solid 1px white;
display:inline-block;
border-radius:5px;
}

267 changes: 267 additions & 0 deletions pos_custom_invoice_report/views/report_template.xml

Large diffs are not rendered by default.