@ -0,0 +1,48 @@ |
|||||
|
.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg |
||||
|
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html |
||||
|
:alt: License: LGPL-3 |
||||
|
|
||||
|
OCR Data Retrieval |
||||
|
================== |
||||
|
This module allows user to retrieve data from scanned documents and images. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
- www.odoo.com/documentation/16.0/setup/install.html |
||||
|
- Install our custom addon |
||||
|
- Install pdf2image, PIL, pytesseract, spacy(version 3.5.2), en_core_web_sm |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
License |
||||
|
------- |
||||
|
General Public License, Version 3 (LGPL v3). |
||||
|
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
Developer: (V15) Sruthi Renjith, Contact: odoo@cybrosys.com |
||||
|
|
||||
|
Contacts |
||||
|
-------- |
||||
|
* Mail Contact : odoo@cybrosys.com |
||||
|
* Website : https://cybrosys.com |
||||
|
|
||||
|
Bug Tracker |
||||
|
----------- |
||||
|
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
||||
|
|
||||
|
Maintainer |
||||
|
========== |
||||
|
.. image:: https://cybrosys.com/images/logo.png |
||||
|
:target: https://cybrosys.com |
||||
|
|
||||
|
This module is maintained by Cybrosys Technologies. |
||||
|
|
||||
|
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Sruthi Renjith (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# 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 |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import models |
@ -0,0 +1,53 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Sruthi Renjith (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# 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 |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
{ |
||||
|
'name': 'OCR Data Retrieval', |
||||
|
'version': '15.0.1.0.0', |
||||
|
'category': 'Productivity', |
||||
|
'summary': """Data retrieval from scanned documents with .jpg, .jpeg, .png |
||||
|
and .pdf file format""", |
||||
|
'description': """OCR data retrieval from scanned documents is the process |
||||
|
of extracting machine-readable text and potentially other relevant |
||||
|
information from physical or digital images of documents.""", |
||||
|
'author': "Cybrosys Techno Solutions", |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'website': "https://www.cybrosys.com", |
||||
|
'depends': ['base', 'hr_expense', 'bill_digitization', 'contacts', |
||||
|
'purchase', 'sale_management'], |
||||
|
'assets': { |
||||
|
'web.assets_backend': [ |
||||
|
'/ocr_data_retrieval/static/src/js/image_field.js', |
||||
|
], |
||||
|
}, |
||||
|
'data': ['security/ir.model.access.csv', |
||||
|
'views/ocr_data_template_views.xml'], |
||||
|
'external_dependencies': { |
||||
|
'python': ['pdf2image', 'PIL', 'pytesseract', 'spacy', |
||||
|
'en_core_web_sm'] |
||||
|
}, |
||||
|
'images': ['static/description/banner.jpg'], |
||||
|
'license': 'LGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': False, |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
## Module <ocr_data_retrieval> |
||||
|
#### 10.01.2024 |
||||
|
#### Version 15.0.1.0.0 |
||||
|
#### ADD |
||||
|
- Initial commit for OCR Data Retrieval |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Sruthi Renjith (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# 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 |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import ocr_data_template |
@ -0,0 +1,508 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Sruthi Renjith (odoo@cybrosys.com) |
||||
|
# |
||||
|
# You can modify it under the terms of the GNU LESSER |
||||
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. |
||||
|
# |
||||
|
# 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 |
||||
|
# (LGPL v3) along with this program. |
||||
|
# If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
import io |
||||
|
import os |
||||
|
from pdf2image import convert_from_bytes |
||||
|
from PIL import Image, ImageOps |
||||
|
import pytesseract |
||||
|
import re |
||||
|
import spacy |
||||
|
from odoo import api, fields, models, _ |
||||
|
from odoo.exceptions import ValidationError |
||||
|
|
||||
|
|
||||
|
class OCRDataTemplate(models.TransientModel): |
||||
|
""" Class to read document and extract the text from JPG, JPEG, PNG and |
||||
|
PDF files. """ |
||||
|
_name = "ocr.data.template" |
||||
|
_description = "Data retrieving template" |
||||
|
_rec_name = "file_name" |
||||
|
|
||||
|
image = fields.Binary(string="Document", attachment=True, required=True, |
||||
|
help="Upload .jpg, .jpeg, .png or .pdf files") |
||||
|
file_name = fields.Char(string="Document Name", help="Document name") |
||||
|
image2 = fields.Image(string="Document", |
||||
|
help="Uploaded document") |
||||
|
flag = fields.Boolean(default=False, string="Is Read", |
||||
|
help="Flag to check the document read or not") |
||||
|
data = fields.Text(string="Data", readonly=True, |
||||
|
help="Content from the document") |
||||
|
model_name_id = fields.Many2one( |
||||
|
'ir.model', string="Model", |
||||
|
domain="[" |
||||
|
"('model', 'in', ['res.partner', 'account.move', 'hr.employee'," |
||||
|
" 'hr.expense', 'sale.order', 'purchase.order'])]", |
||||
|
help="Model to which the data want to map") |
||||
|
model_field_ids = fields.Many2many( |
||||
|
'ir.model.fields', string="Fields", |
||||
|
domain="[('model_id', '=', model_name_id)]", |
||||
|
help="Fields names to map data") |
||||
|
|
||||
|
def data_segmentation(self, img): |
||||
|
""" |
||||
|
Function to do segmentation for the retrieved data after converting it |
||||
|
into image. |
||||
|
:param img: The image format of the document that need to undergo the |
||||
|
segmentation procedure. |
||||
|
:return: The segments of the image. |
||||
|
""" |
||||
|
img = ImageOps.grayscale(img) |
||||
|
img = img.point(lambda x: 255 if x > 176 else 0, '1') |
||||
|
img_rgb = ImageOps.invert(img.convert("RGB")) |
||||
|
segments = [] |
||||
|
segment_bounds = img_rgb.getbbox() |
||||
|
while segment_bounds: |
||||
|
segment = img_rgb.crop(segment_bounds) |
||||
|
if segment.size[0] > 0 and segment.size[1] > 0: |
||||
|
segments.append(segment) |
||||
|
img_rgb = ImageOps.crop(img_rgb, segment_bounds) |
||||
|
segment_bounds = img_rgb.getbbox() |
||||
|
return segments |
||||
|
|
||||
|
def action_get_data(self): |
||||
|
""" |
||||
|
Function to get the files in .jpg, .jpeg, .png and .pdf formats. |
||||
|
""" |
||||
|
self.flag = True |
||||
|
split_tup = os.path.splitext(self.file_name) |
||||
|
try: |
||||
|
# Getting the file path from ir.attachments. |
||||
|
file_attachment = self.env["ir.attachment"].search( |
||||
|
['|', ('res_field', '!=', False), ('res_field', '=', False), |
||||
|
('res_id', '=', self.id), |
||||
|
('res_model', '=', 'ocr.data.template')], |
||||
|
limit=1) |
||||
|
file_path = file_attachment._full_path(file_attachment.store_fname) |
||||
|
segmented_data = [] |
||||
|
# Reading files in the format .jpg, .jpeg and .png. |
||||
|
if split_tup[1] == '.jpg' or split_tup[1] == '.jpeg' or split_tup[ |
||||
|
1] == '.png': |
||||
|
with open(file_path, mode='rb') as f: |
||||
|
binary_data = f.read() |
||||
|
img = Image.open(io.BytesIO(binary_data)) |
||||
|
# Calling the function to do segmentation. |
||||
|
segmented_data = self.data_segmentation(img) |
||||
|
elif split_tup[1] == '.pdf': |
||||
|
# Reading files in the format .pdf. |
||||
|
with open(file_path, mode='rb') as f: |
||||
|
pdf_data = f.read() |
||||
|
pages = convert_from_bytes(pdf_data) |
||||
|
# Making the contents in 2 or more pages into combined page. |
||||
|
max_width = max(page.width for page in pages) |
||||
|
total_height = sum(page.height for page in pages) |
||||
|
resized_images = [page.resize((2400, 1800)) for page in pages] |
||||
|
combined_image = Image.new('RGB', (max_width, total_height)) |
||||
|
y_offset = 0 |
||||
|
for resized_page in resized_images: |
||||
|
combined_image.paste(resized_page, (0, y_offset)) |
||||
|
y_offset += resized_page.height |
||||
|
# Calling the segmentation function. |
||||
|
segmented_data = self.data_segmentation(combined_image) |
||||
|
except Exception: |
||||
|
self.env['ocr.data.template'].search([], order="id desc", |
||||
|
limit=1).unlink() |
||||
|
raise ValidationError(_("Cannot identify data")) |
||||
|
# Converting the segmented image into text using pytesseract. |
||||
|
text = "" |
||||
|
for segment in segmented_data: |
||||
|
try: |
||||
|
text += pytesseract.image_to_string(segment) + "\n" |
||||
|
break |
||||
|
except Exception: |
||||
|
raise ValidationError(_("Data cannot be read")) |
||||
|
# Assigning retrieved data into text field. |
||||
|
self.data = text |
||||
|
|
||||
|
@api.onchange('model_name_id') |
||||
|
def _onchange_model_name_id(self): |
||||
|
""" Function to update the Many2many field to empty """ |
||||
|
self.write({'model_field_ids': [(6, 0, [])]}) |
||||
|
|
||||
|
def find_person_name(self): |
||||
|
""" |
||||
|
Function to find person name from the retrieved text using 'spacy' |
||||
|
""" |
||||
|
person = '' |
||||
|
nlp = spacy.load("en_core_web_sm") |
||||
|
doc = nlp(self.data) |
||||
|
for entity in doc.ents: |
||||
|
if entity.label_ == "PERSON": |
||||
|
person = entity.text |
||||
|
break |
||||
|
return person |
||||
|
|
||||
|
def get_order_line(self, text): |
||||
|
""" |
||||
|
Function to find product lines from retrieved data using regex. |
||||
|
:param text: The extracted text to find the order lines from it |
||||
|
:return: The order lines found from text |
||||
|
""" |
||||
|
product_line_list = [] |
||||
|
quantities = [] |
||||
|
unit_prices = [] |
||||
|
product_regex = r'\[?(.+?)\]?\s*(.+)\n(?:HSN/SAC Code):\s+(\d+)' |
||||
|
quantity_regex = r"Quantity Unit\n([\d.\s\S]+)" |
||||
|
unit_price_regex = r"Amount\n([\d.\s\S]+)" |
||||
|
# Matching the pattern with the data. |
||||
|
quantity_match = re.search(quantity_regex, text) |
||||
|
price_match = re.search(unit_price_regex, text) |
||||
|
if quantity_match: |
||||
|
quantity_unit_text = quantity_match.group(1) |
||||
|
# If matched finding a particular pattern for quantities |
||||
|
# form that group. |
||||
|
quantities = re.findall(r"\d+\.\d+", quantity_unit_text) |
||||
|
if price_match: |
||||
|
price_unit_text = price_match.group(1) |
||||
|
# If matched finding a particular pattern for unit price |
||||
|
# form that group. |
||||
|
unit_prices = re.findall(r"\d+\.\d+", price_unit_text) |
||||
|
# Finding the data that matches the pattern for products. |
||||
|
products = re.findall(product_regex, text) |
||||
|
number_of_product = len(products) |
||||
|
number_of_qty = len(quantities) |
||||
|
number_of_price = len(unit_prices) |
||||
|
# Getting the products and its corresponding quantity and price. |
||||
|
if number_of_product == number_of_qty == number_of_price: |
||||
|
product_line_list = [ |
||||
|
{'product': products[i], 'quantity': quantities[i], |
||||
|
'price': unit_prices[i]} |
||||
|
for i in range(number_of_product)] |
||||
|
elif number_of_product == number_of_qty: |
||||
|
product_line_list = [ |
||||
|
{'product': products[i], 'quantity': quantities[i]} |
||||
|
for i in range(number_of_product)] |
||||
|
elif number_of_product == number_of_price: |
||||
|
product_line_list = [ |
||||
|
{'product': products[i], 'price': unit_prices[i]} |
||||
|
for i in range(number_of_product)] |
||||
|
elif products: |
||||
|
product_line_list = [{'product': products[i]} for i in range(number_of_product)] |
||||
|
return product_line_list |
||||
|
|
||||
|
def action_process_data(self): |
||||
|
""" |
||||
|
Function to process the data after fetching it. |
||||
|
The fetched data are mapping into some models. |
||||
|
""" |
||||
|
phone_number = '' |
||||
|
email_address = '' |
||||
|
person = '' |
||||
|
phone_pattern = r'\(\d{3}\) \d{3}-\d{4}|\d{3}-\d{3}-\d{4}|\+\d{1}-\d{3}-\d{3}-\d{4}|\d{11}|P \+\d{3} \d{6}' |
||||
|
email_pattern = r'[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}' |
||||
|
if self.model_name_id.name == 'Contact': |
||||
|
# Mapping the data into Contact module by fetching person name, |
||||
|
# phone number and email id from data. |
||||
|
field_value = False |
||||
|
non_field_count = 0 |
||||
|
for field in self.model_field_ids: |
||||
|
if field.name == 'name' or field.name == 'display_name': |
||||
|
person = self.find_person_name() |
||||
|
if not person: |
||||
|
raise ValidationError(_("Partner name cannot find")) |
||||
|
field_value = True |
||||
|
elif field.name == 'phone': |
||||
|
phone = re.findall(phone_pattern, self.data) |
||||
|
if phone: |
||||
|
phone_number = phone[0] |
||||
|
elif field.name == 'email': |
||||
|
email = re.findall(email_pattern, self.data) |
||||
|
if email: |
||||
|
email_address = email[0] |
||||
|
else: |
||||
|
non_field_count = 1 |
||||
|
if not field_value and non_field_count == 1: |
||||
|
raise ValidationError(_("No data to map into the field")) |
||||
|
if person: |
||||
|
partner = self.env['res.partner'].search( |
||||
|
[('name', '=', person)], limit=1) |
||||
|
if not partner: |
||||
|
# Creating record in res.partner. |
||||
|
partner_record = self.env['res.partner'].create({ |
||||
|
'name': person, |
||||
|
'email': email_address, |
||||
|
'phone': phone_number |
||||
|
}) |
||||
|
else: |
||||
|
raise ValidationError(_("Partner already exist")) |
||||
|
else: |
||||
|
raise ValidationError(_("Name field is not chosen to create" |
||||
|
" partner")) |
||||
|
if partner_record: |
||||
|
return { |
||||
|
'name': "Partner", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'res.partner', |
||||
|
'res_id': partner_record.id, |
||||
|
'view_id': self.env.ref('base.view_partner_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
elif self.model_name_id.name == 'Journal Entry': |
||||
|
# Mapping data into Journal Entry. Creating a record in vendor bill |
||||
|
vendor_bill_flag = False |
||||
|
for field in self.model_field_ids: |
||||
|
# Taking the file path from ir.attachment. |
||||
|
if field.name == 'invoice_vendor_bill_id': |
||||
|
try: |
||||
|
file_attachment = self.env["ir.attachment"].search( |
||||
|
['|', ('res_field', '!=', False), |
||||
|
('res_field', '=', False), |
||||
|
('res_id', '=', self.id), |
||||
|
('res_model', '=', 'ocr.data.template')], |
||||
|
limit=1) |
||||
|
file_path = file_attachment._full_path( |
||||
|
file_attachment.store_fname) |
||||
|
with open(file_path, mode='rb') as f: |
||||
|
binary_data = f.read() |
||||
|
img = Image.open(io.BytesIO(binary_data)) |
||||
|
# Resizing the image to improve the clarity. |
||||
|
resized_img = img.resize( |
||||
|
(img.width * 2, img.height * 2), |
||||
|
resample=Image.BICUBIC) |
||||
|
except Exception: |
||||
|
raise ValidationError(_("Can't create vendor bill")) |
||||
|
# Converting the image into text using OCR python package |
||||
|
# pytesseract. |
||||
|
try: |
||||
|
text = pytesseract.image_to_string(resized_img) |
||||
|
except Exception: |
||||
|
raise ValidationError(_("Can't create vendor bill")) |
||||
|
bill = self.env['digitize.bill'] |
||||
|
# Calling the function to create vendor bill |
||||
|
# from model digitize.bill. |
||||
|
bill_record = bill.create_record(text) |
||||
|
return { |
||||
|
'name': "Bill", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'account.move', |
||||
|
'res_id': bill_record.id, |
||||
|
'view_id': self.env.ref('account.view_move_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
if not vendor_bill_flag: |
||||
|
raise ValidationError(_("No data to map into the field")) |
||||
|
elif self.model_name_id.name == 'Employee': |
||||
|
# Mapping the data into Employee module by fetching person name, |
||||
|
# phone number and email. |
||||
|
field_value = False |
||||
|
non_field_count = 0 |
||||
|
for field in self.model_field_ids: |
||||
|
if field.name == 'name' or field.name == 'display_name' or \ |
||||
|
field.name == 'emergency_contact': |
||||
|
person = self.find_person_name() |
||||
|
if not person: |
||||
|
raise ValidationError(_("Employee name cannot find")) |
||||
|
field_value = True |
||||
|
elif field.name == 'work_phone' or field.name == 'phone' or \ |
||||
|
field.name == 'emergency_phone': |
||||
|
phone = re.findall(phone_pattern, self.data) |
||||
|
if phone: |
||||
|
phone_number = phone[0] |
||||
|
elif field.name == 'private_email' or \ |
||||
|
field.name == 'work_email': |
||||
|
email = re.findall(email_pattern, self.data) |
||||
|
if email: |
||||
|
email_address = email[0] |
||||
|
else: |
||||
|
non_field_count = 1 |
||||
|
if not field_value and non_field_count == 1: |
||||
|
raise ValidationError(_("No data to map into the field")) |
||||
|
if person: |
||||
|
partner = self.env['hr.employee'].search( |
||||
|
[('name', '=', person)], limit=1) |
||||
|
if not partner: |
||||
|
# Creating a record in hr.employee by mapping the |
||||
|
# data into employee name, work phone and work email. |
||||
|
employee_record = self.env['hr.employee'].create({ |
||||
|
'name': person, |
||||
|
'work_email': email_address, |
||||
|
'work_phone': phone_number |
||||
|
}) |
||||
|
else: |
||||
|
raise ValidationError(_("Employee already exist")) |
||||
|
else: |
||||
|
raise ValidationError( |
||||
|
_("Name field is not chosen to create employee")) |
||||
|
if employee_record: |
||||
|
return { |
||||
|
'name': "Employee", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'hr.employee', |
||||
|
'res_id': employee_record.id, |
||||
|
'view_id': self.env.ref('hr.view_employee_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
elif self.model_name_id.name == 'Expense': |
||||
|
# Mapping the data into Expense module. |
||||
|
expense_product = False |
||||
|
for field in self.model_field_ids: |
||||
|
if field.name == 'name' or field.name == 'product_id': |
||||
|
product = self.env['product.product'].search( |
||||
|
[('name', '=', 'BILL EXPENSE')], limit=1) |
||||
|
if not product: |
||||
|
product = self.env['product.product'].create({ |
||||
|
'name': 'BILL EXPENSE', |
||||
|
}) |
||||
|
pattern = r'\b\d+(?:\.\d{1,2})?\b' |
||||
|
matches = re.findall(pattern, self.data) |
||||
|
total_amount = float(matches[0]) if matches else 0.0 |
||||
|
expense_record = self.env['hr.expense'].create({ |
||||
|
'name': product.name, |
||||
|
'product_id': product.id, |
||||
|
'unit_amount': total_amount |
||||
|
}) |
||||
|
return { |
||||
|
'name': "Expense", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'hr.expense', |
||||
|
'res_id': expense_record.id, |
||||
|
'view_id': self.env.ref( |
||||
|
'hr_expense.hr_expense_view_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
if not expense_product: |
||||
|
raise ValidationError(_("Can't create an expense without " |
||||
|
"description or category")) |
||||
|
elif self.model_name_id.name == 'Sales Order': |
||||
|
# Mapping the data from PDF with proper format into Sale Order. |
||||
|
partner = False |
||||
|
sale_order = '' |
||||
|
field_value = False |
||||
|
non_field_value = 0 |
||||
|
for field in self.model_field_ids: |
||||
|
if field.name == 'order_line': |
||||
|
person = self.find_person_name() |
||||
|
if person: |
||||
|
partner = self.env['hr.employee'].search( |
||||
|
[('name', '=', person)], limit=1) |
||||
|
if not partner: |
||||
|
partner = self.env['hr.employee'].create({ |
||||
|
'name': person, |
||||
|
}) |
||||
|
# Calling the function to get order lines. |
||||
|
product_line = self.get_order_line(self.data) |
||||
|
sale_order = self.env['sale.order'].create({ |
||||
|
'partner_id': partner.id, |
||||
|
}) |
||||
|
if product_line: |
||||
|
for item in product_line: |
||||
|
if 'quantity' not in item.keys(): |
||||
|
item.update({'quantity': 0}) |
||||
|
if 'price' not in item.keys(): |
||||
|
item.update({'price': 0}) |
||||
|
product = self.env['product.product'].search( |
||||
|
[('name', '=', item['product'])], limit=1) |
||||
|
if not product: |
||||
|
product = self.env['product.product'].create({ |
||||
|
'name': item['product'] |
||||
|
}) |
||||
|
item.update({'product': product.id}) |
||||
|
self.env['sale.order.line'].create({ |
||||
|
'order_id': sale_order.id, |
||||
|
'product_id': item['product'], |
||||
|
'product_uom_qty': item['quantity'], |
||||
|
'price_unit': item['price'] |
||||
|
}) |
||||
|
else: |
||||
|
non_field_value = 1 |
||||
|
if sale_order: |
||||
|
return { |
||||
|
'name': "Sale order", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'sale.order', |
||||
|
'res_id': sale_order.id, |
||||
|
'view_id': self.env.ref('sale.view_order_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
if not field_value and non_field_value == 1: |
||||
|
raise ValidationError(_("No data to map into the field")) |
||||
|
elif self.model_name_id.name == 'Purchase Order': |
||||
|
# Mapping the data from PDF with proper format into Purchase Order. |
||||
|
field_value = False |
||||
|
purchase_order = '' |
||||
|
non_field_value = 0 |
||||
|
partner = False |
||||
|
for field in self.model_field_ids: |
||||
|
if field.name == 'order_line': |
||||
|
person = self.find_person_name() |
||||
|
if person: |
||||
|
partner = self.env['hr.employee'].search( |
||||
|
[('name', '=', person)], limit=1) |
||||
|
if not partner: |
||||
|
partner = self.env['hr.employee'].create({ |
||||
|
'name': person, |
||||
|
}) |
||||
|
# Calling the function to get order lines. |
||||
|
product_line = self.get_order_line(self.data) |
||||
|
purchase_order = self.env['purchase.order'].create({ |
||||
|
'partner_id': partner.id, |
||||
|
}) |
||||
|
if product_line: |
||||
|
for item in product_line: |
||||
|
if 'quantity' not in item.keys(): |
||||
|
item.update({'quantity': 0}) |
||||
|
if 'price' not in item.keys(): |
||||
|
item.update({'price': 0}) |
||||
|
product = self.env['product.product'].search( |
||||
|
[('name', '=', item['product'])], limit=1) |
||||
|
if not product: |
||||
|
product = self.env['product.product'].create({ |
||||
|
'name': item['product'] |
||||
|
}) |
||||
|
item.update({'product': product.id}) |
||||
|
self.env['purchase.order.line'].create({ |
||||
|
'order_id': purchase_order.id, |
||||
|
'product_id': item['product'], |
||||
|
'product_uom_qty': item['quantity'], |
||||
|
'price_unit': item['price'] |
||||
|
}) |
||||
|
else: |
||||
|
non_field_value = 1 |
||||
|
if purchase_order: |
||||
|
return { |
||||
|
'name': "Purchase order", |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'view_type': 'form', |
||||
|
'view_mode': 'form', |
||||
|
'res_model': 'purchase.order', |
||||
|
'res_id': purchase_order.id, |
||||
|
'view_id': self.env.ref( |
||||
|
'purchase.purchase_order_form').id, |
||||
|
'target': 'current', |
||||
|
} |
||||
|
if not field_value and non_field_value == 1: |
||||
|
raise ValidationError(_("No data to map into the field")) |
||||
|
|
||||
|
@api.onchange('image') |
||||
|
def _onchange_image(self): |
||||
|
self.write({ |
||||
|
'image2': self.image |
||||
|
}) |
|
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 280 KiB |
After Width: | Height: | Size: 310 KiB |
After Width: | Height: | Size: 278 KiB |
After Width: | Height: | Size: 253 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 404 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 13 KiB |
@ -0,0 +1,746 @@ |
|||||
|
<div style="background-color: #714B67; min-height: 600px; width: 100%; padding: 15px; position: relative;"> |
||||
|
<!-- TITLE BAR --> |
||||
|
<div class="d-flex align-items-center justify-content-between" |
||||
|
style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;"> |
||||
|
<img src="assets/misc/logo.png" width="162" height="60" |
||||
|
style="width:auto !important; height:60px !important"/> |
||||
|
<div> |
||||
|
<div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
||||
|
class="mr-2"> |
||||
|
<i class="fa fa-check mr-1"></i>Community |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF TITLE BAR --> |
||||
|
|
||||
|
<div class="container"> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12"> |
||||
|
<!-- APP HERO --> |
||||
|
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;"> |
||||
|
OCR Data Retrieval</h1> |
||||
|
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;"> |
||||
|
Retrieving the Contents from Images and PDF Files</p> |
||||
|
</div> |
||||
|
<!-- END OF APP HERO --> |
||||
|
<img src="assets/screenshots/hero.gif" |
||||
|
style="width: 100%; margin-left: auto; margin-right: auto;"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!-- NAVIGATION SECTION --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/compass.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Explore This |
||||
|
Module</h2> |
||||
|
</div> |
||||
|
<div class="row my-4" style="font-family: 'Montserrat', sans-serif;"> |
||||
|
<div class="col-sm-12 col-md-6 my-3"> |
||||
|
<a href="#overview"> |
||||
|
<div class="d-flex justify-content-between align-items-center" |
||||
|
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span> |
||||
|
<span |
||||
|
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">Learn |
||||
|
more about this |
||||
|
module</span> |
||||
|
</div> |
||||
|
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-sm-12 col-md-6 my-3"> |
||||
|
<a href="#config"> |
||||
|
<div class="d-flex justify-content-between align-items-center" |
||||
|
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Configuration</span> |
||||
|
<span |
||||
|
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View |
||||
|
configuration of this |
||||
|
module</span> |
||||
|
</div> |
||||
|
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-sm-12 col-md-6 my-3"> |
||||
|
<a href="#features"> |
||||
|
<div class="d-flex justify-content-between align-items-center" |
||||
|
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span> |
||||
|
<span |
||||
|
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View |
||||
|
features of this |
||||
|
module</span> |
||||
|
</div> |
||||
|
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-sm-12 col-md-6 my-3"> |
||||
|
<a href="#screenshots"> |
||||
|
<div class="d-flex justify-content-between align-items-center" |
||||
|
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span> |
||||
|
<span |
||||
|
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View |
||||
|
screenshots for this |
||||
|
module</span> |
||||
|
</div> |
||||
|
<img src="assets/misc/right-arrow.png" width="36" height="36"/> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF NAVIGATION SECTION --> |
||||
|
|
||||
|
<!-- OVERVIEW SECTION --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
||||
|
id="overview"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/pie-chart.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Overview |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="row" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
||||
|
<div class="col-sm-12 py-4"> |
||||
|
OCR data retrieval module allows user to read data from images anf PDF |
||||
|
files. |
||||
|
The module make use of OCR (Optical Character Recognition) that enables |
||||
|
the extraction of text from scanned documents. |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF OVERVIEW SECTION --> |
||||
|
|
||||
|
<!-- CONFIGURATION SECTION --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="config"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/config.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Configuration |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="row" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
||||
|
<div class="col-sm-12 py-4"> |
||||
|
Need to install the following python packages |
||||
|
1. pdf2image (pip install pdf2image) |
||||
|
2. PIL (pip3 install PIL) |
||||
|
3. pytesseract (pip3 install pytesseract) |
||||
|
4. spacy (pip3 install spacy==3.5.2) |
||||
|
5. en_core_web_sm (python3.8 -m spacy download en_core_web_sm) |
||||
|
6. sudo apt-get update && sudo apt-get install tesseract-ocr |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF CONFIGURATION SECTION --> |
||||
|
|
||||
|
<!-- FEATURES SECTION --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
||||
|
id="features"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/features.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Features |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="row" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
||||
|
<div class="col-sm-12 col-md-6"> |
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 40px; margin-bottom: 40px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Retrieving Data from Images with .jpg, .jpeg, .png Format</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 30px; margin-bottom: 30px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Retrieving Data from .pdf Format</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 40px; margin-bottom: 40px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Can Map Data into Contact Module</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 30px; margin-bottom: 30px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Can Map Data into Employee and Expense Module</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 30px; margin-bottom: 30px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Can Map Data into Vendor Bill Module</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="d-flex align-items-start" |
||||
|
style="margin-top: 30px; margin-bottom: 30px"> |
||||
|
<img src="assets/misc/check-box.png" class="mr-2"/> |
||||
|
<div> |
||||
|
<span |
||||
|
style="display: block; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Can Map Data into Sales and Purchase Module</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF FEATURES SECTION --> |
||||
|
|
||||
|
<!-- SCREENSHOTS SECTION --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" |
||||
|
id="screenshots"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/pictures.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Screenshots |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12"> |
||||
|
|
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Retrieval Menu Option</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Menu that direct to the data retrieval.</p> |
||||
|
<img src="assets/screenshots/ocr_menu.png" class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
Data Retrieval Template</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Form to read file and retrieve data</p> |
||||
|
<img src="assets/screenshots/upload_form.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Retrieval from Bill</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Reading content from scanned bill and mapping into Vendor |
||||
|
Bill</p> |
||||
|
<img src="assets/screenshots/vendor_bill.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Retrieval from Personal Cards</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Reading content from personal documents and mapping into |
||||
|
Contact module</p> |
||||
|
<img src="assets/screenshots/contact_mapping.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Mapping into Employee Module</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Reading content from personal documents and mapping into |
||||
|
Employee module</p> |
||||
|
<img src="assets/screenshots/employee_mapping.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Mapping into Purchase Order</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Reading content from PDF file and mapping into Purchase |
||||
|
Order</p> |
||||
|
<img src="assets/screenshots/purchase_mapping.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
OCR Data Mapping into Expense Module</h3> |
||||
|
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> |
||||
|
Reading content from bills and mapping into Expense module</p> |
||||
|
<img src="assets/screenshots/expense_mapping.png" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div style="display: block; margin: 30px auto;"> |
||||
|
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> |
||||
|
(The example format for sale order PDF and purchase order PDF |
||||
|
is added in the |
||||
|
module.)</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF SCREENSHOTS SECTION --> |
||||
|
|
||||
|
<!-- SUGGESTED PRODUCTS --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/categories.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Suggested |
||||
|
Products |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12"> |
||||
|
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
||||
|
<!-- The slideshow --> |
||||
|
<div class="carousel-inner" style="padding: 30px;"> |
||||
|
<div class="carousel-item" style="min-height: 198.656px;"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/project_dashboard_odoo/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/1.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/inventory_barcode_scanning/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/2.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/agriculture_management_odoo/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/3.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="carousel-item active" |
||||
|
style="min-height: 198.656px;"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/product_image_suggestion/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/4.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/onedrive_integration_odoo/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/5.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/systray_world_clock/#" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-radius: 0px;" |
||||
|
src="./assets/modules/6.jpg"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- Left and right controls --> |
||||
|
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
||||
|
style="width:35px; color:#000"> <span |
||||
|
class="carousel-control-prev-icon"><i |
||||
|
class="fa fa-chevron-left" |
||||
|
style="font-size:24px"></i></span> |
||||
|
</a> <a class="carousel-control-next" href="#demo1" |
||||
|
data-slide="next" style="width:35px; color:#000"> |
||||
|
<span class="carousel-control-next-icon"><i |
||||
|
class="fa fa-chevron-right" |
||||
|
style="font-size:24px"></i></span> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF SUGGESTED PRODUCTS --> |
||||
|
|
||||
|
<!-- OUR SERVICES --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/star.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Our Services |
||||
|
</h2> |
||||
|
</div> |
||||
|
|
||||
|
<div class="container my-5"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/cogs.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Customization</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/wrench.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Implementation</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/lifebuoy.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Support</h6> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/user.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Hire |
||||
|
Odoo |
||||
|
Developer</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/puzzle.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Integration</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/update.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Migration</h6> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/consultation.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Consultancy</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/training.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Implementation</h6> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/license.png" class="img-responsive" |
||||
|
height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
||||
|
Odoo |
||||
|
Licensing Consultancy</h6> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF OUR SERVICES --> |
||||
|
|
||||
|
<!-- OUR INDUSTRIES --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/corporate.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Our |
||||
|
Industries |
||||
|
</h2> |
||||
|
</div> |
||||
|
|
||||
|
<div class="container my-5"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="assets/icons/trading-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Trading |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Easily procure |
||||
|
and |
||||
|
sell your products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="assets/icons/pos-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
POS |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Easy |
||||
|
configuration |
||||
|
and convivial experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="assets/icons/education-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Education |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
A platform for |
||||
|
educational management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="assets/icons/manufacturing-black.png" |
||||
|
class="img-responsive mb-3" height="48px" |
||||
|
width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Manufacturing |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Plan, track and |
||||
|
schedule your operations</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="./assets/icons/ecom-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
E-commerce & Website |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Mobile |
||||
|
friendly, |
||||
|
awe-inspiring product pages</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="./assets/icons/service-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Service Management |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Keep track of |
||||
|
services and invoice</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="./assets/icons/restaurant-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Restaurant |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
Run your bar or |
||||
|
restaurant methodically</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
||||
|
<img src="./assets/icons/hotel-black.png" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
||||
|
Hotel Management |
||||
|
</h5> |
||||
|
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
||||
|
An |
||||
|
all-inclusive |
||||
|
hotel management application</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF OUR INDUSTRIES --> |
||||
|
|
||||
|
<!-- SUPPORT --> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
||||
|
<img src="assets/misc/customer-support.png"/> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> |
||||
|
Support |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-6"> |
||||
|
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
||||
|
<div class="mr-4" |
||||
|
style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
||||
|
<img src="assets/misc/support.png" height="48" width="48" |
||||
|
style="width: 42px; height: 42px;"/> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4>Need Help?</h4> |
||||
|
<p style="line-height: 100%;">Got questions or need help? |
||||
|
Get in touch.</p> |
||||
|
<a href="mailto:odoo@cybrosys.com"> |
||||
|
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
||||
|
odoo@cybrosys.com</p> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-sm-12 col-md-6"> |
||||
|
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
||||
|
<div class="mr-4" |
||||
|
style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
||||
|
<img src="assets/misc/whatsapp.png" height="52" width="52" |
||||
|
style="width: 52px; height: 52px;"/> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4>WhatsApp</h4> |
||||
|
<p style="line-height: 100%;">Say hi to us on WhatsApp!</p> |
||||
|
<a href="https://api.whatsapp.com/send?phone=918606827707"> |
||||
|
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
||||
|
+91 86068 |
||||
|
27707</p> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 my-5 d-flex justify-content-center align-items-center"> |
||||
|
<img src="assets/misc/logo.png" width="144" height="31" |
||||
|
style="width:144px; height: 31px; margin-top: 40px;"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF SUPPORT --> |
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,53 @@ |
|||||
|
/** @odoo-module */ |
||||
|
import BasicFields from 'web.basic_fields'; |
||||
|
var FieldBinaryImage = BasicFields.FieldBinaryImage; |
||||
|
var core = require('web.core'); |
||||
|
var qweb = core.qweb; |
||||
|
var utils = require('web.utils'); |
||||
|
|
||||
|
FieldBinaryImage.include({ |
||||
|
_render: function () { |
||||
|
var self = this; |
||||
|
var url = this.placeholder; |
||||
|
if (this.recordData.file_name && this.recordData.file_name.endsWith('.pdf')){ |
||||
|
url = `/ocr_data_retrieval/static/src/img/pdf.png` |
||||
|
} |
||||
|
if (this.value) { |
||||
|
if (!utils.is_bin_size(this.value)) { |
||||
|
// Use magic-word technique for detecting image type
|
||||
|
url = 'data:image/' + (this.file_type_magic_word[this.value[0]] || 'png') + ';base64,' + this.value; |
||||
|
} else { |
||||
|
var field = this.nodeOptions.preview_image || this.name; |
||||
|
var unique = this.recordData.__last_update; |
||||
|
url = this._getImageUrl(this.model, this.res_id, field, unique); |
||||
|
} |
||||
|
} |
||||
|
var $img = $(qweb.render("FieldBinaryImage-img", {widget: this, url: url})); |
||||
|
// override css size attributes (could have been defined in css files)
|
||||
|
// if specified on the widget
|
||||
|
var width = this.nodeOptions.size ? this.nodeOptions.size[0] : this.attrs.width; |
||||
|
var height = this.nodeOptions.size ? this.nodeOptions.size[1] : this.attrs.height; |
||||
|
if (width) { |
||||
|
$img.attr('width', width); |
||||
|
$img.css('max-width', width + 'px'); |
||||
|
if (!height) { |
||||
|
$img.css('height', 'auto'); |
||||
|
$img.css('max-height', '100%'); |
||||
|
} |
||||
|
} |
||||
|
if (height) { |
||||
|
$img.attr('height', height); |
||||
|
$img.css('max-height', height + 'px'); |
||||
|
if (!width) { |
||||
|
$img.css('width', 'auto'); |
||||
|
$img.css('max-width', '100%'); |
||||
|
} |
||||
|
} |
||||
|
this.$('> img').remove(); |
||||
|
this.$el.prepend($img); |
||||
|
$img.one('error', function () { |
||||
|
$img.attr('src', self.placeholder); |
||||
|
self.displayNotification({ message: _t("Could not display the selected image"), type: 'danger' }); |
||||
|
}); |
||||
|
}, |
||||
|
}); |
@ -0,0 +1,80 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<!-- Data retrieval tree view --> |
||||
|
<record id="ocr_data_template_view_tree" model="ir.ui.view"> |
||||
|
<field name="name">ocr.data.template.view.tree</field> |
||||
|
<field name="model">ocr.data.template</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree> |
||||
|
<field name="file_name"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Data retrieval form view --> |
||||
|
<record id="ocr_data_template_view_form" model="ir.ui.view"> |
||||
|
<field name="name">ocr.data.template.view.form</field> |
||||
|
<field name="model">ocr.data.template</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form> |
||||
|
<sheet> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="float:left; width:40%;"> |
||||
|
<div style="height:50%;"> |
||||
|
<group> |
||||
|
<field name="image" |
||||
|
filename="file_name" |
||||
|
style="max-width: 100%; max-height: 100%" |
||||
|
attrs="{'invisible':[('flag','!=', False)], 'readonly': [('flag', '==', True)]}"/> |
||||
|
<field name="file_name" invisible="1"/> |
||||
|
</group> |
||||
|
<field name="image2" widget="image" |
||||
|
attrs="{'invisible':[('flag','!=', True)]}"/> |
||||
|
</div> |
||||
|
<div style="height:50%;"> |
||||
|
<button name="action_get_data" |
||||
|
type="object" class="btn btn-primary" |
||||
|
string="GET DATA" |
||||
|
attrs="{'invisible':[('flag','!=', False)]}"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div style="float:right; width:60%; height:100%;"> |
||||
|
<group> |
||||
|
<field name="flag" attrs="{'invisible':True}"/> |
||||
|
<field name="data" |
||||
|
attrs="{'invisible':[('flag','!=', True)]}"/> |
||||
|
</group> |
||||
|
</div> |
||||
|
</div> |
||||
|
<notebook attrs="{'invisible':[('flag','!=', True)]}"> |
||||
|
<page string="Process Data"> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="model_name_id"/> |
||||
|
<field name="model_field_ids" |
||||
|
widget="many2many_tags"/> |
||||
|
</group> |
||||
|
<group> |
||||
|
<button name="action_process_data" |
||||
|
type="object" |
||||
|
class="btn btn-primary" |
||||
|
string="PROCESS DATA"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
</sheet> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Data retrieval view action --> |
||||
|
<record id="ocr_data_template_action" model="ir.actions.act_window"> |
||||
|
<field name="name">OCR Data Template</field> |
||||
|
<field name="res_model">ocr.data.template</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
</record> |
||||
|
<!-- Data retrieval menu --> |
||||
|
<menuitem id="ocr_data_template_menu" name="OCR data template" |
||||
|
parent="mail.mail_menu_technical" |
||||
|
action="ocr_data_template_action" |
||||
|
sequence="56"/> |
||||
|
</odoo> |