@ -0,0 +1,45 @@ |
|||
Simple Manufacturing Orders |
|||
=========================== |
|||
This module will help you to create manufacturing order in few steps. |
|||
|
|||
Features |
|||
======== |
|||
|
|||
* warning will appear if the quantity is not available |
|||
|
|||
Installation |
|||
============ |
|||
- www.odoo.com/documentation/15.0/setup/install.html |
|||
- Install our custom addon |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (LGPL v3). |
|||
(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) |
|||
|
|||
Company |
|||
------- |
|||
* 'Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
* Developer: V14.0 Mehjabin Farsana, odoo@cybrosys.com |
|||
V15.0 Pranav T V, odoo@cybrosys.com |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit https://www.cybrosys.com |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -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': '15.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 15.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 ValidationError |
|||
|
|||
|
|||
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: |
|||
self.uom_id.category_id=self.uom_categ_id.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 ValidationError('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: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 141 KiB |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 21 KiB |
@ -0,0 +1,533 @@ |
|||
<div style="background-color: #714B67; min-height: 600px; width: 100%; padding: 15px; position: relative;"> |
|||
<!-- TITLE BAR --> |
|||
<div |
|||
style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;"> |
|||
<img src="assets/misc/cybrosys-logo.png" width="42" height="42" style="width: 42px; height: 42px;" /> |
|||
<div> |
|||
<div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" |
|||
class="mr-2"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF TITLE BAR --> |
|||
|
|||
<!-- APP HERO --> |
|||
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;">Simple Manufacturing Order</h1> |
|||
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;"> Create Manufacturing orders easily in few steps. </p> |
|||
<!-- END OF APP HERO --> |
|||
<img src="assets/screenshots/hero.gif" |
|||
style="width: 75%; height: auto; position: absolute; margin-left: auto; margin-right: auto; top: 45%; left: 12%; right: auto;" /> |
|||
|
|||
</div> |
|||
|
|||
<!-- NAVIGATION SECTION --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/compass.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Explore This |
|||
Module</h2> |
|||
</div> |
|||
<div class="row my-4" style="font-family: 'Montserrat', sans-serif;"> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#overview"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span> |
|||
<span |
|||
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">Learn |
|||
more about this |
|||
module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36" /> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#features"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span> |
|||
<span |
|||
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View |
|||
features of this |
|||
module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36" /> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6 my-3"> |
|||
<a href="#screenshots"> |
|||
<div class="d-flex justify-content-between align-items-center" |
|||
style="background-color: #f5f5f5; padding: 30px; width: 100%;"> |
|||
<div> |
|||
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span> |
|||
<span |
|||
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View |
|||
screenshots for this |
|||
module</span> |
|||
</div> |
|||
<img src="assets/misc/right-arrow.png" width="36" height="36" /> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<!-- END OF NAVIGATION SECTION --> |
|||
|
|||
<!-- OVERVIEW SECTION --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="overview"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pie-chart.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Overview |
|||
</h2> |
|||
</div> |
|||
<div class="row" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 py-4"> |
|||
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. |
|||
</div> |
|||
</div> |
|||
<!-- END OF OVERVIEW SECTION --> |
|||
|
|||
<!-- FEATURES SECTION --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="features"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/features.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Features |
|||
</h2> |
|||
</div> |
|||
<div class="row" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div class="d-flex align-items-center" style="margin-top: 40px; margin-bottom: 40px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2" /> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Community Support</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2" /> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Create Bill of material.</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2" /> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Create manufacturing order.</span> |
|||
</div> |
|||
<div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px"> |
|||
<img src="assets/misc/check-box.png" class="mr-2" /> |
|||
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Warning on low stock.</span> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF FEATURES SECTION --> |
|||
|
|||
<!-- SCREENSHOTS SECTION --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="screenshots"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/pictures.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Bill of Material Form</h3> |
|||
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">Create a Bill of Material for a product with the components.</p> |
|||
<img src="assets/screenshots/screenshot-1.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;"> Manufacturing Order Form </h3> |
|||
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">Create a manufacturing order for the product with bill of material.</p> |
|||
<img src="assets/screenshots/screenshot-2.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
<div style="display: block; margin: 30px auto;"> |
|||
<h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Warning Message View</h3> |
|||
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;"> Warning message for low stock product and will show details like available stock.</p> |
|||
<img src="assets/screenshots/screenshot-3.png" class="img-thumbnail"> |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
<!-- END OF SCREENSHOTS SECTION --> |
|||
|
|||
<!-- RELATED PRODUCTS --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/categories.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Related |
|||
Products |
|||
</h2> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12"> |
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner" style="padding: 30px;"> |
|||
<div class="carousel-item" style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/dynamic_accounts_report/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/1.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/custom_gantt_view/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/2.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/project_custom_gantt/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/3.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item active" style="min-height: 198.656px;"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/account_reports_xlsx/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/4.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/base_accounting_kit/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/5.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/hr_payroll_community/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" style="border-radius: 0px;" |
|||
src="assets/modules/6.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" style="width:35px; color:#000"> <span |
|||
class="carousel-control-prev-icon"><i class="fa fa-chevron-left" style="font-size:24px"></i></span> |
|||
</a> <a class="carousel-control-next" href="#demo1" data-slide="next" style="width:35px; color:#000"> |
|||
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" |
|||
style="font-size:24px"></i></span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF RELATED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
|
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/star.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Our Services |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Customization</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Support</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire |
|||
Odoo |
|||
Developer</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Integration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Migration</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Consultancy</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<!-- END OF END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
|
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/corporate.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Our |
|||
Industries |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="container my-5"> |
|||
<div class="row"> |
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/trading-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure |
|||
and |
|||
sell your products</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/pos-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy |
|||
configuration |
|||
and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/education-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for |
|||
educational management</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/manufacturing-black.png" class="img-responsive mb-3" height="48px" |
|||
width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and |
|||
schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/ecom-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile |
|||
friendly, |
|||
awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/service-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of |
|||
services and invoice</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/restaurant-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or |
|||
restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="assets/icons/hotel-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An |
|||
all-inclusive |
|||
hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- END OF END OF OUR INDUSTRIES --> |
|||
|
|||
<!-- SUPPORT --> |
|||
<div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> |
|||
<div class="d-flex justify-content-center align-items-center mr-2" |
|||
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> |
|||
<img src="assets/misc/customer-support.png" /> |
|||
</div> |
|||
<h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Support |
|||
</h2> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4" |
|||
style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/support.png" height="48" width="48" style="width: 42px; height: 42px;" /> |
|||
</div> |
|||
<div> |
|||
<h4>Need Help?</h4> |
|||
<p style="line-height: 100%;">Got questions or need help? Get in touch.</p> |
|||
<a href="mailto:odoo@cybrosys.com"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> |
|||
odoo@cybrosys.com</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-sm-12 col-md-6"> |
|||
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> |
|||
<div class="mr-4" |
|||
style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> |
|||
<img src="assets/misc/whatsapp.png" height="52" width="52" style="width: 52px; height: 52px;" /> |
|||
</div> |
|||
<div> |
|||
<h4>WhatsApp</h4> |
|||
<p style="line-height: 100%;">Say hi to us on WhatsApp!</p> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707"> |
|||
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;">+91 86068 |
|||
27707</p> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 my-5 d-flex justify-content-center align-items-center"> |
|||
<img src="assets/misc/logo.png" width="144" height="31" |
|||
style="width:144px; height: 31px; margin-top: 40px;" /> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF SUPPORT --> |
@ -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> |