@ -0,0 +1,2 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
from . import models | 
				
			|||
@ -0,0 +1,47 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
################################################################################### | 
				
			|||
# | 
				
			|||
#    Cybrosys Technologies Pvt. Ltd. | 
				
			|||
#    Copyright (C) 2021-TODAY Cybrosys Technologies(<http://www.cybrosys.com>). | 
				
			|||
#    Author: fasluca(<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 <http://www.gnu.org/licenses/>. | 
				
			|||
# | 
				
			|||
################################################################################### | 
				
			|||
 | 
				
			|||
{ | 
				
			|||
    'name': 'Quality Assurance', | 
				
			|||
    'version': '13.0.1.0.0', | 
				
			|||
    'summary': 'Manage Your Quality Assurance Processes', | 
				
			|||
    'description': """ | 
				
			|||
    This module provides features to manage basic quality assurance procedures. | 
				
			|||
    """, | 
				
			|||
    'author': 'Cybrosys Techno Solutions', | 
				
			|||
    'company': 'Cybrosys Techno Solutions', | 
				
			|||
    'website': "https:www.cybrosys.com", | 
				
			|||
    'maintainer': 'Cybrosys Techno Solutions', | 
				
			|||
    'category': 'Inventory', | 
				
			|||
    'depends': ['product', 'stock', 'purchase'], | 
				
			|||
    'data': [ | 
				
			|||
        'data/data.xml', | 
				
			|||
        'security/quality_security.xml', | 
				
			|||
        'security/ir.model.access.csv', | 
				
			|||
        'views/quality_view.xml', | 
				
			|||
        'views/stock_view.xml', | 
				
			|||
    ], | 
				
			|||
    'images': ['static/description/banner.jpg'], | 
				
			|||
    'license': 'LGPL-3', | 
				
			|||
    'installable': True, | 
				
			|||
    'application': True | 
				
			|||
} | 
				
			|||
@ -0,0 +1,14 @@ | 
				
			|||
<?xml version="1.0" encoding="utf-8"?> | 
				
			|||
<odoo> | 
				
			|||
    <data noupdate="1"> | 
				
			|||
        <record id="sequence_quality_alert" model="ir.sequence"> | 
				
			|||
            <field name="name">Quality alert sequence</field> | 
				
			|||
            <field name="code">quality.alert</field> | 
				
			|||
            <field name="prefix">QA</field> | 
				
			|||
            <field eval="1" name="number_next"/> | 
				
			|||
            <field eval="1" name="number_increment"/> | 
				
			|||
            <field eval="False" name="company_id"/> | 
				
			|||
            <field name="padding">5</field> | 
				
			|||
        </record> | 
				
			|||
    </data> | 
				
			|||
</odoo> | 
				
			|||
@ -0,0 +1,4 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
from . import quality | 
				
			|||
from . import stock | 
				
			|||
from . import purchase | 
				
			|||
@ -0,0 +1,30 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
from odoo import api, models | 
				
			|||
 | 
				
			|||
 | 
				
			|||
class PurchaseOrder(models.Model): | 
				
			|||
    _inherit = "purchase.order" | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    def _create_picking(self): | 
				
			|||
        stock_picking = self.env['stock.picking'] | 
				
			|||
        for order in self: | 
				
			|||
            if any([ptype in ['product', 'consu'] for ptype in order.order_line.mapped('product_id.type')]): | 
				
			|||
                pickings = order.picking_ids.filtered(lambda x: x.state not in ('done', 'cancel')) | 
				
			|||
                if not pickings: | 
				
			|||
                    res = order._prepare_picking() | 
				
			|||
                    picking = stock_picking.create(res) | 
				
			|||
                else: | 
				
			|||
                    picking = pickings[0] | 
				
			|||
                moves = order.order_line._create_stock_moves(picking) | 
				
			|||
                moves = moves.filtered(lambda x: x.state not in ('done', 'cancel'))._action_confirm() | 
				
			|||
                seq = 0 | 
				
			|||
                for move in sorted(moves, key=lambda move: move.date_expected): | 
				
			|||
                    seq += 5 | 
				
			|||
                    move.sequence = seq | 
				
			|||
                moves._action_assign() | 
				
			|||
                picking.generate_quality_alert() | 
				
			|||
                picking.message_post_with_view('mail.message_origin_link', | 
				
			|||
                                               values={'self': picking, 'origin': order}, | 
				
			|||
                                               subtype_id=self.env.ref('mail.mt_note').id) | 
				
			|||
        return True | 
				
			|||
@ -0,0 +1,111 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
from datetime import datetime | 
				
			|||
from odoo import api, fields, models | 
				
			|||
 | 
				
			|||
 | 
				
			|||
class QualityMeasure(models.Model): | 
				
			|||
    _name = 'quality.measure' | 
				
			|||
    _inherit = ['mail.thread'] | 
				
			|||
    _order = "id desc" | 
				
			|||
 | 
				
			|||
    name = fields.Char('Name', required=True) | 
				
			|||
    product_id = fields.Many2one('product.product', string='Product', index=True, ondelete='cascade', track_visibility='onchange') | 
				
			|||
    product_template_id = fields.Many2one('product.template', string='Product Template', related='product_id.product_tmpl_id') | 
				
			|||
    type = fields.Selection( | 
				
			|||
        [('quantity', 'Quantitative'), | 
				
			|||
         ('quality', 'Qualitative')], | 
				
			|||
        string='Test Type', default='quantity', required=True, track_visibility='onchange') | 
				
			|||
    quantity_min = fields.Float('Min-Value', track_visibility='onchange') | 
				
			|||
    quantity_max = fields.Float('Max-Value', track_visibility='onchange') | 
				
			|||
    trigger_time = fields.Many2many('stock.picking.type', string='Trigger On') | 
				
			|||
    active = fields.Boolean('Active', default=True, track_visibility='onchange') | 
				
			|||
    company_id = fields.Many2one('res.company', 'Company', | 
				
			|||
                                 default=lambda self: self.env.user.company_id.id, index=1) | 
				
			|||
 | 
				
			|||
    @api.onchange('type') | 
				
			|||
    def onchange_type(self): | 
				
			|||
        if self.type == 'quality': | 
				
			|||
            self.quantity_min = 0.0 | 
				
			|||
            self.quantity_max = 0.0 | 
				
			|||
 | 
				
			|||
 | 
				
			|||
class QualityAlert(models.Model): | 
				
			|||
    _name = 'quality.alert' | 
				
			|||
    _inherit = ['mail.thread'] | 
				
			|||
    _order = "date asc, id desc" | 
				
			|||
 | 
				
			|||
    name = fields.Char('Name', required=True) | 
				
			|||
    date = fields.Datetime(string='Date', default=datetime.now(), track_visibility='onchange') | 
				
			|||
    product_id = fields.Many2one('product.product', string='Product', index=True, ondelete='cascade') | 
				
			|||
    picking_id = fields.Many2one('stock.picking', string='Source Operation') | 
				
			|||
    origin = fields.Char(string='Source Document', | 
				
			|||
                         help="Reference of the document that produced this alert.", | 
				
			|||
                         readonly=True) | 
				
			|||
    company_id = fields.Many2one('res.company', 'Company', | 
				
			|||
                                 default=lambda self: self.env.user.company_id.id, index=1) | 
				
			|||
    user_id = fields.Many2one('res.users', string='Created by', default=lambda self: self.env.user.id) | 
				
			|||
    tests = fields.One2many('quality.test', 'alert_id', string="Tests") | 
				
			|||
    final_status = fields.Selection(compute="_compute_status", | 
				
			|||
                                    selection=[('wait', 'Waiting'), | 
				
			|||
                                               ('pass', 'Passed'), | 
				
			|||
                                               ('fail', 'Failed')], | 
				
			|||
                                    store=True, string='Status', | 
				
			|||
                                    default='fail', track_visibility='onchange') | 
				
			|||
 | 
				
			|||
    def generate_tests(self): | 
				
			|||
        quality_measure = self.env['quality.measure'] | 
				
			|||
        measures = quality_measure.search([('product_id', '=', self.product_id.id), | 
				
			|||
                                           ('trigger_time', 'in', self.picking_id.picking_type_id.id)]) | 
				
			|||
        for measure in measures: | 
				
			|||
            self.env['quality.test'].create({ | 
				
			|||
                'quality_measure': measure.id, | 
				
			|||
                'alert_id': self.id, | 
				
			|||
            }) | 
				
			|||
 | 
				
			|||
    @api.depends('tests', 'tests.test_status') | 
				
			|||
    def _compute_status(self): | 
				
			|||
        for alert in self: | 
				
			|||
            failed_tests = [test for test in alert.tests if test.test_status == 'fail'] | 
				
			|||
            if not alert.tests: | 
				
			|||
                alert.final_status = 'wait' | 
				
			|||
            elif failed_tests: | 
				
			|||
                alert.final_status = 'fail' | 
				
			|||
            else: | 
				
			|||
                alert.final_status = 'pass' | 
				
			|||
 | 
				
			|||
 | 
				
			|||
class QualityTest(models.Model): | 
				
			|||
    _name = 'quality.test' | 
				
			|||
    _inherit = ['mail.thread'] | 
				
			|||
    _order = "id desc" | 
				
			|||
 | 
				
			|||
    quality_measure = fields.Many2one('quality.measure', string='Measure', index=True, ondelete='cascade',track_visibility='onchange') | 
				
			|||
    alert_id = fields.Many2one('quality.alert', string="Quality Alert",track_visibility='onchange') | 
				
			|||
    name = fields.Char('Name', related="quality_measure.name", required=True) | 
				
			|||
    product_id = fields.Many2one('product.product', string='Product', related='alert_id.product_id') | 
				
			|||
    test_type = fields.Selection(related='quality_measure.type', string='Test Type', required=True, readonly=True) | 
				
			|||
    quantity_min = fields.Float(related='quality_measure.quantity_min', string='Min-Value', store=True, readonly=True) | 
				
			|||
    quantity_max = fields.Float(related='quality_measure.quantity_max', string='Max-Value', store=True, readonly=True) | 
				
			|||
    test_user_id = fields.Many2one('res.users', string='Assigned to', track_visibility='onchange') | 
				
			|||
    test_result = fields.Float(string='Result', track_visibility='onchange') | 
				
			|||
    test_result2 = fields.Selection([ | 
				
			|||
        ('satisfied', 'Satisfied'), | 
				
			|||
        ('unsatisfied', 'Unsatisfied')], string='Result', track_visibility='onchange') | 
				
			|||
    test_status = fields.Selection(compute="_compute_status", | 
				
			|||
                                   selection=[('pass', 'Passed'), | 
				
			|||
                                              ('fail', 'Failed')], | 
				
			|||
                                   store=True, string='Status', track_visibility='onchange') | 
				
			|||
 | 
				
			|||
    @api.depends('test_result', 'test_result2') | 
				
			|||
    def _compute_status(self): | 
				
			|||
        for test in self: | 
				
			|||
            if test.test_type == 'quantity': | 
				
			|||
                if test.quantity_min <= test.test_result <= test.quantity_max: | 
				
			|||
                    test.test_status = 'pass' | 
				
			|||
                else: | 
				
			|||
                    test.test_status = 'fail' | 
				
			|||
            else: | 
				
			|||
                if test.test_result2 == 'satisfied': | 
				
			|||
                    test.test_status = 'pass' | 
				
			|||
                else: | 
				
			|||
                    test.test_status = 'fail' | 
				
			|||
@ -0,0 +1,110 @@ | 
				
			|||
# -*- coding: utf-8 -*- | 
				
			|||
from odoo import api, fields, models, _ | 
				
			|||
from odoo.tools.float_utils import float_compare | 
				
			|||
from odoo.exceptions import UserError | 
				
			|||
 | 
				
			|||
 | 
				
			|||
class StockPicking(models.Model): | 
				
			|||
    _inherit = "stock.picking" | 
				
			|||
 | 
				
			|||
    @api.depends('move_lines') | 
				
			|||
    def _compute_alert(self): | 
				
			|||
        ''' | 
				
			|||
        This function computes the number of quality alerts generated from given picking. | 
				
			|||
        ''' | 
				
			|||
        for picking in self: | 
				
			|||
            alerts = self.env['quality.alert'].search([('picking_id', '=', picking.id)]) | 
				
			|||
            picking.alert_ids = alerts | 
				
			|||
            picking.alert_count = len(alerts) | 
				
			|||
 | 
				
			|||
    def quality_alert_action(self): | 
				
			|||
        '''This function returns an action that display existing quality alerts generated from a given picking.''' | 
				
			|||
        action = self.env.ref('quality_assurance.quality_alert_action') | 
				
			|||
        result = action.read()[0] | 
				
			|||
 | 
				
			|||
        # override the context to get rid of the default filtering on picking type | 
				
			|||
        result.pop('id', None) | 
				
			|||
        result['context'] = {} | 
				
			|||
        alert_ids = sum([picking.alert_ids.ids for picking in self], []) | 
				
			|||
        # choose the view_mode accordingly | 
				
			|||
        if len(alert_ids) > 1: | 
				
			|||
            result['domain'] = "[('id','in',[" + ','.join(map(str, alert_ids)) + "])]" | 
				
			|||
        elif len(alert_ids) == 1: | 
				
			|||
            res = self.env.ref('quality_assurance.quality_alert_form', False) | 
				
			|||
            result['views'] = [(res and res.id or False, 'form')] | 
				
			|||
            result['res_id'] = alert_ids and alert_ids[0] or False | 
				
			|||
        return result | 
				
			|||
 | 
				
			|||
    alert_count = fields.Integer(compute='_compute_alert', string='Quality Alerts', default=0) | 
				
			|||
    alert_ids = fields.Many2many('quality.alert', compute='_compute_alert', string='Quality Alerts', copy=False) | 
				
			|||
 | 
				
			|||
    def generate_quality_alert(self): | 
				
			|||
        ''' | 
				
			|||
        This function generates quality alerts for the products mentioned in move_lines of given picking and also have quality measures configured. | 
				
			|||
        ''' | 
				
			|||
        quality_alert = self.env['quality.alert'] | 
				
			|||
        quality_measure = self.env['quality.measure'] | 
				
			|||
        for move in self.move_lines: | 
				
			|||
            measures = quality_measure.search([('product_id', '=', move.product_id.id), ('trigger_time', 'in', self.picking_type_id.id)]) | 
				
			|||
            if measures: | 
				
			|||
                quality_alert.create({ | 
				
			|||
                    'name': self.env['ir.sequence'].next_by_code('quality.alert') or _('New'), | 
				
			|||
                    'product_id': move.product_id.id, | 
				
			|||
                    'picking_id': self.id, | 
				
			|||
                    'origin': self.name, | 
				
			|||
                    'company_id': self.company_id.id, | 
				
			|||
                }) | 
				
			|||
 | 
				
			|||
    def action_confirm(self): | 
				
			|||
        if self.alert_count == 0: | 
				
			|||
            self.generate_quality_alert() | 
				
			|||
        res = super(StockPicking, self).action_confirm() | 
				
			|||
        return res | 
				
			|||
 | 
				
			|||
    def force_assign(self): | 
				
			|||
        if self.alert_count == 0: | 
				
			|||
            self.generate_quality_alert() | 
				
			|||
        res = super(StockPicking, self).force_assign() | 
				
			|||
        return res | 
				
			|||
 | 
				
			|||
    def action_done(self): | 
				
			|||
        """Changes picking state to done by processing the Stock Moves of the Picking | 
				
			|||
 | 
				
			|||
        Normally that happens when the button "Done" is pressed on a Picking view. | 
				
			|||
        @return: True | 
				
			|||
        """ | 
				
			|||
        # TDE FIXME: remove decorator when migration the remaining | 
				
			|||
        # TDE FIXME: draft -> automatically done, if waiting ?? CLEAR ME | 
				
			|||
        todo_moves = self.mapped('move_lines').filtered( | 
				
			|||
            lambda self: self.state in ['draft', 'partially_available', 'assigned', 'confirmed']) | 
				
			|||
        # Check if there are ops not linked to moves yet | 
				
			|||
        for pick in self: | 
				
			|||
            for ops in pick.move_line_ids.filtered(lambda x: not x.move_id): | 
				
			|||
                # Search move with this product | 
				
			|||
                moves = pick.move_lines.filtered(lambda x: x.product_id == ops.product_id) | 
				
			|||
                if moves:  # could search move that needs it the most (that has some quantities left) | 
				
			|||
                    ops.move_id = moves[0].id | 
				
			|||
                else: | 
				
			|||
                    new_move = self.env['stock.move'].create({ | 
				
			|||
                        'name': _('New Move:') + ops.product_id.display_name, | 
				
			|||
                        'product_id': ops.product_id.id, | 
				
			|||
                        'product_uom_qty': ops.qty_done, | 
				
			|||
                        'product_uom': ops.product_uom_id.id, | 
				
			|||
                        'location_id': pick.location_id.id, | 
				
			|||
                        'location_dest_id': pick.location_dest_id.id, | 
				
			|||
                        'picking_id': pick.id, | 
				
			|||
                    }) | 
				
			|||
                    ops.move_id = new_move.id | 
				
			|||
                    new_move._action_confirm() | 
				
			|||
                    todo_moves |= new_move | 
				
			|||
 | 
				
			|||
        for move in todo_moves: | 
				
			|||
            alerts = self.env['quality.alert'].search([('picking_id', '=', self.id), ('product_id', '=', move.product_id.id)]) | 
				
			|||
            for alert in alerts: | 
				
			|||
                if alert.final_status == 'wait': | 
				
			|||
                    raise UserError(_('There are items still in quality test')) | 
				
			|||
                if alert.final_status == 'fail': | 
				
			|||
                    raise UserError(_('There are items failed in quality test')) | 
				
			|||
        todo_moves._action_done() | 
				
			|||
        self.write({'date_done': fields.Datetime.now()}) | 
				
			|||
        return True | 
				
			|||
		
		
			
  | 
@ -0,0 +1,25 @@ | 
				
			|||
<?xml version="1.0" encoding="utf-8"?> | 
				
			|||
<odoo> | 
				
			|||
    <data noupdate="0"> | 
				
			|||
 | 
				
			|||
        <record model="ir.module.category" id="module_category_quality_management"> | 
				
			|||
            <field name="name">Quality</field> | 
				
			|||
            <field name="description">Helps you manage your quality assurance processes</field> | 
				
			|||
            <field name="sequence">4</field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="group_quality_user" model="res.groups"> | 
				
			|||
            <field name="name">User</field> | 
				
			|||
            <field name="category_id" ref="module_category_quality_management"/> | 
				
			|||
            <field name="implied_ids" eval="[(4, ref('base.group_user'))]"/> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="group_quality_manager" model="res.groups"> | 
				
			|||
            <field name="name">Manager</field> | 
				
			|||
            <field name="category_id" ref="module_category_quality_management"/> | 
				
			|||
            <field name="implied_ids" eval="[(4, ref('group_quality_user'))]"/> | 
				
			|||
            <field name="users" eval="[(4, ref('base.user_root'))]"/> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
    </data> | 
				
			|||
</odoo> | 
				
			|||
| 
		 After Width: | Height: | Size: 3.6 KiB  | 
| 
		 After Width: | Height: | Size: 310 B  | 
| 
		 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: 3.4 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: 51 KiB  | 
| 
		 After Width: | Height: | Size: 61 KiB  | 
| 
		 After Width: | Height: | Size: 60 KiB  | 
| 
		 After Width: | Height: | Size: 59 KiB  | 
| 
		 After Width: | Height: | Size: 52 KiB  | 
| 
		 After Width: | Height: | Size: 54 KiB  | 
| 
		 After Width: | Height: | Size: 31 KiB  | 
| 
		 After Width: | Height: | Size: 52 KiB  | 
| 
		 After Width: | Height: | Size: 65 KiB  | 
| 
		 After Width: | Height: | Size: 61 KiB  | 
| 
		 After Width: | Height: | Size: 60 KiB  | 
| 
		 After Width: | Height: | Size: 60 KiB  | 
| 
		 After Width: | Height: | Size: 49 KiB  | 
| 
		 After Width: | Height: | Size: 56 KiB  | 
| 
		 After Width: | Height: | Size: 56 KiB  | 
| 
		 After Width: | Height: | Size: 55 KiB  | 
| 
		 After Width: | Height: | Size: 87 KiB  | 
| 
		 After Width: | Height: | Size: 50 KiB  | 
| 
		 After Width: | Height: | Size: 24 KiB  | 
@ -0,0 +1,639 @@ | 
				
			|||
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;"> | 
				
			|||
    <div class="row"> | 
				
			|||
        <div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" | 
				
			|||
            style="border-bottom: 1px solid #d5d5d5;"> | 
				
			|||
            <div class="my-3"> | 
				
			|||
                <img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;"> | 
				
			|||
            </div> | 
				
			|||
            <div class="my-3 d-flex align-items-center"> | 
				
			|||
                <div | 
				
			|||
                    style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> | 
				
			|||
                    <i class="fa fa-check mr-1"></i>Community | 
				
			|||
                </div> | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
    </div> | 
				
			|||
</div> | 
				
			|||
 | 
				
			|||
<div class="container" style="padding: 0rem 1.5rem 4rem !important"> | 
				
			|||
    <div class="row" style="height: 900px !important;"> | 
				
			|||
        <div class="col-sm-12 col-md-12 col-lg-12" | 
				
			|||
            style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;"> | 
				
			|||
            <h1 | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important;  font-size: 3.5rem !important; text-align: center !important;"> | 
				
			|||
                Quality Assurance</h1> | 
				
			|||
            <p | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important;  font-size: 1.4rem !important; text-align: center !important;"> | 
				
			|||
                Allows Odoo users to ensure quality specifications of the items they are using in their | 
				
			|||
                business | 
				
			|||
            </p> | 
				
			|||
            <img src="./assets/screenshots/hero.png" class="img-responsive" width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
    </div> | 
				
			|||
 | 
				
			|||
    <div class="row"> | 
				
			|||
        <div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important"> | 
				
			|||
            <h2 | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | 
				
			|||
                <i class="fa fa-compass mr-2"></i>Explore this module | 
				
			|||
            </h2> | 
				
			|||
        </div> | 
				
			|||
        <div class="col-md-6"> | 
				
			|||
            <a href="#overview" style="text-decoration: none !important;"> | 
				
			|||
                <div class="row" | 
				
			|||
                    style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | 
				
			|||
                    <div class="col-8"> | 
				
			|||
                        <h3 | 
				
			|||
                            style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | 
				
			|||
                            Overview</h3> | 
				
			|||
                        <p | 
				
			|||
                            style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | 
				
			|||
                            Learn more about this module</p> | 
				
			|||
                    </div> | 
				
			|||
                    <div class="col-4 text-right d-flex justify-content-end align-items-center"> | 
				
			|||
                        <i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> | 
				
			|||
                    </div> | 
				
			|||
                </div> | 
				
			|||
            </a> | 
				
			|||
        </div> | 
				
			|||
        <div class="col-md-6"> | 
				
			|||
            <a href="#features" style="text-decoration: none !important;"> | 
				
			|||
                <div class="row" | 
				
			|||
                    style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | 
				
			|||
                    <div class="col-8"> | 
				
			|||
                        <h3 | 
				
			|||
                            style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | 
				
			|||
                            Features</h3> | 
				
			|||
                        <p | 
				
			|||
                            style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | 
				
			|||
                            View features of this module</p> | 
				
			|||
                    </div> | 
				
			|||
                    <div class="col-4 text-right d-flex justify-content-end align-items-center"> | 
				
			|||
                        <i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> | 
				
			|||
                    </div> | 
				
			|||
                </div> | 
				
			|||
            </a> | 
				
			|||
        </div> | 
				
			|||
        <div class="col-md-6"> | 
				
			|||
            <a href="#screenshots" style="text-decoration: none !important;"> | 
				
			|||
                <div class="row" | 
				
			|||
                    style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | 
				
			|||
                    <div class="col-8"> | 
				
			|||
                        <h3 | 
				
			|||
                            style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | 
				
			|||
                            Screenshots</h3> | 
				
			|||
                        <p | 
				
			|||
                            style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | 
				
			|||
                            See key screenshots of this module</p> | 
				
			|||
                    </div> | 
				
			|||
                    <div class="col-4 text-right d-flex justify-content-end align-items-center"> | 
				
			|||
                        <i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> | 
				
			|||
                    </div> | 
				
			|||
                </div> | 
				
			|||
            </a> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
    </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    <div class="row" id="overview"> | 
				
			|||
        <div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | 
				
			|||
            <h2 | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | 
				
			|||
                <i class="fa fa-pie-chart mr-2"></i>Overview | 
				
			|||
            </h2> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-mg-12 pl-3"> | 
				
			|||
            <p | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> | 
				
			|||
                Quality assurance/control is not a new term in this industrial world. Almost everything has some | 
				
			|||
                specific quality standards. and it varies with the different attributes like, who is using and where | 
				
			|||
                is using.. etc. This module allows Odoo users to ensure quality specification of the items they are | 
				
			|||
                using in their business. This module provides quality alerts and quality test along with control in | 
				
			|||
                inventory moves based on the test result.</p> | 
				
			|||
 | 
				
			|||
        </div> | 
				
			|||
    </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    <div class="row" id="features"> | 
				
			|||
        <div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | 
				
			|||
            <h2 | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | 
				
			|||
                <i class="fa fa-star mr-2"></i>Features | 
				
			|||
            </h2> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-md-6 pl-3 py-3 d-flex"> | 
				
			|||
            <div> | 
				
			|||
                <img src="assets/icons/check.png"> | 
				
			|||
            </div> | 
				
			|||
            <div> | 
				
			|||
                <h4 | 
				
			|||
                    style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                    Quality Measures</h4> | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
        <div class="col-md-6 pl-3 py-3 d-flex"> | 
				
			|||
            <div> | 
				
			|||
                <img src="assets/icons/check.png"> | 
				
			|||
            </div> | 
				
			|||
            <div> | 
				
			|||
                <h4 | 
				
			|||
                    style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                    Quality Alert</h4> | 
				
			|||
 | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-md-6 pl-3 py-3 d-flex"> | 
				
			|||
            <div> | 
				
			|||
                <img src="assets/icons/check.png"> | 
				
			|||
            </div> | 
				
			|||
            <div> | 
				
			|||
                <h4 | 
				
			|||
                    style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                    Quality Tests</h4> | 
				
			|||
 | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    </div> | 
				
			|||
 | 
				
			|||
    <div class="row" id="screenshots"> | 
				
			|||
        <div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | 
				
			|||
            <h2 | 
				
			|||
                style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | 
				
			|||
                <i class="fa fa-image mr-2"></i>Screenshots | 
				
			|||
            </h2> | 
				
			|||
        </div> | 
				
			|||
        <div class="col-lg-12 my-2"> | 
				
			|||
            <h4 class="mt-2" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Qualitative And Quantitative</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-1.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                If you have configured Quality Measure for a product, whenever the product undergoes Trigger On | 
				
			|||
                operation, Odoo will create a Quality Alert</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-2.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                The user can access the Quality Alerts generated from the operation itself</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-3.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Generate Tests button will create Quality Tests for the product based on Quality Measures.</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-4.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Quality manager can assign Quality Tests to different users</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-5.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Quality users will have a list of Quality Tests that are assigned to them. Now the user can update | 
				
			|||
                the test result to the Quality Test record</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-6.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Important changes made on Quality Tests will be tracked by the system</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-7.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Result updated on the Quality Tests will reflect on related Quality Alerts</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-8.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <div class="col-lg-12 my-3"> | 
				
			|||
            <h4 class="mt-3" | 
				
			|||
                style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | 
				
			|||
                Inventory user cannot proceed with an item that is failed in Quality Test. User will get a warning | 
				
			|||
                message when they try</h4> | 
				
			|||
 | 
				
			|||
            <img src="assets/screenshots/quality_assurance-9.png" class="img-responsive img-thumbnail border" | 
				
			|||
                width="100%" height="auto" /> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    </div> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    <!-- SUGGESTED PRODUCTS --> | 
				
			|||
    <div class="row"> | 
				
			|||
        <div class="col-lg-12 d-flex flex-column justify-content-center" | 
				
			|||
            style="text-align: center; padding: 2.5rem 1rem !important;"> | 
				
			|||
            <h2 style="color: #212529 !important;">Suggested Products</h2> | 
				
			|||
            <hr | 
				
			|||
                style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> | 
				
			|||
 | 
				
			|||
            <div id="demo1" class="row carousel slide" data-ride="carousel"> | 
				
			|||
                <!-- The slideshow --> | 
				
			|||
                <div class="carousel-inner"> | 
				
			|||
                    <div class="carousel-item active" style="min-height:0px"> | 
				
			|||
                        <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> | 
				
			|||
                            <a href="https://apps.odoo.com/apps/modules/14.0/export_stockinfo_xls/" target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/export_image.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/14.0/dashboard_pos/" target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/pos_image.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/14.0/product_approval_management/" | 
				
			|||
                                target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/approval_image.png"> | 
				
			|||
                                </div> | 
				
			|||
                            </a> | 
				
			|||
                        </div> | 
				
			|||
                    </div> | 
				
			|||
                    <div class="carousel-item" style="min-height:0px"> | 
				
			|||
                        <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> | 
				
			|||
                            <a href="https://apps.odoo.com/apps/modules/14.0/base_account_budget/" target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/budget_image.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/14.0/shopify_odoo_connector/" target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/shopify_image.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/14.0/odoo11_magento2/" target="_blank"> | 
				
			|||
                                <div style="border-radius:10px"> | 
				
			|||
                                    <img class="img img-responsive center-block" | 
				
			|||
                                        style="border-top-left-radius:10px; border-top-right-radius:10px" | 
				
			|||
                                        src="./assets/modules/magento_image.png"> | 
				
			|||
                                </div> | 
				
			|||
                            </a> | 
				
			|||
                        </div> | 
				
			|||
                    </div> | 
				
			|||
                </div> | 
				
			|||
                <!-- Left and right controls --> | 
				
			|||
                <a class="carousel-control-prev" href="#demo1" data-slide="prev" | 
				
			|||
                    style="left:-25px;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="right:-25px;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 --> | 
				
			|||
    <section class="container" style="margin-top: 6rem !important;"> | 
				
			|||
        <div class="row"> | 
				
			|||
            <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> | 
				
			|||
                <h2 style="color: #212529 !important;">Our Services</h2> | 
				
			|||
                <hr | 
				
			|||
                    style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> | 
				
			|||
            </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: #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> | 
				
			|||
    </section> | 
				
			|||
    <!-- END OF END OF OUR SERVICES --> | 
				
			|||
 | 
				
			|||
    <!-- OUR INDUSTRIES --> | 
				
			|||
    <section class="container" style="margin-top: 6rem !important;"> | 
				
			|||
        <div class="row"> | 
				
			|||
            <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> | 
				
			|||
                <h2 style="color: #212529 !important;">Our Industries</h2> | 
				
			|||
                <hr | 
				
			|||
                    style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> | 
				
			|||
            </div> | 
				
			|||
 | 
				
			|||
            <div class="col-lg-3"> | 
				
			|||
                <div class="my-4 d-flex flex-column justify-content-center" | 
				
			|||
                    style="background-color: #f6f8f9 !important; border-radius: 10px; 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: 10px; 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: 10px; 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: 10px; 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: 10px; 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: 10px; 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: 10px; 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: 10px; 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> | 
				
			|||
    </section> | 
				
			|||
 | 
				
			|||
    <!-- END OF END OF OUR INDUSTRIES --> | 
				
			|||
 | 
				
			|||
    <!-- FOOTER --> | 
				
			|||
    <!-- Footer Section --> | 
				
			|||
    <section class="container" style="margin: 5rem auto 2rem;"> | 
				
			|||
        <div class="row" style="max-width:1540px;"> | 
				
			|||
            <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> | 
				
			|||
                <h2 style="color: #212529 !important;">Need Help?</h2> | 
				
			|||
                <hr | 
				
			|||
                    style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
 | 
				
			|||
        <!-- Contact Cards --> | 
				
			|||
        <div class="row d-flex justify-content-center align-items-center" | 
				
			|||
            style="max-width:1540px; margin: 0 auto 2rem auto;"> | 
				
			|||
 | 
				
			|||
            <div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; "> | 
				
			|||
 | 
				
			|||
                <div class="row mt-4"> | 
				
			|||
                    <div class="col-lg-6"> | 
				
			|||
                        <a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover" | 
				
			|||
                            style="text-decoration: none;  background-color: #4d4d4d; color: #FFF;  border-radius: 4px;"><i | 
				
			|||
                                class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a> | 
				
			|||
                    </div> | 
				
			|||
                    <div class="col-lg-6"> | 
				
			|||
                        <a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" | 
				
			|||
                            class="btn btn-block mb-2 deep_hover" | 
				
			|||
                            style="text-decoration: none;  background-color: #25D366; color: #FFF;  border-radius: 4px;"><i | 
				
			|||
                                class="fa fa-whatsapp mr-2"></i>WhatsApp</a> | 
				
			|||
                    </div> | 
				
			|||
                </div> | 
				
			|||
            </div> | 
				
			|||
 | 
				
			|||
        </div> | 
				
			|||
        <!-- End of Contact Cards --> | 
				
			|||
    </section> | 
				
			|||
    <!-- Footer --> | 
				
			|||
    <section class="oe_container" style="padding: 2rem 3rem 1rem;"> | 
				
			|||
        <div class="row" style="max-width:1540px; margin: 0 auto; margin-right: 3rem; "> | 
				
			|||
            <!-- Logo --> | 
				
			|||
            <div class="col-lg-12 d-flex justify-content-center align-items-center" style="margin-top: 3rem;"> | 
				
			|||
                <img src="https://www.cybrosys.com/images/logo.png" width="200px" height="auto" /> | 
				
			|||
            </div> | 
				
			|||
            <!-- End of Logo --> | 
				
			|||
            <div class="col-lg-12"> | 
				
			|||
                <hr | 
				
			|||
                    style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;"> | 
				
			|||
                <!-- End of Footer Section --> | 
				
			|||
            </div> | 
				
			|||
        </div> | 
				
			|||
    </section> | 
				
			|||
    <!-- END OF FOOTER --> | 
				
			|||
 | 
				
			|||
</div> | 
				
			|||
@ -0,0 +1,265 @@ | 
				
			|||
<?xml version="1.0" encoding="utf-8"?> | 
				
			|||
<odoo> | 
				
			|||
    <data> | 
				
			|||
 | 
				
			|||
        <menuitem name="Quality" id="menu_quality_root" sequence="30" | 
				
			|||
        groups="quality_assurance.group_quality_user" | 
				
			|||
        web_icon="quality_assurance,static/description/icon.png"/> | 
				
			|||
 | 
				
			|||
    <!-- ################# Quality Measures ################# --> | 
				
			|||
 | 
				
			|||
        <record id="quality_measure_tree" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.measure.tree</field> | 
				
			|||
            <field name="model">quality.measure</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <tree string="Quality Alerts"> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <field name="type"/> | 
				
			|||
                    <field name="quantity_min"/> | 
				
			|||
                    <field name="quantity_max"/> | 
				
			|||
                </tree> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_measure_form_view" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.measure.form</field> | 
				
			|||
            <field name="model">quality.measure</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <form string="Quality Measure"> | 
				
			|||
 | 
				
			|||
                    <sheet> | 
				
			|||
                        <div class="oe_button_box" name="button_box"> | 
				
			|||
                            <button name="toggle_active" type="object" | 
				
			|||
                                    class="oe_stat_button" icon="fa-archive"> | 
				
			|||
                                <field name="active" widget="boolean_button" | 
				
			|||
                                    options='{"terminology": "archive"}'/> | 
				
			|||
                            </button> | 
				
			|||
                        </div> | 
				
			|||
                        <div class="oe_title"> | 
				
			|||
                            <label for="name" string="Test"/> | 
				
			|||
                            <h3><field name="name" placeholder="Name"/></h3> | 
				
			|||
                        </div> | 
				
			|||
                        <group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="product_id"/> | 
				
			|||
                                <field name="type"/> | 
				
			|||
                            </group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="quantity_min" attrs="{'invisible':[('type', '=', 'quality')]}"/> | 
				
			|||
                                <field name="quantity_max" attrs="{'invisible':[('type', '=', 'quality')]}"/> | 
				
			|||
                            </group> | 
				
			|||
                        </group> | 
				
			|||
                        <group> | 
				
			|||
                            <field name="trigger_time"/> | 
				
			|||
                        </group> | 
				
			|||
                    </sheet> | 
				
			|||
                    <div class="oe_chatter"> | 
				
			|||
                        <field name="message_follower_ids" widget="mail_followers"/> | 
				
			|||
                        <field name="message_ids" widget="mail_thread"/> | 
				
			|||
                    </div> | 
				
			|||
                </form> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_measure_view_search" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.measure.search</field> | 
				
			|||
            <field name="model">quality.measure</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <search> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <group expand="0" string="Group By"> | 
				
			|||
                        <filter string="Product" name="group_by_product_id" domain="[]" context="{'group_by':'product_id'}"/> | 
				
			|||
                        <filter string="Type" name="group_by_type" domain="[]" context="{'group_by':'type'}"/> | 
				
			|||
                    </group> | 
				
			|||
                </search> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record model="ir.actions.act_window" id="quality_measure_action"> | 
				
			|||
            <field name="name">Quality Measure</field> | 
				
			|||
            <field name="res_model">quality.measure</field> | 
				
			|||
            <field name="view_mode">tree,form</field> | 
				
			|||
            <field name="search_view_id" ref="quality_measure_view_search"/> | 
				
			|||
            <field name="help" type="html"> | 
				
			|||
                <p class="oe_view_nocontent_create"> | 
				
			|||
                    Click here to add a new Quality Measure | 
				
			|||
                </p> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <menuitem id="menu_quality_config_settings" name="Configuration" parent="menu_quality_root" | 
				
			|||
            sequence="100" groups="group_quality_manager"/> | 
				
			|||
 | 
				
			|||
        <menuitem id="menu_quality_measure" name="Quality Measures" parent="menu_quality_config_settings" action="quality_measure_action"/> | 
				
			|||
 | 
				
			|||
    <!-- ################# Quality Alerts ################# --> | 
				
			|||
 | 
				
			|||
        <menuitem id="menu_quality_assurance" name="Quality Assurance" parent="menu_quality_root"/> | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        <record id="quality_alert_tree" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.alert.tree</field> | 
				
			|||
            <field name="model">quality.alert</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <tree string="Quality Alerts"> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <field name="origin"/> | 
				
			|||
                    <field name="date"/> | 
				
			|||
                </tree> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_alert_form" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.alert.form</field> | 
				
			|||
            <field name="model">quality.alert</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <form string="Quality Alert"> | 
				
			|||
                    <header> | 
				
			|||
                        <button name="generate_tests" string="Generate Tests" type="object" class="oe_highlight" groups="quality_assurance.group_quality_user"/> | 
				
			|||
                    </header> | 
				
			|||
                    <sheet> | 
				
			|||
                        <div class="oe_title"> | 
				
			|||
                            <h2><field name="name" placeholder="Name" readonly="1"/></h2> | 
				
			|||
                        </div> | 
				
			|||
                        <group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="product_id"/> | 
				
			|||
                                <field name="user_id"/> | 
				
			|||
                            </group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="date"/> | 
				
			|||
                                <field name="picking_id" readonly="1"/> | 
				
			|||
                            </group> | 
				
			|||
                        </group> | 
				
			|||
                        <notebook> | 
				
			|||
                            <page string="Tests"> | 
				
			|||
                                <field name="tests"  nolabel="1"> | 
				
			|||
                                    <tree create="false" editable="1"> | 
				
			|||
                                        <field name="name"/> | 
				
			|||
                                        <field name="test_type" invisible="1"/> | 
				
			|||
                                        <field name="quantity_min" invisible="1"/> | 
				
			|||
                                        <field name="quantity_max" invisible="1"/> | 
				
			|||
                                        <field name="test_user_id"/> | 
				
			|||
                                        <field name="test_result" string="Quantitative Result" attrs="{'readonly':[('test_type', '=', 'quality')]}"/> | 
				
			|||
                                        <field name="test_result2" string="Qualitative Result" attrs="{'readonly':[('test_type', '=', 'quantity')]}"/> | 
				
			|||
                                        <field name="test_status"/> | 
				
			|||
                                    </tree> | 
				
			|||
                                </field> | 
				
			|||
                            </page> | 
				
			|||
                        </notebook> | 
				
			|||
                    </sheet> | 
				
			|||
                    <div class="oe_chatter"> | 
				
			|||
                        <field name="message_follower_ids" widget="mail_followers"/> | 
				
			|||
                        <field name="message_ids" widget="mail_thread"/> | 
				
			|||
                    </div> | 
				
			|||
                </form> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_alert_view_search" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.alert.search</field> | 
				
			|||
            <field name="model">quality.alert</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <search> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="origin"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <group expand="0" string="Group By"> | 
				
			|||
                        <filter string="Source Document" name="groupby_origin" domain="[]" context="{'group_by':'origin'}"/> | 
				
			|||
                        <filter string="Product" name="groupby_product_id" domain="[]" context="{'group_by':'product_id'}"/> | 
				
			|||
                        <filter string="Creation Date" name="groupby_createmonth" domain="[]" context="{'group_by':'date'}"/> | 
				
			|||
                    </group> | 
				
			|||
                </search> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record model="ir.actions.act_window" id="quality_alert_action"> | 
				
			|||
            <field name="name">Quality Alerts</field> | 
				
			|||
            <field name="res_model">quality.alert</field> | 
				
			|||
            <field name="view_mode">tree,form</field> | 
				
			|||
            <field name="search_view_id" ref="quality_alert_view_search"/> | 
				
			|||
            <field name="help" type="html"> | 
				
			|||
                <p class="oe_view_nocontent_create"> | 
				
			|||
                    Click here to add a new Quality Alert | 
				
			|||
                </p><p> | 
				
			|||
                  Quality alerts will be created automatically when your inventory team try to process inventory operations. | 
				
			|||
                </p> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <menuitem id="menu_quality_alert" name="Quality Alerts" parent="menu_quality_assurance" action="quality_alert_action"/> | 
				
			|||
 | 
				
			|||
    <!-- ################# Quality Tests ################# --> | 
				
			|||
 | 
				
			|||
        <record id="quality_test_tree" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.test.tree</field> | 
				
			|||
            <field name="model">quality.test</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <tree string="Quality Tests"> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <field name="test_type"/> | 
				
			|||
                    <field name="test_status"/> | 
				
			|||
                </tree> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_test_form" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.test.form</field> | 
				
			|||
            <field name="model">quality.test</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <form string="Quality Test"> | 
				
			|||
                    <sheet> | 
				
			|||
                        <div class="oe_title"> | 
				
			|||
                            <h2><field name="name" placeholder="Name" readonly="1"/></h2> | 
				
			|||
                        </div> | 
				
			|||
                        <group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="test_type"/> | 
				
			|||
                                <field name="quantity_min" attrs="{'invisible':[('test_type', '=', 'quality')]}"/> | 
				
			|||
                                <field name="quantity_max" attrs="{'invisible':[('test_type', '=', 'quality')]}"/> | 
				
			|||
                                <field name="test_result" attrs="{'invisible':[('test_type', '=', 'quality')]}"/> | 
				
			|||
                                <field name="test_result2" attrs="{'invisible':[('test_type', '=', 'quantity')]}"/> | 
				
			|||
                                <field name="test_status"/> | 
				
			|||
                            </group> | 
				
			|||
                            <group> | 
				
			|||
                                <field name="quality_measure"/> | 
				
			|||
                                <field name="alert_id"/> | 
				
			|||
                                <field name="product_id"/> | 
				
			|||
                                <field name="test_user_id"/> | 
				
			|||
                            </group> | 
				
			|||
                        </group> | 
				
			|||
                    </sheet> | 
				
			|||
                    <div class="oe_chatter"> | 
				
			|||
                        <field name="message_follower_ids" widget="mail_followers"/> | 
				
			|||
                        <field name="message_ids" widget="mail_thread"/> | 
				
			|||
                    </div> | 
				
			|||
                </form> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record id="quality_test_view_search" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.test.search</field> | 
				
			|||
            <field name="model">quality.test</field> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <search> | 
				
			|||
                    <field name="name"/> | 
				
			|||
                    <field name="product_id"/> | 
				
			|||
                    <filter string="My Tests" name="my_tests" domain="[('test_user_id','=',uid)]"/> | 
				
			|||
                </search> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <record model="ir.actions.act_window" id="quality_test_action"> | 
				
			|||
            <field name="name">Quality Tests</field> | 
				
			|||
            <field name="res_model">quality.test</field> | 
				
			|||
            <field name="view_mode">tree,form</field> | 
				
			|||
            <field name="context">{'search_default_my_tests': 1}</field> | 
				
			|||
        </record> | 
				
			|||
 | 
				
			|||
        <menuitem id="menu_quality_test" name="Quality Tests" parent="menu_quality_assurance" action="quality_test_action"/> | 
				
			|||
    </data> | 
				
			|||
</odoo> | 
				
			|||
@ -0,0 +1,19 @@ | 
				
			|||
<?xml version="1.0" encoding="utf-8"?> | 
				
			|||
<odoo> | 
				
			|||
        <record id="quality_stock_picking" model="ir.ui.view"> | 
				
			|||
            <field name="name">quality.stock.picking.form</field> | 
				
			|||
            <field name="model">stock.picking</field> | 
				
			|||
            <field name="inherit_id" ref="stock.view_picking_form"/> | 
				
			|||
            <field name="arch" type="xml"> | 
				
			|||
                <xpath expr="//div[hasclass('oe_button_box')]" position="inside"> | 
				
			|||
                    <button type="object" | 
				
			|||
                        name="quality_alert_action" | 
				
			|||
                        class="oe_stat_button" | 
				
			|||
                        icon="fa-check-circle-o"> | 
				
			|||
                        <field name="alert_count" widget="statinfo" string="Quality Alerts" help="Quality Alerts"/> | 
				
			|||
                        <field name="alert_ids" invisible="1"/> | 
				
			|||
                    </button> | 
				
			|||
                </xpath> | 
				
			|||
            </field> | 
				
			|||
        </record> | 
				
			|||
</odoo> | 
				
			|||