Browse Source

[ADD] Initial Commit

pull/30/merge
SHEREEF PT 8 years ago
parent
commit
97525876b8
  1. 12
      pos_restaurant_floor_bg_color_picker/README.rst
  2. 25
      pos_restaurant_floor_bg_color_picker/__init__.py
  3. 42
      pos_restaurant_floor_bg_color_picker/__manifest__.py
  4. 26
      pos_restaurant_floor_bg_color_picker/models/__init__.py
  5. 39
      pos_restaurant_floor_bg_color_picker/models/pos_restaurant_floor.py
  6. BIN
      pos_restaurant_floor_bg_color_picker/static/description/banner.jpg
  7. BIN
      pos_restaurant_floor_bg_color_picker/static/description/colour picker.png
  8. BIN
      pos_restaurant_floor_bg_color_picker/static/description/cybro_logo.png
  9. BIN
      pos_restaurant_floor_bg_color_picker/static/description/icon.png
  10. 59
      pos_restaurant_floor_bg_color_picker/static/description/index.html
  11. 28
      pos_restaurant_floor_bg_color_picker/views/pos_restaurant_floor_views.xml

12
pos_restaurant_floor_bg_color_picker/README.rst

@ -0,0 +1,12 @@
========================================
POS Restaurant Floor BG Color Picker v10
========================================
This module allows you to select the background color of the floor of POS Restaurant by color picker.
Features
========
* Allows to add color from color picker in POS restaurant floor background color.
Credits
=======
Nikhil Krishnan @ cybrosys, nikhil@cybrosys.in

25
pos_restaurant_floor_bg_color_picker/__init__.py

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Nikhil krishnan(nikhil@cybrosys.in)
# you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# It is forbidden to publish, distribute, sublicense, or sell copies
# of the Software or modified copies of the Software.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
# If not, see <https://www.gnu.org/licenses/>.
#
##############################################################################
import models

42
pos_restaurant_floor_bg_color_picker/__manifest__.py

@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
#
##############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Nikhil krishnan(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# It is forbidden to publish, distribute, sublicense, or sell copies
# of the Software or modified copies of the Software.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
# If not, see <https://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'POS Restaurant BG Color Picker',
'version': '10.0.1.0',
'summary': """We Can Pick the color of the background of floor in POS restaurant.""",
'description': """We Can Pick the color of the background of floor in POS restaurant. So we can avoid to provide
the color code. No need to search for color code.""",
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com',
'category': 'Point Of Sale',
'depends': ['pos_restaurant', 'web_widget_color'],
'license': 'LGPL-3',
'data': ['views/pos_restaurant_floor_views.xml'],
'demo': [],
'images': ['static/description/banner.jpg'],
'installable': True,
'auto_install': False,
}

26
pos_restaurant_floor_bg_color_picker/models/__init__.py

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Nikhil krishnan(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# It is forbidden to publish, distribute, sublicense, or sell copies
# of the Software or modified copies of the Software.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
# If not, see <https://www.gnu.org/licenses/>.
#
##############################################################################
import pos_restaurant_floor

39
pos_restaurant_floor_bg_color_picker/models/pos_restaurant_floor.py

@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Nikhil krishnan(<https://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# It is forbidden to publish, distribute, sublicense, or sell copies
# of the Software or modified copies of the Software.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
# If not, see <https://www.gnu.org/licenses/>.
#
##############################################################################
from odoo import fields, models
class RestaurantFloor(models.Model):
_inherit = 'restaurant.floor'
background_color = fields.Char('Background Color', help='The background color of the floor layout, '
'(must be specified in a html-compatible format)',
default='#D2D2D2')
# Depends module 'web_widget_color' not work in wizard.
# class RestaurantTable(models.Model):
# _inherit = 'restaurant.table'
#
# color = fields.Char('Color', help="The table's color, expressed as a valid 'background' CSS property value",
# default='#35d374')

BIN
pos_restaurant_floor_bg_color_picker/static/description/banner.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

BIN
pos_restaurant_floor_bg_color_picker/static/description/colour picker.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
pos_restaurant_floor_bg_color_picker/static/description/cybro_logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
pos_restaurant_floor_bg_color_picker/static/description/icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

59
pos_restaurant_floor_bg_color_picker/static/description/index.html

@ -0,0 +1,59 @@
<section class="oe_container">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h2 class="oe_slogan">POS Restaurant BG Color Picker</h2>
<h3 class="oe_slogan">Pick the background color of the floor in Restaurant Point Of Sale.</h3>
<h4 class="oe_slogan"><a href="https://www.cybrosys.com">Cybrosys Technologies</a> </h4>
</div>
<div class="oe_row oe_spaced">
<h4><p style="margin-left: 42px;">Major Features:</p></h4>
<ul>
<li style="list-style:none !important;"><span style="color:green;"> &#9733;</span>&nbsp;&nbsp;Avoid the color code search while setting BG color in Restaurant POS</li>
<li style="list-style:none !important;"><span style="color:green;"> &#9733;</span>&nbsp;&nbsp; Allow picking the &quot;Background Color&quot; of POS floor.</li>
</ul>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<p><h1>Pick the color for the POS floor Background Color.</h1> </p>
<div class="oe_demo oe_picture oe_screenshot">
<img src="colour picker.png">
</div>
</div>
<div class="oe_span12">
<p class="oe_mt32">
<p>This module allows you to pick a color from the color window. So you don’t need to enter the
color code directly. We can avoid searching for a particular color code. Just pick it and apply.</p>
</p>
</div>
</div>
</section>
<section class="oe_container">
<h2 class="oe_slogan" style="margin-top:20px;" >Need Any Help?</h2>
<div class="oe_slogan" style="margin-top:10px !important;">
<div>
<a class="btn btn-primary btn-lg mt8"
style="color: #FFFFFF !important;border-radius: 0;" href="https://www.cybrosys.com"><i
class="fa fa-envelope"></i> Email </a> <a
class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;"
href="https://www.cybrosys.com/contact/"><i
class="fa fa-phone"></i> Contact Us </a> <a
class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;"
href="https://www.cybrosys.com/odoo-customization-and-installation/"><i
class="fa fa-check-square"></i> Request Customization </a>
</div>
<br>
<img src="cybro_logo.png" style="width: 190px; margin-bottom: 20px;" class="center-block">
<div>
<a href="https://twitter.com/cybrosys" target="_blank"><i class="fa fa-2x fa-twitter" style="color:white;background: #00a0d1;width:35px;"></i></a></td>
<a href="https://www.linkedin.com/company/cybrosys-technologies-pvt-ltd" target="_blank"><i class="fa fa-2x fa-linkedin" style="color:white;background: #31a3d6;width:35px;padding-left: 3px;"></i></a></td>
<a href="https://www.facebook.com/cybrosystechnologies" target="_blank"><i class="fa fa-2x fa-facebook" style="color:white;background: #3b5998;width:35px;padding-left: 8px;"></i></a></td>
<a href="https://plus.google.com/106641282743045431892/about" target="_blank"><i class="fa fa-2x fa-google-plus" style="color:white;background: #c53c2c;width:35px;padding-left: 3px;"></i></a></td>
<a href="https://in.pinterest.com/cybrosys" target="_blank"><i class="fa fa-2x fa-pinterest" style="color:white;background: #ac0f18;width:35px;padding-left: 3px;"></i></a></td>
</div>
</div>
</section>

28
pos_restaurant_floor_bg_color_picker/views/pos_restaurant_floor_views.xml

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_restaurant_floor_bg_color_picker_form" model="ir.ui.view">
<field name="name">Restaurant Floors</field>
<field name="model">restaurant.floor</field>
<field name="inherit_id" ref="pos_restaurant.view_restaurant_floor_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='background_color']" position="replace">
<field name="background_color" widget="color"/>
</xpath>
</field>
</record>
<!--***********Depends module 'web_widget_color' not work in wizard***********-->
<!--<record id="view_restaurant_table_color_picker_form" model="ir.ui.view">-->
<!--<field name="name">Restaurant Table</field>-->
<!--<field name="model">restaurant.table</field>-->
<!--<field name="inherit_id" ref="pos_restaurant.view_restaurant_table_form"/>-->
<!--<field name="arch" type="xml">-->
<!--<xpath expr="//field[@name='color']" position="replace">-->
<!--<field name="color" widget="color"/>-->
<!--</xpath>-->
<!--</field>-->
<!--</record>-->
</data>
</odoo>
Loading…
Cancel
Save