Browse Source

[ADD] Initial Commit

pull/63/merge
Sreejith P 7 years ago
parent
commit
55633ae17a
  1. 40
      barcode_scanning_sale_purchase/README.rst
  2. 22
      barcode_scanning_sale_purchase/__init__.py
  3. 43
      barcode_scanning_sale_purchase/__manifest__.py
  4. 23
      barcode_scanning_sale_purchase/models/__init__.py
  5. 18
      barcode_scanning_sale_purchase/models/purchase_order.py
  6. 18
      barcode_scanning_sale_purchase/models/sale_order.py
  7. BIN
      barcode_scanning_sale_purchase/static/description/banner.jpg
  8. BIN
      barcode_scanning_sale_purchase/static/description/cybro_logo.png
  9. BIN
      barcode_scanning_sale_purchase/static/description/icon.png
  10. 95
      barcode_scanning_sale_purchase/static/description/index.html
  11. BIN
      barcode_scanning_sale_purchase/static/description/product_barcode.png
  12. BIN
      barcode_scanning_sale_purchase/static/description/purchase_order.png
  13. BIN
      barcode_scanning_sale_purchase/static/description/sale_order.png
  14. 15
      barcode_scanning_sale_purchase/views/purchase_order_line.xml
  15. 15
      barcode_scanning_sale_purchase/views/sale_order_line.xml

40
barcode_scanning_sale_purchase/README.rst

@ -0,0 +1,40 @@
Barcode scanning support for sale and Purchase v11
==================================================
This module will help you to use barcode scanner in sales and purchase.
Depends
=======
[sale_management] addon Odoo
[purchase] addon Odoo
Tech
====
* [Python] - Models
* [XML] - Odoo views
Installation
============
- www.odoo.com/documentation/11.0/setup/install.html
- Install our custom addon
Bug Tracker
===========
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Credits
=======
* Cybrosys Techno Solutions <https://www.cybrosys.com>
Author
------
Developer: Sreejith P @ cybrosys, sreejith@cybrosys.in
Maintainer
----------
This module is maintained by Cybrosys Technologies.
For support and more information, please visit https://www.cybrosys.com.

22
barcode_scanning_sale_purchase/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
###################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Sreejith P (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
from . import models

43
barcode_scanning_sale_purchase/__manifest__.py

@ -0,0 +1,43 @@
# -*- coding: utf-8 -*-
###################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Sreejith P (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
{
'name': 'Barcode scanning support for sale and Purchase',
'version': '11.0.1.0.0',
'category': 'Sales',
'summary': 'This module will help you to use barcode scanner in sales and purchase.',
'author': 'Cybrosys Techno solutions',
'company': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com',
'depends': ['purchase', 'sale_management'],
'demo': [],
'data': [
'views/sale_order_line.xml',
'views/purchase_order_line.xml',
],
'installable': True,
'application': False,
'auto_install': False,
'images': ['static/description/banner.jpg'],
'qweb': [],
'license': 'AGPL-3',
}

23
barcode_scanning_sale_purchase/models/__init__.py

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
###################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
# Author: Sreejith P (<https://www.cybrosys.com>)
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
from . import sale_order
from . import purchase_order

18
barcode_scanning_sale_purchase/models/purchase_order.py

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from odoo import api, models, fields
class PurchaseOrderLines(models.Model):
_inherit = "purchase.order.line"
barcode_scan = fields.Char(string='Product Barcode', help="Here you can provide the barcode for the product")
@api.onchange('barcode_scan')
def _onchange_barcode_scan(self):
product_rec = self.env['product.product']
if self.barcode_scan:
product = product_rec.search([('barcode', '=', self.barcode_scan)])
self.product_id = product.id
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

18
barcode_scanning_sale_purchase/models/sale_order.py

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from odoo import api, models, fields
class SaleOrderLines(models.Model):
_inherit = 'sale.order.line'
barcode_scan = fields.Char(string='Product Barcode', help="Here you can provide the barcode for the product")
@api.onchange('barcode_scan')
def _onchange_barcode_scan(self):
product_rec = self.env['product.product']
if self.barcode_scan:
product = product_rec.search([('barcode', '=', self.barcode_scan)])
self.product_id = product.id
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

BIN
barcode_scanning_sale_purchase/static/description/banner.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
barcode_scanning_sale_purchase/static/description/cybro_logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
barcode_scanning_sale_purchase/static/description/icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

95
barcode_scanning_sale_purchase/static/description/index.html

@ -0,0 +1,95 @@
<section class="oe_container">
<div class="oe_spaced">
<h2 class="oe_slogan">Barcode scanning support for sale and Purchase</h2>
<h3 class="oe_slogan">This module will help you to use barcode scanner in sales and purchase module.</h3>
<h4 class="oe_slogan">Author : Cybrosys Techno Solutions , www.cybrosys.com</h4>
<div style="padding-left:66px;">
<h4>Features:</h4>
<ul>
<li style="list-style:none !important;"><span style="color:green;"> &#8594;</span>&nbsp;&nbsp; Use barcode in Sales order</li>
<li style="list-style:none !important;"><span style="color:green;"> &#8594;</span>&nbsp;&nbsp; Use barcode in Purchase order</li>
</ul>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_spaced">
<div class="oe_picture">
<h3 class="oe_slogan">Overview</h3>
<p class="oe_mt32">
A module that can use in sales and purchase for barcode scanning.
</p>
</div>
</div>
</section>
<section class="oe_container">
<div class="oe_row oe_spaced">
<h4 class="oe_slogan">Product Form</h4>
<div class="oe_span12">
<p class='oe_mt32'>
&#x261B; Provide a barcode for the product.<br>
</p>
<div class="oe_row_img oe_centered">
<img class="oe_picture oe_screenshot" src="product_barcode.png">
</div>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_row oe_spaced">
<h4 class="oe_slogan">Sale Order</h4>
<div class="oe_span12">
<p class='oe_mt32'>
&#x261B; Just click on the barcode field and scan the product now the item is added to the order line.<br>
</p>
<div class="oe_row_img oe_centered">
<img class="oe_picture oe_screenshot" src="sale_order.png">
</div>
</div>
</div>
</section>
<section class="oe_container">
<div class="oe_row oe_spaced">
<h4 class="oe_slogan">Purchase Order</h4>
<div class="oe_span12">
<p class='oe_mt32'>
&#x261B; Just click on the barcode field and scan the product now the item is added to the order line.<br>
</p>
<div class="oe_row_img oe_centered">
<img class="oe_picture oe_screenshot" src="purchase_order.png">
</div>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<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>

BIN
barcode_scanning_sale_purchase/static/description/product_barcode.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
barcode_scanning_sale_purchase/static/description/purchase_order.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
barcode_scanning_sale_purchase/static/description/sale_order.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

15
barcode_scanning_sale_purchase/views/purchase_order_line.xml

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data>
<record id="purchase_order_view_inherit_barcode1" model="ir.ui.view">
<field name="name">purchase.order.form.inherit</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree/field[@name='product_id']" position="before">
<field name ="barcode_scan"/>
</xpath>
</field>
</record>
</data>
</odoo>

15
barcode_scanning_sale_purchase/views/sale_order_line.xml

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data>
<record id="sale_order_view_inherit_barcode1" model="ir.ui.view">
<field name="name">sale.order.form.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree/field[@name='product_id']" position="before">
<field name ="barcode_scan"/>
</xpath>
</field>
</record>
</data>
</odoo>
Loading…
Cancel
Save