@ -0,0 +1 @@ |
|||||
|
from . import models |
@ -0,0 +1,47 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
###################################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) |
||||
|
# |
||||
|
# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) |
||||
|
# It is forbidden to publish, distribute, sublicense, or sell copies of the Software |
||||
|
# or modified copies of the Software. |
||||
|
# |
||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
||||
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
||||
|
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
||||
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
||||
|
# DEALINGS IN THE SOFTWARE. |
||||
|
# |
||||
|
######################################################################################## |
||||
|
{ |
||||
|
'name': 'Simple Manufacturing Orders', |
||||
|
'version': '14.0.1.0.0', |
||||
|
'summary': 'Create Manufacturing Orders Easily', |
||||
|
'description': """This module allow you to create manufacturing orders with out |
||||
|
taking the work orders or work centers.""", |
||||
|
'category': 'Manufacturing/Manufacturing', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'depends': ['mail', 'stock'], |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'data': [ |
||||
|
'security/security.xml', |
||||
|
'security/ir.model.access.csv', |
||||
|
'data/data.xml', |
||||
|
'views/mrp_order_view.xml', |
||||
|
'views/mrp_bom_view.xml', |
||||
|
'views/product_views.xml', |
||||
|
], |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'license': 'LGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': True, |
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo noupdate="1"> |
||||
|
<record id="sequence_simple_mrp" model="ir.sequence"> |
||||
|
<field name="name">Simple MRP</field> |
||||
|
<field name="code">mrp.order</field> |
||||
|
<field name="prefix">MRP/</field> |
||||
|
<field name="padding">5</field> |
||||
|
<field name="number_next">1</field> |
||||
|
<field name="number_increment">1</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="location_simple_mrp" model="stock.location"> |
||||
|
<field name="name">Simple Production</field> |
||||
|
<field name="location_id" ref="stock.stock_location_locations_virtual"/> |
||||
|
<field name="usage">inventory</field> |
||||
|
<field name="company_id"></field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,7 @@ |
|||||
|
## Module <simple_mrp_order> |
||||
|
|
||||
|
#### 13.1.2022 |
||||
|
#### Version 14.0.1.0.0 |
||||
|
##### ADD |
||||
|
- Initial commit |
||||
|
|
@ -0,0 +1,6 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from . import mrp_order |
||||
|
from . import mrp_bom |
||||
|
from . import mrp_bom_line |
||||
|
from . import mrp_order_line |
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from odoo import models, fields, api |
||||
|
|
||||
|
|
||||
|
class SimpleMRPBom(models.Model): |
||||
|
_name = 'simple.mrp.bom' |
||||
|
_description = "Bills of Materials" |
||||
|
_inherit = ["mail.thread", "mail.activity.mixin"] |
||||
|
_rec_name = 'product_id' |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string="Product", required=True) |
||||
|
product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) |
||||
|
uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) |
||||
|
company_id = fields.Many2one('res.company', 'Company', default=lambda self: self.env.company, |
||||
|
index=True, required=True) |
||||
|
# mrp_id = fields.Many2one('mrp.order', string="Manufacturing Order") |
||||
|
line_ids = fields.One2many('simple.mrp.bom.line', 'bom_id', string="Components") |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def onchange_product_id(self): |
||||
|
""" Update the Uom for the product """ |
||||
|
self.uom_id = self.product_id.uom_id.id |
||||
|
|
||||
|
|
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from odoo import models, fields, api |
||||
|
|
||||
|
|
||||
|
class SimpleMRPBomLine(models.Model): |
||||
|
_name = 'simple.mrp.bom.line' |
||||
|
_description = "Bills of Materials Components" |
||||
|
_inherit = ["mail.thread", "mail.activity.mixin"] |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string="Product", required=True) |
||||
|
product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) |
||||
|
uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) |
||||
|
bom_id = fields.Many2one('simple.mrp.bom') |
||||
|
|
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def onchange_product_id(self): |
||||
|
""" Update the Uom for the product """ |
||||
|
self.uom_id = self.product_id.uom_id.id |
@ -0,0 +1,206 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from datetime import datetime |
||||
|
|
||||
|
from odoo import models, fields, api, _ |
||||
|
from odoo.exceptions import Warning |
||||
|
|
||||
|
|
||||
|
class MRPOrder(models.Model): |
||||
|
_name = 'mrp.order' |
||||
|
_description = "Manufacturing Order" |
||||
|
_inherit = ["mail.thread", "mail.activity.mixin"] |
||||
|
|
||||
|
@api.model |
||||
|
def _get_default_location_src_id(self): |
||||
|
location = False |
||||
|
company_id = self.env.context.get('default_company_id', |
||||
|
self.env.company.id) |
||||
|
if self.env.context.get('default_picking_type_id'): |
||||
|
location = self.env['stock.picking.type'].browse(self.env.context[ |
||||
|
'default_picking_type_id']).default_location_src_id |
||||
|
if not location: |
||||
|
location = self.env['stock.warehouse'].search( |
||||
|
[('company_id', '=', company_id)], limit=1).lot_stock_id |
||||
|
return location and location.id or False |
||||
|
|
||||
|
location_src_id = fields.Many2one('stock.location', |
||||
|
default=_get_default_location_src_id,) |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string="Product", required=True, domain="""[ |
||||
|
('type', 'in', ['product', 'consu']),'|',('company_id', '=', False), |
||||
|
('company_id', '=', company_id)]""") |
||||
|
name = fields.Char( |
||||
|
'Reference', copy=False, readonly=True, default=lambda x: _('New')) |
||||
|
product_qty = fields.Float(string="Quantity To Manufacture", default=1.0, tracking=True) |
||||
|
user_id = fields.Many2one('res.users', 'Responsible', default=lambda self: self.env.user, |
||||
|
states={'done': [('readonly', True)]}) |
||||
|
company_id = fields.Many2one('res.company', 'Company', default=lambda self: self.env.company, |
||||
|
index=True, required=True) |
||||
|
# mrp_bom_ids = fields.One2many('simple.mrp.bom', 'mrp_id') |
||||
|
uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) |
||||
|
uom_categ_id = fields.Many2one(related='product_id.uom_id.category_id') |
||||
|
date_planned = fields.Datetime('Scheduled Date', copy=False, default=fields.Datetime.now, |
||||
|
help="Date at which production start.", index=True, required=True) |
||||
|
|
||||
|
bom_id = fields.Many2one('simple.mrp.bom', string="Bills of Materials") |
||||
|
line_ids = fields.One2many('mrp.order.line', 'mrp_id', string="Components") |
||||
|
|
||||
|
stock_line_ids = fields.One2many('stock.move', 'mrp_id', 'Products') |
||||
|
stock_move_id = fields.Many2one('stock.move') |
||||
|
|
||||
|
state = fields.Selection([ |
||||
|
('draft', 'Draft'), |
||||
|
('confirmed', 'Confirmed'), |
||||
|
('done', 'Done'), |
||||
|
('cancel', 'Cancelled')], string='State', |
||||
|
copy=False, index=True, readonly=True, |
||||
|
store=True, tracking=True, default='draft') |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def onchange_product_id(self): |
||||
|
""" Update the Uom for the product """ |
||||
|
self.uom_id = self.product_id.uom_id.id |
||||
|
bom_id = self.env['simple.mrp.bom'].search([ |
||||
|
('product_id', '=', self.product_id.id) |
||||
|
], limit=1) |
||||
|
if self.product_id: |
||||
|
self.bom_id = bom_id or False |
||||
|
return {'domain': {'bom_id': [('product_id', '=', self.product_id.id)],}} |
||||
|
|
||||
|
@api.onchange('uom_id') |
||||
|
def _onchange_uom_id(self): |
||||
|
""" Update the Uom for the product """ |
||||
|
multiple = 1 |
||||
|
if self.uom_id.uom_type == 'bigger': |
||||
|
multiple = self.uom_id.factor_inv |
||||
|
elif self.uom_id.uom_type == 'smaller': |
||||
|
multiple = 1/self.uom_id.factor |
||||
|
self.stock_line_ids = False |
||||
|
self.line_ids = False |
||||
|
vals = [] |
||||
|
for rec in self.bom_id.line_ids: |
||||
|
vals.append((0, 0, { |
||||
|
'product_id': rec.product_id.id, |
||||
|
'product_qty': rec.product_qty * self.product_qty * multiple, |
||||
|
'uom_id': rec.uom_id.id, |
||||
|
})) |
||||
|
self.line_ids = vals |
||||
|
val = [] |
||||
|
destination = self.env.ref('simple_mrp_order.location_simple_mrp') |
||||
|
for line in self.bom_id.line_ids: |
||||
|
val.append((0, 0, { |
||||
|
'product_id': line.product_id.id, |
||||
|
'product_uom_qty': line.product_qty * self.product_qty * multiple, |
||||
|
'name': line.product_id.name, |
||||
|
'company_id': self.company_id.id, |
||||
|
'location_id': self.location_src_id.id, |
||||
|
'location_dest_id': destination.id, |
||||
|
'product_uom': line.uom_id.id, |
||||
|
'state': 'draft', |
||||
|
'product_uom_category_id': line.uom_id.category_id, |
||||
|
})) |
||||
|
self.stock_line_ids = val |
||||
|
|
||||
|
@api.model |
||||
|
def create(self, vals): |
||||
|
if "name" not in vals or vals["name"] == _("New"): |
||||
|
vals["name"] = self.env["ir.sequence"].next_by_code( |
||||
|
"mrp.order" |
||||
|
) or _("New") |
||||
|
return super().create(vals) |
||||
|
|
||||
|
@api.onchange('bom_id', 'product_qty') |
||||
|
def onchange_bom_id(self): |
||||
|
""" Update the Components for the MRP Order """ |
||||
|
self.line_ids = False |
||||
|
self.stock_line_ids = False |
||||
|
self.product_id = self.bom_id.product_id.id |
||||
|
vals = [] |
||||
|
for line in self.bom_id.line_ids: |
||||
|
vals.append((0, 0, { |
||||
|
'product_id': line.product_id.id, |
||||
|
'product_qty': line.product_qty * self.product_qty, |
||||
|
'uom_id': line.uom_id.id, |
||||
|
})) |
||||
|
val = [] |
||||
|
destination = self.env.ref('simple_mrp_order.location_simple_mrp') |
||||
|
for line in self.bom_id.line_ids: |
||||
|
val.append((0, 0, { |
||||
|
'product_id': line.product_id.id, |
||||
|
'product_uom_qty': line.product_qty * self.product_qty, |
||||
|
'name': line.product_id.name, |
||||
|
'company_id': self.company_id.id, |
||||
|
'location_id': self.location_src_id.id, |
||||
|
'location_dest_id': destination.id, |
||||
|
'product_uom': line.uom_id.id, |
||||
|
'state': 'draft', |
||||
|
'product_uom_category_id': line.uom_id.category_id, |
||||
|
})) |
||||
|
self.stock_line_ids = val |
||||
|
self.line_ids = vals |
||||
|
if self.bom_id: |
||||
|
return {'domain': {'uom_id': [('category_id', '=', self.uom_categ_id.id)],}} |
||||
|
|
||||
|
def action_confirm(self): |
||||
|
for line in self.stock_line_ids: |
||||
|
if line.product_qty > line.product_id.qty_available and line.product_id.type == 'product': |
||||
|
raise Warning('Only %s quantity available for %s' % |
||||
|
(str(line.product_id.qty_available), |
||||
|
str(line.product_id.name))) |
||||
|
self.write({ |
||||
|
'state': 'confirmed' |
||||
|
}) |
||||
|
|
||||
|
def action_done(self): |
||||
|
self.write({ |
||||
|
'state': 'done' |
||||
|
}) |
||||
|
for move in self.stock_line_ids: |
||||
|
move._action_confirm() |
||||
|
move._action_assign() |
||||
|
move.move_line_ids.write({'qty_done': move.product_uom_qty}) |
||||
|
move._action_done() |
||||
|
source = self.env.ref('simple_mrp_order.location_simple_mrp') |
||||
|
move_id = self.env['stock.move'].create({ |
||||
|
'product_id': self.product_id.id, |
||||
|
'product_uom_qty': self.product_qty, |
||||
|
'name': self.product_id.name, |
||||
|
'company_id': self.company_id.id, |
||||
|
'location_id': source.id, |
||||
|
'location_dest_id': self.location_src_id.id, |
||||
|
'product_uom': self.uom_id.id, |
||||
|
'state': 'draft', |
||||
|
'product_uom_category_id': self.uom_id.category_id, |
||||
|
'origin': self.name |
||||
|
}) |
||||
|
move_id._action_confirm() |
||||
|
move_id._action_assign() |
||||
|
move_id.move_line_ids.write({'qty_done': move_id.product_uom_qty}) |
||||
|
move_id._action_done() |
||||
|
self.stock_move_id = move_id |
||||
|
|
||||
|
def action_cancel(self): |
||||
|
self.write({ |
||||
|
'state': 'cancel' |
||||
|
}) |
||||
|
|
||||
|
def action_view_move(self): |
||||
|
ids = [stock.id for stock in self.stock_line_ids] |
||||
|
ids.append(self.stock_move_id.id) |
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'res_model': 'stock.move', |
||||
|
'domain': [('id', 'in', ids)], |
||||
|
'name': _("Product Stock Move"), |
||||
|
'target': 'current', |
||||
|
'view_mode': 'tree', |
||||
|
} |
||||
|
|
||||
|
|
||||
|
class MRPLine(models.Model): |
||||
|
_inherit = 'stock.move' |
||||
|
|
||||
|
mrp_id = fields.Many2one('mrp.order') |
||||
|
|
||||
|
|
||||
|
|
@ -0,0 +1,15 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from odoo import models, fields, api |
||||
|
|
||||
|
|
||||
|
class MRPOrderLine(models.Model): |
||||
|
_name = 'mrp.order.line' |
||||
|
_description = "Bills of Materials Components" |
||||
|
_inherit = ["mail.thread", "mail.activity.mixin"] |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string="Product", required=True) |
||||
|
product_qty = fields.Float(string="Quantity", default=1.0, tracking=True) |
||||
|
uom_id = fields.Many2one('uom.uom', 'Product Unit of Measure', required=True) |
||||
|
mrp_id = fields.Many2one('mrp.order') |
||||
|
|
|
@ -0,0 +1,25 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<data noupdate="1"> |
||||
|
|
||||
|
<record id="module_category_simple_manufacturing" model="ir.module.category"> |
||||
|
<field name="name">Manufacturing</field> |
||||
|
<field name="sequence" eval="5"/> |
||||
|
</record> |
||||
|
|
||||
|
<record id="group_simple_mrp_user" model="res.groups"> |
||||
|
<field name="name">User</field> |
||||
|
<field name="implied_ids" eval="[(4, ref('stock.group_stock_user'))]"/> |
||||
|
<field name="category_id" ref="module_category_simple_manufacturing"/> |
||||
|
</record> |
||||
|
|
||||
|
<record id="group_simple_mrp_manager" model="res.groups"> |
||||
|
<field name="name">Administrator</field> |
||||
|
<field name="implied_ids" eval="[(4, ref('group_simple_mrp_user'))]"/> |
||||
|
<field name="category_id" ref="module_category_simple_manufacturing"/> |
||||
|
<field name="users" eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"/> |
||||
|
</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: 231 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 237 KiB |
After Width: | Height: | Size: 243 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,601 @@ |
|||||
|
|
||||
|
<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;"> |
||||
|
Simple Manufacturing Order</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;"> |
||||
|
Create Manufacturing orders easily in few steps |
||||
|
</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 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;"> |
||||
|
The Simple Manufacturing Order module initiates for an easy creation of manufacturing orders. |
||||
|
Using application, the user can simply create a manufacturing order and bill of material. |
||||
|
</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;"> |
||||
|
Community Support</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Available in Odoo 14.0 Community.</p> |
||||
|
</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;"> |
||||
|
Create Bill of material</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Create Bill of material for the product which need to manufactured.</p> |
||||
|
</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;"> |
||||
|
Create manufacturing order</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Simply create manufacturing order with few clicks.</p> |
||||
|
</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;"> |
||||
|
Warning on low stock</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Shows warning if any product in Bom is low on stock</p> |
||||
|
</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;"> |
||||
|
Bill of Matrial Form</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Bill of Matrial Form with product and component selection.</p> |
||||
|
<img src="assets/screenshots/bom.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;"> |
||||
|
Manufacturing Order Form</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Manufacturing Order form with product details, component details with quantity and uom. Order confirm and |
||||
|
done buttons. |
||||
|
</p> |
||||
|
<img src="assets/screenshots/mo.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;"> |
||||
|
Warning View</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Warning view for low stock product with deatils like available stock. |
||||
|
</p> |
||||
|
<img src="assets/screenshots/warning.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,66 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
|
||||
|
<record id="simple_mrp_bom_form_view" model="ir.ui.view"> |
||||
|
<field name="name">Bills of Materials</field> |
||||
|
<field name="model">simple.mrp.bom</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Bills of Materials"> |
||||
|
<sheet> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="product_id" widget="mui"/> |
||||
|
<label for="product_qty"/> |
||||
|
<div class="o_row no-gutters d-flex"> |
||||
|
<field name="product_qty" class="oe_inline"/> |
||||
|
<field name="uom_id"/> |
||||
|
</div> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="company_id"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<notebook> |
||||
|
<page name="bom_line_ids" string="Components"> |
||||
|
<field name="line_ids"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="product_qty"/> |
||||
|
<field name="uom_id"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
|
||||
|
|
||||
|
</sheet> |
||||
|
<div class="oe_chatter"> |
||||
|
<field name="message_follower_ids" widget="mail_followers"/> |
||||
|
<field name="activity_ids" widget="mail_activity"/> |
||||
|
<field name="message_ids" widget="mail_thread"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="action_simple_mrp_bom" model="ir.actions.act_window"> |
||||
|
<field name="name">Bills of Materials</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">simple.mrp.bom</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create a new Bills of Materials |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem id="menu_mrp_products" parent="simple_mrp_order.menu_mrp_order_root" name="Products" sequence="20"/> |
||||
|
<menuitem id="menu_mrp_bom" name="Bills of Materials" sequence="30" parent="menu_mrp_products" |
||||
|
action="action_simple_mrp_bom"/> |
||||
|
|
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,113 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
|
||||
|
<record id="simple_mrp_order_form_view" model="ir.ui.view"> |
||||
|
<field name="name">Manufacturing</field> |
||||
|
<field name="model">mrp.order</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Manufacturing Order"> |
||||
|
<header> |
||||
|
<button string="Confirm" states="draft" class="oe_highlight" |
||||
|
name="action_confirm" type="object"/> |
||||
|
<button string="Done" states="confirmed" class="oe_highlight" |
||||
|
name="action_done" type="object"/> |
||||
|
<button string="Cancel" states="confirmed" |
||||
|
name="action_cancel" type="object"/> |
||||
|
|
||||
|
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed,done"/> |
||||
|
</header> |
||||
|
<sheet> |
||||
|
<div class="oe_button_box" name="button_box"> |
||||
|
<button name="action_view_move" |
||||
|
type="object" |
||||
|
class="oe_stat_button" |
||||
|
attrs="{'invisible': [('stock_move_id', '=', False)]}" |
||||
|
icon="fa-stock icon"> |
||||
|
<div class="o_field_widget o_stat_info"> |
||||
|
<span class="o_stat_text">Product</span> |
||||
|
<span class="o_stat_text">Move</span> |
||||
|
</div> |
||||
|
</button> |
||||
|
</div> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="product_id" attrs="{'readonly': [('state', 'not in', ('draft'))]}"/> |
||||
|
<label for="product_qty"/> |
||||
|
<div class="o_row no-gutters d-flex"> |
||||
|
<field name="product_qty" class="oe_inline" attrs="{'readonly': [('state', 'not in', ('draft'))]}"/> |
||||
|
<field name="uom_categ_id" invisible="1"/> |
||||
|
<field name="stock_move_id" invisible="1"/> |
||||
|
<field name="uom_id" attrs="{'readonly': [('state', 'not in', ('draft'))]}"/> |
||||
|
<span class='text-bf'>To Produce</span> |
||||
|
</div> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="company_id" attrs="{'readonly': [('state', 'not in', ('draft'))]}"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="bom_id" attrs="{'readonly': [('state', 'not in', ('draft'))]}"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<notebook> |
||||
|
<page string="Components"> |
||||
|
<field name="stock_line_ids" readonly="1" force_save="1" style="pointer-events:none;"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="product_uom_qty" string="Quantity"/> |
||||
|
<field name="name" invisible="1"/> |
||||
|
<field name="company_id" invisible="1"/> |
||||
|
<field name="location_id" invisible="1"/> |
||||
|
<field name="location_dest_id" invisible="1"/> |
||||
|
<field name="product_uom"/> |
||||
|
<field name="state" invisible="1"/> |
||||
|
<field name="product_uom_category_id" invisible="1"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
|
||||
|
</sheet> |
||||
|
<div class="oe_chatter"> |
||||
|
<field name="message_follower_ids" widget="mail_followers"/> |
||||
|
<field name="activity_ids" widget="mail_activity"/> |
||||
|
<field name="message_ids" widget="mail_thread"/> |
||||
|
</div> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="simple_mrp_order_tree_view" model="ir.ui.view"> |
||||
|
<field name="name">Manufacturing</field> |
||||
|
<field name="model">mrp.order</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree> |
||||
|
<field name="product_id"/> |
||||
|
<field name="name"/> |
||||
|
<field name="product_qty"/> |
||||
|
<field name="state" widget="badge"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="action_simple_mrp_order" model="ir.actions.act_window"> |
||||
|
<field name="name">Manufacturing Orders</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">mrp.order</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
Create a new Manufacturing Order |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem id="menu_mrp_order_root" name="Simple Manufacturing"/> |
||||
|
<menuitem id="menu_mrp_order_operations" name="Operations" parent="menu_mrp_order_root"/> |
||||
|
<menuitem id="menu_mrp_order" name="Manufacturing Orders" sequence="10" parent="menu_mrp_order_operations" |
||||
|
action="action_simple_mrp_order"/> |
||||
|
|
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,49 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
|
||||
|
<record id="simple_mrp_product_template_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Products</field> |
||||
|
<field name="res_model">product.template</field> |
||||
|
<field name="view_mode">kanban,tree,form</field> |
||||
|
<field name="context">{"search_default_consumable": 1, 'default_type': 'product'}</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
No product found. Let's create one! |
||||
|
</p> |
||||
|
<p> |
||||
|
Define the components and finished products you wish to use in |
||||
|
bill of materials and manufacturing orders. |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="simple_mrp_product_variants_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Product Variants</field> |
||||
|
<field name="res_model">product.product</field> |
||||
|
<field name="view_mode">tree,form,kanban</field> |
||||
|
<field name="context">{"search_default_consumable": 1, 'default_type': 'product'}</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="o_view_nocontent_smiling_face"> |
||||
|
No product found. Let's create one! |
||||
|
</p> |
||||
|
<p> |
||||
|
Define the components and finished products you wish to use in |
||||
|
bill of materials and manufacturing orders. |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
|
||||
|
<menuitem id="menu_simple_mrp_product_form" |
||||
|
name="Products" |
||||
|
action="simple_mrp_product_template_action" |
||||
|
parent="menu_mrp_products" sequence="1"/> |
||||
|
|
||||
|
<menuitem id="menu_simple_mrp_product_variants_form" |
||||
|
name="Product Variants" |
||||
|
action="simple_mrp_product_variants_action" |
||||
|
parent="menu_mrp_products" sequence="2"/> |
||||
|
|
||||
|
</data> |
||||
|
</odoo> |