diff --git a/multi_branch_base/__manifest__.py b/multi_branch_base/__manifest__.py index 2faabe41e..51e532fbe 100644 --- a/multi_branch_base/__manifest__.py +++ b/multi_branch_base/__manifest__.py @@ -22,7 +22,7 @@ { 'name': "Multi Branch Operations", - 'version': "15.0.1.0.1", + 'version': "15.0.1.0.0", 'summary': """ Multiple Branch Unit Operation Setup for All Modules In Odoo""", 'description': """Multiple Branch Unit Operation Setup for All diff --git a/product_stock_alert/README.rst b/product_stock_alert/README.rst deleted file mode 100644 index e037c5621..000000000 --- a/product_stock_alert/README.rst +++ /dev/null @@ -1,40 +0,0 @@ -Product Stock Alert -=================== -* Product Stock Alert module for Odoo 15. - -Installation -============ - - www.odoo.com/documentation/15.0/setup/install.html - - Install our custom addon - -License -------- -General Public License, Version 3 (AGPL v3). -(https://www.odoo.com/documentation/user/15.0/legal/licenses/licenses.html) - -Company -------- -* 'Cybrosys Techno Solutions '__ - -Credits -------- -* 'Cybrosys Techno Solutions '__ - Developer : Gion @ Cybrosys - -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: ``__ diff --git a/product_stock_alert/__init__.py b/product_stock_alert/__init__.py deleted file mode 100644 index a0fdc10fe..000000000 --- a/product_stock_alert/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -# -*- coding: utf-8 -*- -from . import models diff --git a/product_stock_alert/__manifest__.py b/product_stock_alert/__manifest__.py deleted file mode 100644 index 72c9a367f..000000000 --- a/product_stock_alert/__manifest__.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2022-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. -# If not, see . -# -############################################################################# -{ - 'name': "Product Stock Alert", - 'version': '15.0.1.0.0', - 'summary': """Product Stock Alert""", - "category": 'Inventory', - 'description': """Product Stock Alert""", - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'website': 'https://www.cybrosys.com', - 'depends': ['base', 'sale_management', 'stock', 'point_of_sale', 'product'], - 'data': [ - 'views/res_config_settings_views.xml', - 'views/product_product_views.xml', - 'views/product_template_views.xml' - ], - 'assets': { - 'web.assets_backend': [ - 'product_stock_alert/static/src/js/alert_color_js.js', - 'product_stock_alert/static/src/css/style.css', - ], - 'point_of_sale.assets': [ - 'product_stock_alert/static/src/js/alert_tag_js.js', - ], - 'web.assets_qweb': [ - 'product_stock_alert/static/src/xml/alert_tag_js.xml', - ], - }, - 'images': ['static/description/banner.png'], - 'license': "LGPL-3", - 'installable': True, - 'application': False -} diff --git a/product_stock_alert/doc/RELEASE_NOTES.md b/product_stock_alert/doc/RELEASE_NOTES.md deleted file mode 100644 index efc24f838..000000000 --- a/product_stock_alert/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,6 +0,0 @@ -## Module - -#### 06.06.2022 -#### Version 15.0.1.0.0 -#### ADD -- Initial commit for Product Stock Alert Module \ No newline at end of file diff --git a/product_stock_alert/models/__init__.py b/product_stock_alert/models/__init__.py deleted file mode 100644 index d9394aaa0..000000000 --- a/product_stock_alert/models/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- coding: utf-8 -*- -from . import product_product -from . import product_template -from . import res_config_settings diff --git a/product_stock_alert/models/product_product.py b/product_stock_alert/models/product_product.py deleted file mode 100644 index f6e225fc5..000000000 --- a/product_stock_alert/models/product_product.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -from odoo import api, fields, models - - -class ProductProduct(models.Model): - _inherit = 'product.product' - - alert_tag = fields.Char( - string='Product Alert State', compute='_compute_alert_tag') - - @api.depends('qty_available') - def _compute_alert_tag(self): - is_low_stock_alert = self.env[ - 'ir.config_parameter'].sudo().get_param( - 'product_stock_alert.is_low_stock_alert') - min_low_stock_alert = self.env[ - 'ir.config_parameter'].sudo().get_param( - 'product_stock_alert.min_low_stock_alert') - if is_low_stock_alert: - for rec in self: - rec.alert_tag = False - if rec.detailed_type == 'product': - if rec.qty_available <= int(min_low_stock_alert): - rec.alert_tag = rec.qty_available - else: - self.alert_tag = False diff --git a/product_stock_alert/models/product_template.py b/product_stock_alert/models/product_template.py deleted file mode 100644 index 3276071b3..000000000 --- a/product_stock_alert/models/product_template.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- -from odoo import api, fields, models - - -class ProductTemplate(models.Model): - _inherit = 'product.template' - _description = 'product template' - - alert_state = fields.Boolean(string='Product Alert State', default=False, - compute='_compute_alert_state') - color_field = fields.Char(string='Background color') - - @api.depends('qty_available') - def _compute_alert_state(self): - is_low_stock_alert = self.env[ - 'ir.config_parameter'].sudo().get_param( - 'product_stock_alert.is_low_stock_alert') - min_low_stock_alert = self.env[ - 'ir.config_parameter'].sudo().get_param( - 'product_stock_alert.min_low_stock_alert') - if is_low_stock_alert: - for rec in self: - rec.alert_state = False - rec.color_field = 'white' - if rec.detailed_type == 'product': - if rec.qty_available <= int(min_low_stock_alert): - rec.alert_state = True - rec.color_field = '#fdc6c673' - else: - self.alert_state = False - self.color_field = 'white' - diff --git a/product_stock_alert/models/res_config_settings.py b/product_stock_alert/models/res_config_settings.py deleted file mode 100644 index 3058dbbac..000000000 --- a/product_stock_alert/models/res_config_settings.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -from odoo import api, fields, models - - -class ResConfig(models.TransientModel): - _inherit = 'res.config.settings' - - is_low_stock_alert = fields.Boolean(string="Low Stock Alert") - min_low_stock_alert = fields.Integer( - string='Alert Quantity', default=0, - help='Change the background color for the product based' - ' on the Alert Quant.') - - def set_values(self): - super(ResConfig, self).set_values() - - self.env['ir.config_parameter'].set_param( - 'product_stock_alert.is_low_stock_alert', self.is_low_stock_alert) - - self.env['ir.config_parameter'].set_param( - 'product_stock_alert.min_low_stock_alert', self.min_low_stock_alert) - - @api.model - def get_values(self): - res = super(ResConfig, self).get_values() - params = self.env['ir.config_parameter'].sudo() - res.update( - is_low_stock_alert=params.get_param( - 'product_stock_alert.is_low_stock_alert'), - min_low_stock_alert=params.get_param( - 'product_stock_alert.min_low_stock_alert'), - ) - return res diff --git a/product_stock_alert/static/description/assets/icons/check.png b/product_stock_alert/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/product_stock_alert/static/description/assets/icons/check.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/chevron.png b/product_stock_alert/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/product_stock_alert/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/cogs.png b/product_stock_alert/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/product_stock_alert/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/consultation.png b/product_stock_alert/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/product_stock_alert/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/ecom-black.png b/product_stock_alert/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/product_stock_alert/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/education-black.png b/product_stock_alert/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/product_stock_alert/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/hotel-black.png b/product_stock_alert/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/product_stock_alert/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/license.png b/product_stock_alert/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/product_stock_alert/static/description/assets/icons/license.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/lifebuoy.png b/product_stock_alert/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/product_stock_alert/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/logo.png b/product_stock_alert/static/description/assets/icons/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/product_stock_alert/static/description/assets/icons/logo.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/manufacturing-black.png b/product_stock_alert/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/product_stock_alert/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/pos-black.png b/product_stock_alert/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/product_stock_alert/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/puzzle.png b/product_stock_alert/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/product_stock_alert/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/restaurant-black.png b/product_stock_alert/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/product_stock_alert/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/service-black.png b/product_stock_alert/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/product_stock_alert/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/trading-black.png b/product_stock_alert/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/product_stock_alert/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/training.png b/product_stock_alert/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/product_stock_alert/static/description/assets/icons/training.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/update.png b/product_stock_alert/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/product_stock_alert/static/description/assets/icons/update.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/user.png b/product_stock_alert/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/product_stock_alert/static/description/assets/icons/user.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/icons/wrench.png b/product_stock_alert/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/product_stock_alert/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/budget_image.png b/product_stock_alert/static/description/assets/modules/budget_image.png deleted file mode 100644 index b50130c7d..000000000 Binary files a/product_stock_alert/static/description/assets/modules/budget_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/credit_image.png b/product_stock_alert/static/description/assets/modules/credit_image.png deleted file mode 100644 index 3ad04ecfd..000000000 Binary files a/product_stock_alert/static/description/assets/modules/credit_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/employee_image.png b/product_stock_alert/static/description/assets/modules/employee_image.png deleted file mode 100644 index 30ad58232..000000000 Binary files a/product_stock_alert/static/description/assets/modules/employee_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/export_image.png b/product_stock_alert/static/description/assets/modules/export_image.png deleted file mode 100644 index 492980ad0..000000000 Binary files a/product_stock_alert/static/description/assets/modules/export_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/gantt_image.png b/product_stock_alert/static/description/assets/modules/gantt_image.png deleted file mode 100644 index 1ae7cfe3b..000000000 Binary files a/product_stock_alert/static/description/assets/modules/gantt_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/modules/quotation_image.png b/product_stock_alert/static/description/assets/modules/quotation_image.png deleted file mode 100644 index 499b1a72f..000000000 Binary files a/product_stock_alert/static/description/assets/modules/quotation_image.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/alert_1.png b/product_stock_alert/static/description/assets/screenshots/alert_1.png deleted file mode 100644 index 64bf62ec8..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/alert_1.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/alert_2.png b/product_stock_alert/static/description/assets/screenshots/alert_2.png deleted file mode 100644 index 9cb53700c..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/alert_2.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/alert_3.png b/product_stock_alert/static/description/assets/screenshots/alert_3.png deleted file mode 100644 index dc091290c..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/alert_3.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/alert_4.png b/product_stock_alert/static/description/assets/screenshots/alert_4.png deleted file mode 100644 index 0d9988f79..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/alert_4.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/alert_5.png b/product_stock_alert/static/description/assets/screenshots/alert_5.png deleted file mode 100644 index 8bb8d3416..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/alert_5.png and /dev/null differ diff --git a/product_stock_alert/static/description/assets/screenshots/hero_psa.gif b/product_stock_alert/static/description/assets/screenshots/hero_psa.gif deleted file mode 100644 index 6b0040b63..000000000 Binary files a/product_stock_alert/static/description/assets/screenshots/hero_psa.gif and /dev/null differ diff --git a/product_stock_alert/static/description/banner.png b/product_stock_alert/static/description/banner.png deleted file mode 100644 index 6a0795416..000000000 Binary files a/product_stock_alert/static/description/banner.png and /dev/null differ diff --git a/product_stock_alert/static/description/icon.png b/product_stock_alert/static/description/icon.png deleted file mode 100644 index 3609cd2b3..000000000 Binary files a/product_stock_alert/static/description/icon.png and /dev/null differ diff --git a/product_stock_alert/static/description/index.html b/product_stock_alert/static/description/index.html deleted file mode 100644 index b8b70a039..000000000 --- a/product_stock_alert/static/description/index.html +++ /dev/null @@ -1,616 +0,0 @@ -
-
-
-
- -
-
-
- Community -
- - - - - -
-
-
-
- -
-
-
-

- Product Stock Alert

-

- Product Low Stock Alert -

- -
-
- - - -
-
-

- Overview -

-
- -
-

- The Product Stock Alert module helps you to handle product stock in effective way. The product get - highlighted when stock for a particular product - falls below the defined minimum quantity.

-
-

- -
- - -
-
-

- Features -

-
- -
-
- -
-
-

- Stock Alert in List & Kanban View

-

- Product details gets highlighted in red color, the product quantity goes below the alert quantity - defined. - -

-
-
- - -
-
- -
-
-

- Alert Tag in POS

-

- Display the quantity and alert tag, the products goes below the alert quantity defined. -

-
-
- - -
- -
-
-

- Screenshots -

-
-
-

- Enable the "Low Stock Alert "button.

-

- Go to Settings --> Enable "Low Stock Alert" button and enter Alert Quantity. -

- -
- -
-

- List View

-

- If the quantity of the product is less than the quantity of the alert quantity defined in the settings, the list view of the product will display a red background color. -

- -
- -
-

- Kanban View

-

- If the quantity of the product is less than the quantity of the alert quantity defined in the settings, the kanban view of the product will display a red background color. -

- -
- - -
-

- Point of Sale

-

- If the quantity of the product is less than the quantity of the alert quantity defined in the settings, the pos session of the product will display a alert tag with quantity. -

- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-

Suggested Products

-
- - -
-
- - - -
-
-
-

Our Services

-
-
- -
-
- -
-
- Odoo - Customization
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Support
-
- - -
-
- -
-
- Hire - Odoo - Developer
-
- -
-
- -
-
- Odoo - Integration
-
- -
-
- -
-
- Odoo - Migration
-
- - -
-
- -
-
- Odoo - Consultancy
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Licensing Consultancy
-
-
-
- - - -
-
-
-

Our Industries

-
-
- -
-
- -
- Trading -
-

- Easily procure - and - sell your products

-
-
- -
-
- -
- POS -
-

- Easy - configuration - and convivial experience

-
-
- -
-
- -
- Education -
-

- A platform for - educational management

-
-
- -
-
- -
- Manufacturing -
-

- Plan, track and - schedule your operations

-
-
- -
-
- -
- E-commerce & Website -
-

- Mobile - friendly, - awe-inspiring product pages

-
-
- -
-
- -
- Service Management -
-

- Keep track of - services and invoice

-
-
- -
-
- -
- Restaurant -
-

- Run your bar or - restaurant methodically

-
-
- -
-
- -
- Hotel Management -
-

- An - all-inclusive - hotel management application

-
-
- -
-
- - - - - -
-
-
-

Need Help?

-
-
-
- - -
- -
- - -
- -
- -
- -
-
- -
- -
- -
-
- -
-
-
- - -
\ No newline at end of file diff --git a/product_stock_alert/static/src/css/style.css b/product_stock_alert/static/src/css/style.css deleted file mode 100644 index dafb4e5b5..000000000 --- a/product_stock_alert/static/src/css/style.css +++ /dev/null @@ -1,4 +0,0 @@ - -.d-color { - background-color: red !important; -} \ No newline at end of file diff --git a/product_stock_alert/static/src/js/alert_color_js.js b/product_stock_alert/static/src/js/alert_color_js.js deleted file mode 100644 index 765c98b84..000000000 --- a/product_stock_alert/static/src/js/alert_color_js.js +++ /dev/null @@ -1,31 +0,0 @@ -/** @odoo-module **/ - -import ListRenderer from 'web.ListRenderer'; -import KanbanRenderer from 'web.KanbanRenderer'; -import pyUtils from 'web.py_utils'; - -ListRenderer.include({ - - _renderBodyCell: function (record, node) { - var $td = this._super.apply(this, arguments); - console.log('this', this) - console.log('arguments', arguments) - - if (node.tag !== 'field') { - return $td; - } - - if (arguments && arguments[0] && arguments[0]['model'] == 'product.template') { - if (arguments[0]['data'] && arguments[0]['data']['alert_state'] && arguments[0]['data']['alert_state'] == true) { - $td.css({'color': '#000000', 'background-color': 'rgba(253, 198, 198, 0.39)'}); - } - } - - - - return $td; - }, - -}); - - diff --git a/product_stock_alert/static/src/js/alert_tag_js.js b/product_stock_alert/static/src/js/alert_tag_js.js deleted file mode 100644 index afda16dae..000000000 --- a/product_stock_alert/static/src/js/alert_tag_js.js +++ /dev/null @@ -1,15 +0,0 @@ -odoo.define('pos_product_alert_tag.Product', function(require){ - 'use strict'; - - var models = require('point_of_sale.models'); - var _super_posmodel = models.PosModel.prototype; - - models.PosModel = models.PosModel.extend({ - - initialize: function(session, attributes){ - var self = this; - models.load_fields('product.product', 'alert_tag'); - _super_posmodel.initialize.apply(this, arguments); - } - }); -}); \ No newline at end of file diff --git a/product_stock_alert/static/src/xml/alert_tag_js.xml b/product_stock_alert/static/src/xml/alert_tag_js.xml deleted file mode 100644 index 398bf9bc7..000000000 --- a/product_stock_alert/static/src/xml/alert_tag_js.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - diff --git a/product_stock_alert/views/product_product_views.xml b/product_stock_alert/views/product_product_views.xml deleted file mode 100644 index 21d79897b..000000000 --- a/product_stock_alert/views/product_product_views.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - product.product.view.form.inherit.product_stock_alert - product.product - - - - - - - - - \ No newline at end of file diff --git a/product_stock_alert/views/product_template_views.xml b/product_stock_alert/views/product_template_views.xml deleted file mode 100644 index e5c26c487..000000000 --- a/product_stock_alert/views/product_template_views.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - product.template.view.tree.inherit.product_stock_alert - - product.template - - - - - - - - - - - - product.template.view.kanban.inherit.product_stock_alert - - - product.template - - - - - - - - background-color:#{record.color_field.raw_value} - !important; - - - - - - - - - - - diff --git a/product_stock_alert/views/res_config_settings_views.xml b/product_stock_alert/views/res_config_settings_views.xml deleted file mode 100644 index 21f07cbd1..000000000 --- a/product_stock_alert/views/res_config_settings_views.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - res.config.settings.view.form.inherit.product_stock_alert - res.config.settings - - - -
-
- -
-
- Low Stock Alert -
Quantity for Low Stock Alert
-
-
-
-
-
-
-
- -
\ No newline at end of file