diff --git a/pos_full_product_name/README.rst b/pos_full_product_name/README.rst new file mode 100644 index 0000000..8440081 --- /dev/null +++ b/pos_full_product_name/README.rst @@ -0,0 +1,85 @@ +===================== +POS Full Product Name +===================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:27bb704bbc03f6d63fe14fb40551ade634b2f9f91c46a87f7e1d774c4163f818 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-agungsepruloh%2Fpoint_of_sale-lightgray.png?logo=github + :target: https://github.com/agungsepruloh/point_of_sale/tree/17.0/pos_full_product_name + :alt: agungsepruloh/point_of_sale + +|badge1| |badge2| |badge3| + +This module helps the user to display full product name in the POS module. + + +Features +^^^^^^^^^^^ + +**1. Display full product name in the POS module ✅** + +**2. No special configuration required ✅** + +**4. Easy to install and use ✅** + + +Screenshots +^^^^^^^^^^^ + +.. image:: before.png + :width: 100% + :alt: Before + +.. image:: after.png + :width: 100% + :alt: After + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 +~~~~~~~ + +* Agung Sepruloh + +Maintainers +~~~~~~~~~~~ + +.. |maintainer-agungsepruloh| image:: https://github.com/agungsepruloh.png?size=40px + :target: https://github.com/agungsepruloh + :alt: agungsepruloh + +Current maintainer: + +|maintainer-agungsepruloh| + +This module is part of the `agungsepruloh/point_of_sale `_ project on GitHub. + +You are welcome to contribute. diff --git a/pos_full_product_name/__init__.py b/pos_full_product_name/__init__.py new file mode 100644 index 0000000..cde864b --- /dev/null +++ b/pos_full_product_name/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/pos_full_product_name/__manifest__.py b/pos_full_product_name/__manifest__.py new file mode 100644 index 0000000..4cecbce --- /dev/null +++ b/pos_full_product_name/__manifest__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- + +{ + 'name': "POS Full Product Name", + + 'summary': """ + Display full product name in the POS module. + """, + + 'description': """ + This module helps the user to display full product name in the POS module. + """, + + 'author': "Agung Sepruloh", + 'website': "https://github.com/agungsepruloh", + 'maintainers': ['agungsepruloh'], + 'license': 'LGPL-3', + 'category': 'Point of Sale', + 'version': '17.0.1.0.0', + + # any module necessary for this one to work correctly + 'depends': ['base', 'point_of_sale'], + + # always loaded + 'data': [], + # only loaded in demonstration mode + 'demo': [], + + 'assets': { + 'point_of_sale._assets_pos': [ + 'pos_full_product_name/static/src/**/*', + ], + }, + + 'images': ['static/description/banner.gif'], + 'application': True, +} diff --git a/pos_full_product_name/models/__init__.py b/pos_full_product_name/models/__init__.py new file mode 100644 index 0000000..633f866 --- /dev/null +++ b/pos_full_product_name/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/pos_full_product_name/readme/DESCRIPTION.rst b/pos_full_product_name/readme/DESCRIPTION.rst new file mode 100644 index 0000000..ea120b3 --- /dev/null +++ b/pos_full_product_name/readme/DESCRIPTION.rst @@ -0,0 +1,23 @@ +This module helps the user to display full product name in the POS module. + + +Features +^^^^^^^^^^^ + +**1. Display full product name in the POS module ✅** + +**2. No special configuration required ✅** + +**4. Easy to install and use ✅** + + +Screenshots +^^^^^^^^^^^ + +.. image:: before.png + :width: 100% + :alt: Before + +.. image:: after.png + :width: 100% + :alt: After diff --git a/pos_full_product_name/readme/USAGE.rst b/pos_full_product_name/readme/USAGE.rst new file mode 100644 index 0000000..e69de29 diff --git a/pos_full_product_name/static/description/after.png b/pos_full_product_name/static/description/after.png new file mode 100644 index 0000000..9b5a969 Binary files /dev/null and b/pos_full_product_name/static/description/after.png differ diff --git a/pos_full_product_name/static/description/banner.gif b/pos_full_product_name/static/description/banner.gif new file mode 100644 index 0000000..866bfc4 Binary files /dev/null and b/pos_full_product_name/static/description/banner.gif differ diff --git a/pos_full_product_name/static/description/before.png b/pos_full_product_name/static/description/before.png new file mode 100644 index 0000000..2c75d39 Binary files /dev/null and b/pos_full_product_name/static/description/before.png differ diff --git a/pos_full_product_name/static/description/icon.png b/pos_full_product_name/static/description/icon.png new file mode 100644 index 0000000..0d60e29 Binary files /dev/null and b/pos_full_product_name/static/description/icon.png differ diff --git a/pos_full_product_name/static/description/index.html b/pos_full_product_name/static/description/index.html new file mode 100644 index 0000000..932f666 --- /dev/null +++ b/pos_full_product_name/static/description/index.html @@ -0,0 +1,421 @@ + + + + + +POS Full Product Name + + + +
+

POS Full Product Name

+ + +

Beta License: LGPL-3 agungsepruloh/point_of_sale

+

This module helps the user to display full product name in the POS module.

+
+

Features

+

1. Display full product name in the POS module ✅

+

2. No special configuration required ✅

+

4. Easy to install and use ✅

+
+
+

Screenshots

+Before +After +

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub 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

+
    +
  • Agung Sepruloh
  • +
+
+
+

Maintainers

+

Current maintainer:

+

agungsepruloh

+

This module is part of the agungsepruloh/point_of_sale project on GitHub.

+

You are welcome to contribute.

+
+
+
+
+ + diff --git a/pos_full_product_name/static/src/scss/pos.scss b/pos_full_product_name/static/src/scss/pos.scss new file mode 100644 index 0000000..c3d0932 --- /dev/null +++ b/pos_full_product_name/static/src/scss/pos.scss @@ -0,0 +1,3 @@ +.product-name { + display: block !important; +} \ No newline at end of file