Skip to content

Commit

Permalink
🎉 init version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ommo73 committed Feb 21, 2020
1 parent 7fd35ae commit b02103b
Show file tree
Hide file tree
Showing 8 changed files with 444 additions and 0 deletions.
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"],
"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**
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.
90 changes: 90 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,90 @@
.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;
}

.table-b0 {
border:0;
border-collapse: collapse;
display: table;
width:635px;
font-size:9px;
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;
}

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

Large diffs are not rendered by default.

0 comments on commit b02103b

Please sign in to comment.