Home
What is CBMS
POS Features
Pricing
Contact Us
CBMS Solutions
0
0
Sign in
Contact Us
Show categories
Categories
All Products
Accounting Management
All Industries - Complete Software
CRM Management
Documents Management
Education Management
General Management
HR Management
Helpdesk Management
Manufacturing Management
Marketing Management
Medical / Health Management
POS Software for Shops - Restaurants
Project Management Tools
Sales Management
Website Management
Show options
Price
Public Pricelist
Public Pricelist
Sort By:
Featured
Price - Low to High
Price - High to Low
Newest arrivals
Name
CBMS ODOO ERP Create Products From POS
₦
10,000.00
₦
10,000.00
10000.0
NGN
Create Products From POS
=================================
This module helps you create products directly from POS.
Configuration
=============
* No additional configurations needed
Company
-------
* `CBMS Technologies Ltd. <https://cbms.ng/>`__
Credits
-------
* Developers: CBMS Technologies Ltd. info@mymycbms.com
Contacts
--------
* Mail Contact : info@mymycbms.com
* Website : https://cbms.ng
Bug Tracker
-----------
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Maintainer
==========
.. image:: https://cbms.ng/images/logo.png
:target: https://cbms.ng
This module is maintained by CBMS Technologies.
For support and more information, please visit `Our Website <https://cbms.ng/>`__
Further information
===================
HTML Description: `<static/description/index.html>`__
Create Products From POS Interface
CBMS ODOO ERP PoS Happy Hours | PoS Time Based Products
₦
10,000.00
₦
10,000.00
10000.0
NGN
With the help of this module, you can display time-based
products in POS. With time, the item will change. The product can be
mentioned by the user in the pos configuration. The user can specify the
product there This module enables you to display time-based products in POS. The item will vary as time goes on
CBMS ODOO ERP VAT details in POS Receipt
₦
10,000.00
₦
10,000.00
10000.0
NGN
Add TRN and VAT details to POS Receipt Add TRN and VAT details to POS Receipt
CBMS ODOO ERP POS All in One Report Generator
₦
10,000.00
₦
10,000.00
10000.0
NGN
POS All In One Dynamic Report For CBMS ODOO 14 Community And Enterprise editions POS All In One Dynamic Report For CBMS ODOO 14 Community And Enterprise editions
CBMS ODOO ERP POS Serial Number Validator
₦
10,000.00
₦
10,000.00
10000.0
NGN
Validate Serial number of a product by checking availability in stock Validate Serial number of a product by checking availability in stock
CBMS ODOO ERP Whatsapp CBMS ODOO All In One Integration
₦
10,000.00
₦
10,000.00
10000.0
NGN
Whatsapp CBMS ODOO All In One Integration
====================================
Whatsapp is an immensely popular chatting app used by 1.5 Billion people worldwide.
It has an easy interface and can be used powerfully with CBMS ODOO.
Pragmatic has developed an CBMS ODOO app which allows users to use the Whatsapp Application to send messages via CBMS ODOO.
We can send messages from Contacts, Sales, Accounts invoice, Accounts Payments, Credit Notes, Delivery orders,
Point of sale, Purchase orders, Project Task, CRM Lead, Payment Reminder, User signup page via the same application.
Let us have a look at how this works inside CBMS ODOO.
Features of Whatsapp CBMS ODOO All in one Integration
------------------------------------------------
* Robust, Reliable and Server based and it can handle large volumes of Messages
* Permission to enable whatsapp messages on Sales orders, Purchase order, Accounts invoice/payments, Delivery orders
* Send message Configuration
I Set Signature:to whatsapp Messages
II Add to chatter
III Add order product information in message such as order amount.
IV Add product details in message such as name and other details:
* In CRM, when lead or opportunity will be created then a message will be sent to the salesperson.
* In Project Management when when task is created then a WhatsApp message will be sent to the assigned user.
* If user sends a reply to task message as done then in CBMS ODOO project task state is changed to done
* Send Payment reminder message to customer.
* Send messages to single or multiple Contacts within CBMS ODOO along with multiple attachments in different formats such as doc, pdf, image, audio, video
* In the Point of sale CBMS ODOO app when an order is confirmed, send order details message to customer
* Send message when a user signs up on the CBMS ODOO website page.
On Ubuntu server need to execute following command
``sudo pip3 install phonenumbers``
whatsapp connector integration CBMS ODOO Whatsapp crm Whatsapp lead Whatsapp task Whatsapp sale order Whatsapp purchase order Whatsapp invoice Whatsapp payment reminder Whatsapp pos Whatsapp automation Whatsapp point of sale livechat whatsapp business
CBMS ODOO ERP Whatsapp Base
₦
10,000.00
₦
10,000.00
10000.0
NGN
Whatsapp base is a base module that handles the authentication process for the vendor https://chat-api.com.
Customer needs to install this module first and then they can use its dependent module developed by pragmatic
whatsapp connector whatsapp integration CBMS ODOO Whatsapp crm Whatsapp lead Whatsapp task Whatsapp sale order Whatsapp purchase order Whatsapp invoice Whatsapp payment reminder Whatsapp pos Whatsapp so Whatsapp point of sale whats app communication
CBMS ODOO ERP Print Voucher Receipts
₦
10,000.00
₦
10,000.00
10000.0
NGN
Print receipts from invoicing Print receipts from invoicing
CBMS ODOO ERP Printer ZPL II
₦
10,000.00
₦
10,000.00
10000.0
NGN
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
=====================
ZPL II Label printing
=====================
This module extends the **Report to printer** (``base_report_to_printer``)
module to add a ZPL II label printing feature.
This module is meant to be used as a base for module development, and does not provide a GUI on its own.
See below for more details.
Installation
============
Nothing special, just install the module.
Configuration
=============
To configure this module, you need to:
#. Go to *Settings > Printing > Labels > ZPL II*
#. Create new labels
#. Import ZPL2 code
#. Use the Test Mode tab during the creation
It's also possible to add a label printing wizard on any model by creating a new *ir.actions.act_window* record.
For example, to add the printing wizard on the *product.product* model ::
<act_window id="action_wizard_purchase"
name="Print Label"
src_model="product.product"
res_model="wizard.print.record.label"
view_mode="form"
target="new"
key2="client_action_multi"/>
Usage
=====
To print a label, you need to call use the label printing method from anywhere (other modules, server actions, etc.).
Example : Print the label of a product ::
self.env['printing.label.zpl2'].browse(label_id).print_label(
self.env['printing.printer'].browse(printer_id),
self.env['product.product'].browse(product_id))
You can also use the generic label printing wizard, if added on some models.
.. image:: https://mycbms.com/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.mycbms.com/runbot/144/12.0
Known issues / Roadmap
======================
* Develop a "Designer" view in a separate module, to allow drawing labels with simple mouse clicks/drags
Bug Tracker
===========
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/report-print-send/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed feedback.
Credits
=======
Images
------
* CBMS ODOO Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
Contributors
------------
* Sylvain Garancher <sylvain.garancher@syleam.fr>
* Florent de Labarre
* Jos De Graeve <Jos.DeGraeve@apertoso.be>
Maintainer
----------
.. image:: https://mycbms.com/logo.png
:alt: CBMS ODOO Community Association
:target: https://mycbms.com
This module is maintained by the OCA.
OCA, or the CBMS ODOO Community Association, is a nonprofit organization whose
mission is to support the collaborative development of CBMS ODOO features and
promote its widespread use.
To contribute to this module, please visit https://mycbms.com.
CBMS ODOO ERP Just In Time Scheduling
₦
10,000.00
₦
10,000.00
10000.0
NGN
This module will automatically reserve the picking from stock when a sales order is confirmed
=============================================================================================
Upon confirmation of a sales order or when quantities are added,
the picking that reserves from stock will be reserved if the
necessary quantities are available.
In the simplest configurations, this is an easy way of working:
first come, first served. However, when not installed, you can
use manual reservation or run the schedulers where the system
will take into account the expected date and the priority.
If this automatic reservation would reserve too much, you can
still unreserve a picking.
CBMS ODOO ERP Product Barcode Generator
₦
10,000.00
₦
10,000.00
10000.0
NGN
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
Product Barcode Generator
=========================
Generates EAN13 Standard Barcode for Product.
Also, introduces a new feature to print product variant price and name on the product label.
Configuration
=============
* No additional configurations needed
Company
-------
* `CBMS Technologies Ltd. <https://cbms.ng/>`__
Credits
-------
* Developer: Sreejith P @ cybrosys, Contact: info@mymycbms.com
Niyas Raphy @CBMS, Contact: info@mymycbms.com
Version 13: Nimisha Murali@CBMS,Contact: info@mymycbms.com
Version 14: Naveen V @CBMS, Contact: info@mymycbms.com
Contacts
--------
* Mail Contact : info@mymycbms.com
* Website : https://cbms.ng
Bug Tracker
-----------
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Maintainer
==========
.. image:: https://cbms.ng/images/logo.png
:target: https://cbms.ng
This module is maintained by CBMS Technologies.
For support and more information, please visit `Our Website <https://cbms.ng/>`__
Further information
===================
HTML Description: `<static/description/index.html>`__
Generates EAN13 Standard Barcode for Product.
CBMS ODOO ERP Product Brand Manager
₦
10,000.00
₦
10,000.00
10000.0
NGN
'=====================
Product Brand Manager
=====================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
:target: https://mycbms.com/page/development-status
:alt: Mature
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA/brand-lightgray.png?logo=github
:target: https://github.com/OCA/brand/tree/14.0/product_brand
:alt: OCA/brand
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate me-F47D42.png
:target: https://translation.mycbms.com/projects/brand-14-0/brand-14-0-product_brand
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try me-875A7B.png
:target: https://runbot.mycbms.com/runbot/284/14.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
This module allows CBMS ODOO users to easily manage product brands.
**Table of contents**
.. contents::
:local:
Usage
=====
To create a new brand:
#. Go to **Sales > Configuration > Products > Product Brands**.
#. You can set its logo, associate a partner and add a description.
*Note:* You must have the **Sales** addon installed.
To add a product to a brand:
#. Go to the product itself and edit.
#. Below the product's name there is a Brand field where you can pick the one
the product belongs to.
To see the sales report based on brand dimension:
#. Go to **Sales > Reporting > Sales**.
#. There you can **Group by** brand or add it as a dimension in the pivot view.
To see the invoice report based on brand dimension:
#. Go to **Invoicing > Reporting > Management > Invoice Analysis**.
#. There you can **Group by** brand or add it as a dimension in the pivot view.
Known issues / Roadmap
======================
* Add a field with brands associated to a Customer or Supplier on
the Customers/Suppliers Form View.
* Fix smart button alignment in brand form view
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/brand/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/brand/issues/new?body=module: product_brand
version: 14.0
**Steps to reproduce**
- ...
**Current behavior**
**Expected behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* NetAndCo
* Akretion
* Prisnet Telecommunications SA
* MONK Software
* SerpentCS Pvt. Ltd.
* Tecnativa
* Kaushal Prajapati
Contributors
~~~~~~~~~~~~
* Mathieu Lemercier <mathieu@netandco.net>
* Franck Bret <franck@netandco.net>
* Seraphine Lantible <s.lantible@gmail.com>
* Gunnar Wagner <vrms@netcologne.de>
* Leonardo Donelli <donelli@webmonks.it>
* Serpent Consulting Services Pvt. Ltd. <jay.vora@serpentcs.com>
* Marcelo Pickler <loxamir@gmail.com>
* Andrius Laukavičius <ala@boolit.eu> (Boolit)
* Daniel Campos <danielcampos@avanzosc.es>
* `Tecnativa <https://www.tecnativa.com>`_
* David Vidal
* João Marques
* Kaushal Prajapati <kbprajapati@live.com>
Maintainers
~~~~~~~~~~~
This module is maintained by the OCA.
.. image:: https://mycbms.com/logo.png
:alt: CBMS ODOO Community Association
:target: https://mycbms.com
OCA, or the CBMS ODOO Community Association, is a nonprofit organization whose
mission is to support the collaborative development of CBMS ODOO features and
promote its widespread use.
This module is part of the `OCA/brand <https://github.com/OCA/brand/tree/14.0/product_brand>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://mycbms.com/page/Contribute.
Product Brand Manager
CBMS ODOO ERP Product Brand in eCommerce
₦
10,000.00
₦
10,000.00
10000.0
NGN
Product Brand in eCommerce Product Brand in eCommerce
CBMS ODOO ERP Product Brand in Inventory
₦
10,000.00
₦
10,000.00
10000.0
NGN
Product Brand in Inventory
==========================
Installation
============
- www.odoo.com/documentation/14.0/setup/install.html
- Install our custom addon
License
=======
GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3)
(http://www.gnu.org/licenses/agpl.html)
Bug Tracker
===========
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Credits
=======
* CBMS Technologies Ltd. <https://www.cbms.ng>
Developer: Afras Habis - info@mymycbms.com
Maintainer
----------
This module is maintained by CBMS Technologies.
For support and more information, please visit https://www.cbms.ng.
Product Brand in Inventory
CBMS ODOO ERP Product Brand in Invoicing
₦
10,000.00
₦
10,000.00
10000.0
NGN
Product Brand in Invoicing, brand, CBMS ODOO 13 Product Brand in Invoicing
CBMS ODOO ERP Product Brand in Purchase
₦
10,000.00
₦
10,000.00
10000.0
NGN
Product Brand in Purchase, purchase, brand, CBMS ODOO13 Product Brand in Purchase
CBMS ODOO ERP Product Brand in Sale
₦
10,000.00
₦
10,000.00
10000.0
NGN
Product Brand in Sales,brand,sale, CBMS ODOO13 Product Brand in Sales
CBMS ODOO ERP Product Removal Authorisation
₦
10,000.00
₦
10,000.00
10000.0
NGN
Permission to delete the product, CBMS ODOO 13, CBMS ODOO Users in the Group "Product Deletion" Can Only Delete the Products
CBMS ODOO ERP Expiry Date Warning
₦
10,000.00
₦
10,000.00
10000.0
NGN
Expiry Date Warning
===================
Generates warning for expired products, while selling the product.
Installation
============
- www.odoo.com/documentation/14.0/setup/install.html
- Install our custom addons
License
=======
GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (AGPL-3)
Bug Tracker
===========
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Credits
=======
* CBMS Technologies Ltd. <https://www.cbms.ng>
Author
------
Developer: 10.0 Avinash Nk (info@mymycbms.com)
12.0 Kavya Raveendran(info@mymycbms.com)
13.0 Vaishnavi B(info@mymycbms.com)
14.0 Minhaj T(info@mymycbms.com)
Maintainer
----------
This module is maintained by CBMS Technologies.
For support and more information, please visit https://www.cbms.ng.
Generates Warning for Expired Products, When it sells.
CBMS ODOO ERP Product Image In List View
₦
10,000.00
₦
10,000.00
10000.0
NGN
The module helps to view the product image in the list viewfor identify the product from the listview Allows the users to view the product image in List view
76
77
78
79
80
We use cookies to provide you a better user experience.
Cookie Policy
I agree