Browse Source

Jan 11 [UPDT] : Updated 'mobile_service_shop'

pull/313/head
AjmalCybro 1 year ago
parent
commit
9867c736e9
  1. 24
      mobile_service_shop/README.rst
  2. 1
      mobile_service_shop/__init__.py
  3. 32
      mobile_service_shop/__manifest__.py
  4. 5
      mobile_service_shop/doc/RELEASE_NOTES.md
  5. 28
      mobile_service_shop/models/__init__.py
  6. 28
      mobile_service_shop/models/brand_model.py
  7. 28
      mobile_service_shop/models/mobile_brand.py
  8. 28
      mobile_service_shop/models/mobile_complaint.py
  9. 28
      mobile_service_shop/models/mobile_complaint_description.py
  10. 28
      mobile_service_shop/models/mobile_complaint_tree.py
  11. 28
      mobile_service_shop/models/mobile_service.py
  12. 28
      mobile_service_shop/models/product_order_line.py
  13. 28
      mobile_service_shop/models/product_template.py
  14. 28
      mobile_service_shop/models/service_ticket.py
  15. 28
      mobile_service_shop/models/terms_condition.py
  16. BIN
      mobile_service_shop/static/description/assets/modules/1.png
  17. BIN
      mobile_service_shop/static/description/assets/modules/2.png
  18. BIN
      mobile_service_shop/static/description/assets/modules/3.png
  19. BIN
      mobile_service_shop/static/description/assets/modules/4.png
  20. BIN
      mobile_service_shop/static/description/assets/modules/5.png
  21. BIN
      mobile_service_shop/static/description/assets/modules/6.png
  22. BIN
      mobile_service_shop/static/description/assets/modules/m1.png
  23. BIN
      mobile_service_shop/static/description/assets/modules/m2.png
  24. BIN
      mobile_service_shop/static/description/assets/modules/m3.png
  25. BIN
      mobile_service_shop/static/description/assets/modules/m4.png
  26. BIN
      mobile_service_shop/static/description/assets/modules/m5.png
  27. BIN
      mobile_service_shop/static/description/assets/modules/m6.png
  28. 505
      mobile_service_shop/static/description/index.html
  29. 29
      mobile_service_shop/wizard/__init__.py
  30. 67
      mobile_service_shop/wizard/mobile_create_invoice.py

24
mobile_service_shop/README.rst

@ -1,3 +1,7 @@
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
Mobile Service Management Mobile Service Management
========================= =========================
Module for mobile service shop daily activities Module for mobile service shop daily activities
@ -10,12 +14,23 @@ Company
------- -------
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ * `Cybrosys Techno Solutions <https://cybrosys.com/>`__
License
-------
General Public License, Version 3 (LGPL v3).
(https://www.odoo.com/documentation/17.0/legal/licenses.html)
Credits Credits
------- -------
* Developers: Milind Mohan @ Cybrosys, odoo@cybrosys.com * Developers: Milind Mohan,
Mohammed Shahil M P @cybrosys, odoo@cybrosys.com (V15) Mohammed Shahil M P,
Neenu Merlin Jose @cybrosys, odoo@cybrosys.com (V16) Neenu Merlin Jose,
Vishnu KP @ Cybrosys, odoo@cybrosys.com (V17) Vishnu KP,
Contact : odoo@cybrosys.com
Contacts
--------
* Mail Contact : odoo@cybrosys.com
* Website : https://cybrosys.com
Bug Tracker Bug Tracker
----------- -----------
@ -33,4 +48,3 @@ For support and more information, please visit `Our Website <https://cybrosys.co
Further information Further information
=================== ===================
HTML Description: `<static/description/index.html>`__ HTML Description: `<static/description/index.html>`__

1
mobile_service_shop/__init__.py

@ -19,6 +19,5 @@
# If not, see <http://www.gnu.org/licenses/>. # If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################# #############################################################################
from . import models from . import models
from . import wizard from . import wizard

32
mobile_service_shop/__manifest__.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{ {
'name': 'Mobile Service Management', 'name': 'Mobile Service Management',
'version': '17.0.1.0.0', 'version': '17.0.1.0.0',
@ -27,7 +27,7 @@
'author': 'Cybrosys Techno Solutions', 'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com', 'website': 'https://www.cybrosys.com',
'depends': ['base', 'stock_account', 'mail', 'product', 'account'], 'depends': ['stock_account', 'mail', 'product', 'account'],
'data': ['security/mobile_service_shop_security.xml', 'data': ['security/mobile_service_shop_security.xml',
'security/ir.model.access.csv', 'security/ir.model.access.csv',
'views/mobile_service_views.xml', 'views/mobile_service_views.xml',
@ -49,8 +49,8 @@
'mobile_service_shop/static/src/css/mobile_service.css', 'mobile_service_shop/static/src/css/mobile_service.css',
], ],
}, },
'license': 'LGPL-3',
'installable': True, 'installable': True,
'application': True, 'application': True,
'auto_install': False, 'auto_install': False,
'license': 'LGPL-3',
} }

5
mobile_service_shop/doc/RELEASE_NOTES.md

@ -3,9 +3,10 @@
### 17.11.2023 ### 17.11.2023
#### Version 17.0.1.0.0 #### Version 17.0.1.0.0
#### ADD #### ADD
Initial Commit for Mobile Service Management - Initial Commit for Mobile Service Management
### 24.11.2023 ### 24.11.2023
#### Version 17.0.1.0.1 #### Version 17.0.1.0.1
#### UPDT #### UPDT
Bug fix - Bug fix
-

28
mobile_service_shop/models/__init__.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from . import brand_model from . import brand_model
from . import mobile_brand from . import mobile_brand
from . import mobile_complaint from . import mobile_complaint

28
mobile_service_shop/models/brand_model.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/mobile_brand.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/mobile_complaint.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/mobile_complaint_description.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/mobile_complaint_tree.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/mobile_service.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from datetime import datetime from datetime import datetime
from odoo import api, fields, models, _ from odoo import api, fields, models, _
from odoo.exceptions import UserError from odoo.exceptions import UserError

28
mobile_service_shop/models/product_order_line.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import api, fields, models, _ from odoo import api, fields, models, _

28
mobile_service_shop/models/product_template.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

28
mobile_service_shop/models/service_ticket.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import models, api from odoo import models, api

28
mobile_service_shop/models/terms_condition.py

@ -1,24 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models from odoo import fields, models

BIN
mobile_service_shop/static/description/assets/modules/1.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

BIN
mobile_service_shop/static/description/assets/modules/2.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

BIN
mobile_service_shop/static/description/assets/modules/3.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

BIN
mobile_service_shop/static/description/assets/modules/4.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

BIN
mobile_service_shop/static/description/assets/modules/5.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

BIN
mobile_service_shop/static/description/assets/modules/6.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

BIN
mobile_service_shop/static/description/assets/modules/m1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
mobile_service_shop/static/description/assets/modules/m2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
mobile_service_shop/static/description/assets/modules/m3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
mobile_service_shop/static/description/assets/modules/m4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
mobile_service_shop/static/description/assets/modules/m5.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
mobile_service_shop/static/description/assets/modules/m6.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

505
mobile_service_shop/static/description/index.html

@ -6,21 +6,27 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odoo App 3 Index</title> <title>Odoo App 3 Index</title>
<!-- Bootstrap CSS --> <!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" <link rel="stylesheet"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet">
</head> </head>
<body> <body>
<section> <section>
<div class="container" style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> <div class="container"
style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;">
<div class="row"> <div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" <div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center"
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> style="border-bottom:1px solid rgba(0, 0, 0, 0.22)">
<div class="my-3"> <div class="my-3">
<img src="assets/misc/Cybrosys R.png" style="width:auto !important; height:40px !important"> <img src="assets/misc/Cybrosys R.png"
style="width:auto !important; height:40px !important">
</div> </div>
<div class="my-3 d-flex align-items-center"> <div class="my-3 d-flex align-items-center">
<div class="text-center" <div class="text-center"
@ -32,8 +38,8 @@
Enterprise Enterprise
</div> </div>
<div class="text-center" <div class="text-center"
style="background-color:#875A7B !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> style="background-color:#7C7BAD !important; color:#fff !important; font-size:0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width:120px !important">
Odoo SH Odoo.sh
</div> </div>
</div> </div>
</div> </div>
@ -46,16 +52,20 @@
Mobile Service Management</h1> Mobile Service Management</h1>
<p class="my-3 mb-4" <p class="my-3 mb-4"
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;">
Mobile Service Management for Odoo 17 Community & Enterprise Edition. Mobile Service Management for Odoo 17 Community & Enterprise
Edition.
</p> </p>
<div style="width: 80%; margin-top: 3rem;"> <div style="width: 80%; margin-top: 3rem;">
<img src="assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/hero.gif"
class="img-responsive" width="100%" height="auto">
</div> </div>
</div> </div>
</div> </div>
<div class="container mt-5 mb-5"> <div class="container mt-5 mb-5">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4">
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#714b67 !important">Key Highlights <p class="m-0"
style="font-weight: 600; font-size: 24px; color:#714b67 !important">
Key Highlights
</p> </p>
</div> </div>
<div class="row py-4"> <div class="row py-4">
@ -66,12 +76,17 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0;"> margin-right: 10px; flex-shrink: 0;">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Odoo 17 Community & Enterprise Edition Support.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">Budget management system in Odoo 17 Community & Enterprise Edition. Odoo 17 Community & Enterprise Edition
Support.</p>
<p class="m-0" style="color:#718096">Budget
management system in Odoo 17 Community &
Enterprise Edition.
</p> </p>
</div> </div>
</div> </div>
@ -83,12 +98,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0;"> margin-right: 10px; flex-shrink: 0;">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Service request creation.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">Create and manage Service request. Service request creation.</p>
<p class="m-0" style="color:#718096">Create and
manage Service request.
</p> </p>
</div> </div>
</div> </div>
@ -100,12 +118,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0;"> margin-right: 10px; flex-shrink: 0;">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Assigning Service Request to Technicians</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">To Ensure the Smooth and Effective Workflow. Assigning Service Request to Technicians</p>
<p class="m-0" style="color:#718096">To Ensure the
Smooth and Effective Workflow.
</p> </p>
</div> </div>
</div> </div>
@ -117,12 +138,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0; "> margin-right: 10px; flex-shrink: 0; ">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Mobile service ticket generation.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">User can create Mobile Service Ticket. Mobile service ticket generation.</p>
<p class="m-0" style="color:#718096">User can create
Mobile Service Ticket.
</p> </p>
</div> </div>
</div> </div>
@ -134,12 +158,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0; "> margin-right: 10px; flex-shrink: 0; ">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Tracking the Service Status.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">User can Track the Work Status. Tracking the Service Status.</p>
<p class="m-0" style="color:#718096">User can Track
the Work Status.
</p> </p>
</div> </div>
</div> </div>
@ -151,12 +178,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0; "> margin-right: 10px; flex-shrink: 0; ">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Integrated with accounting and sales module.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">User can Generate Invoice After the Service Completion. Integrated with accounting and sales module.</p>
<p class="m-0" style="color:#718096">User can
Generate Invoice After the Service Completion.
</p> </p>
</div> </div>
</div> </div>
@ -168,12 +198,16 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0; "> margin-right: 10px; flex-shrink: 0; ">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Multi-level access rights.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">Users are Granted Different Levels of Access Within the Application. Multi-level access rights.</p>
<p class="m-0" style="color:#718096">Users are
Granted Different Levels of Access Within the
Application.
</p> </p>
</div> </div>
</div> </div>
@ -185,12 +219,15 @@
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67;
display: flex; justify-content: center; align-items: center; display: flex; justify-content: center; align-items: center;
margin-right: 10px; flex-shrink: 0; "> margin-right: 10px; flex-shrink: 0; ">
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> <i class="fa-solid fa-star "
style="color: #fff;font-size:14px;"></i>
</div> </div>
<div> <div>
<p style="color: #1A202C;font-weight: 600; <p style="color: #1A202C;font-weight: 600;
font-size: 1.2rem; margin-bottom: 2px;">Flexible for further customization.</p> font-size: 1.2rem; margin-bottom: 2px;">
<p class="m-0" style="color:#718096">It Allows Users to Modify the Functionalities Easily. Flexible for further customization.</p>
<p class="m-0" style="color:#718096">It Allows Users
to Modify the Functionalities Easily.
</p> </p>
</div> </div>
</div> </div>
@ -198,31 +235,42 @@
</div> </div>
</div> </div>
<div class="container rounded"> <div class="container rounded">
<ul class="nav nav-tabs d-flex" style="width: fit-content;margin: 0 auto;gap: 1rem;"> <ul class="nav nav-tabs d-flex"
style="width: fit-content;margin: 0 auto;gap: 1rem;">
<li class="col text-center py-2 text-nowrap " <li class="col text-center py-2 text-nowrap "
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;">
<a
class="active show" data-toggle="tab" href="#tab1" class="active show" data-toggle="tab" href="#tab1"
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;">
<i class="fa-regular fa-image pr-2" style="color: #fff;"></i> <i class="fa-regular fa-image pr-2"
style="color: #fff;"></i>
Screenshots</a></li> Screenshots</a></li>
<li class="col text-center py-2 text-nowrap " <li class="col text-center py-2 text-nowrap "
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;">
<a
data-toggle="tab" href="#tab2" data-toggle="tab" href="#tab2"
style="color: #fff;font-weight: 500; text-decoration: none;"><i style="color: #fff;font-weight: 500; text-decoration: none;"><i
class="fa-solid fa-star pr-2" style="color: #fff;"></i>Features</a></li> class="fa-solid fa-star pr-2"
style="color: #fff;"></i>Features</a></li>
<li class="col text-center py-2 text-nowrap " <li class="col text-center py-2 text-nowrap "
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;">
<a
data-toggle="tab" href="#tab3" data-toggle="tab" href="#tab3"
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i
class="fa-solid fa-book-open pr-2" style="color: #fff;"></i>Released Notes</a></li> class="fa-solid fa-book-open pr-2"
style="color: #fff;"></i>Released Notes</a></li>
</ul> </ul>
<div class="tab-content" style="background-color: rgba(121, 113, 119, 0.04);"> <div class="tab-content"
style="background-color: rgba(121, 113, 119, 0.04);">
<div id="tab1" class="tab-pane fade in active show"> <div id="tab1" class="tab-pane fade in active show">
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/ss1.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/ss1.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -231,11 +279,14 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/11.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/11.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -243,15 +294,20 @@
Special buttons</h4> Special buttons</h4>
<h6 class="mt-2" <h6 class="mt-2"
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">
Easy way to Print the service , Create Invoice And Sent notification by mail etc.</h6> Easy way to Print the service , Create
Invoice And Sent notification by mail
etc.</h6>
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/config_settings.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/config_settings.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -259,15 +315,19 @@
Configuration Menu</h4> Configuration Menu</h4>
<h6 class="mt-2" <h6 class="mt-2"
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">
Can Set up the Brand, Models, Complaint template, etc.</h6> Can Set up the Brand, Models, Complaint
template, etc.</h6>
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/invoice.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/invoice.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -279,11 +339,14 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/mail.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/mail.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -291,16 +354,20 @@
Mail Notification</h4> Mail Notification</h4>
<h6 class="mt-2" <h6 class="mt-2"
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">
We can Sent Mail Notification to the Customer</h6> We can Sent Mail Notification to the
Customer</h6>
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/product.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/product.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -308,15 +375,19 @@
Product Management.</h4> Product Management.</h4>
<h6 class="mt-2" <h6 class="mt-2"
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">
We can Easily Manage the Mobile Parts Here</h6> We can Easily Manage the Mobile Parts
Here</h6>
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/product_page.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/product_page.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -328,11 +399,14 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> <div class="col-lg-12 py-2"
style="padding: 1rem 4rem !important;">
<div <div
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="row justify-content-center p-3 w-100 m-0"> <div class="row justify-content-center p-3 w-100 m-0">
<img src="assets/screenshots/product_page_2.png" class="img-responsive" width="100%" height="auto"> <img src="assets/screenshots/product_page_2.png"
class="img-responsive" width="100%"
height="auto">
</div> </div>
<div class="px-3"> <div class="px-3">
<h4 class="mt-2" <h4 class="mt-2"
@ -340,7 +414,8 @@
Product Configuration.</h4> Product Configuration.</h4>
<h6 class="mt-2" <h6 class="mt-2"
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">
Configure The Model and Brand of the Mobile Product</h6> Configure The Model and Brand of the Mobile
Product</h6>
</div> </div>
</div> </div>
</div> </div>
@ -350,20 +425,83 @@
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> <ul style="list-style: none; padding: 1rem 0;font-weight: 500;">
<li class="py-3" <li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" <span style="margin-right: 12px;"><img
width="16px"></span>Create and manage Budgetary Positions. src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Assigning
service request to technicians
</li> </li>
<li class="py-3" <li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" <span style="margin-right: 12px;"><img
width="16px"></span>Manage budgets with analytic accounts. src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Mobile service
ticket generation.
</li> </li>
<li class="py-3" <li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" <span style="margin-right: 12px;"><img
width="16px"></span>Budgetary planning with planned amount on each Analytic Account.. src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Tracking the
service status.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Integrated with
accounting and sales module.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Multi-level
access rights.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Mobile complaint
templates.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Invoice for
parts usage and service charges.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Email
notifications to customer.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Parts inventory.
</li>
<li class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<span style="margin-right: 12px;"><img
src="assets/misc/star (1) 2.svg"
alt=""
width="16px"></span>Flexible for
further customization.
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>
@ -371,14 +509,16 @@
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> <div class="col-mg-12 active" style="padding: 1rem 4rem;">
<div class="py-3" <div class="py-3"
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<div class="d-flex mb-3" style="font-size: 0.8rem; font-weight: 500;"><span>Version <div class="d-flex mb-3"
17.0.1.0.0</span><span class="px-2">|</span><span style="font-size: 0.8rem; font-weight: 500;"><span>Version
style="color: #714B67;font-weight: 600;">Released on:07th Nov 2023</span> 17.0.1.0.0</span><span
class="px-2">|</span><span
style="color: #714B67;font-weight: 600;">Released on:08th Jan 2024</span>
</div> </div>
<p class="m-0" <p class="m-0"
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> style=" color:#718096!important; font-size:1rem !important;line-height: 28px;">
Odoo 17 Budgets Management.</p> Odoo 17 Mobile Service Management</p>
</div> </div>
</div> </div>
</div> </div>
@ -386,7 +526,9 @@
</div> </div>
<div class="container mt-5"> <div class="container mt-5">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5">
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Related Products</p> <p class="m-0"
style="font-weight: 600; font-size: 24px; color:#000 !important">
Related Products</p>
</div> </div>
</div> </div>
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> <div id="myCarousel" class="carousel slide py-3" data-ride="carousel">
@ -395,39 +537,51 @@
<div class="row p-4"> <div class="row p-4">
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/manufacturing_reports/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/invoice_format_editor/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px; "> <div style="width: 300px; ">
<img src="assets/modules/1.png" alt="" width="100%" height="auto"> <img src="assets/modules/m1.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold">Manufacturing Reports</p> <p class="text-center pt-2 text-black font-weight-bold">
Invoice Format Editor</p>
</div> </div>
</a> </a>
</div> </div>
</div> </div>
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/mrp_work_order_print/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/inventory_barcode_scanning/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px; "> <div style="width: 300px; ">
<img src="assets/modules/2.png" alt="" width="100%" height="auto"> <img src="assets/modules/m2.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold">Print Work Order Details</p> <p class="text-center pt-2 text-black font-weight-bold">
Barcode scanning in Inventory</p>
</div> </div>
</a> </a>
</div> </div>
</div> </div>
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/bom_total_cost/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/whatsapp_redirect/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px; "> <div style="width: 300px; ">
<img src="assets/modules/3.png" alt="" width="100%" height="auto"> <img src="assets/modules/m3.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold">Show Total Cost On BOM</p> <p class="text-center pt-2 text-black font-weight-bold">
Send Whatsapp Message</p>
</div> </div>
</a> </a>
</div> </div>
@ -438,38 +592,50 @@
<div class="row p-4"> <div class="row p-4">
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/simple_mrp_order/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/base_account_budget/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px; "> <div style="width: 300px; ">
<img src="assets/modules/4.png" alt="" width="100%" height="auto"> <img src="assets/modules/m4.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold">Simple Manufacturing Orders</p> <p class="text-center pt-2 text-black font-weight-bold">
Budget Management</p>
</div> </div>
</a> </a>
</div> </div>
</div> </div>
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/bom_multiple_product/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/product_barcode/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px;"> <div style="width: 300px;">
<img src="assets/modules/5.png" alt="" width="100%" height="auto"> <img src="assets/modules/m5.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold">BOM Multiple Product Selection</p> <p class="text-center pt-2 text-black font-weight-bold">
Product Barcode Generator</p>
</div> </div>
</a> </a>
</div> </div>
</div> </div>
<div class="col"> <div class="col">
<div class="p-3"> <div class="p-3">
<a href="https://apps.odoo.com/apps/modules/16.0/cw_mrp/" style="color: #000; text-decoration: none;"> <a href="https://apps.odoo.com/apps/modules/17.0/export_stockinfo_xls/"
style="color: #000; text-decoration: none;">
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> <div style="border:1px solid #CBCBCB !important;border-radius: 4px;">
<div style="width: 300px;"> <div style="width: 300px;">
<img src="assets/modules/6.png" alt="" width="100%" height="auto"> <img src="assets/modules/m6.png"
alt="" width="100%"
height="auto">
</div> </div>
<p class="text-center pt-2 text-black font-weight-bold"> Catch Weight Management: Manufacturing</p> <p class="text-center pt-2 text-black font-weight-bold">
Export Product Stock in Excel</p>
</div> </div>
</a> </a>
</div> </div>
@ -477,20 +643,26 @@
</div> </div>
</div> </div>
</div> </div>
<a class="carousel-control-prev" href="#myCarousel" data-slide="prev" style="width: 35px; color: #000;"> <a class="carousel-control-prev" href="#myCarousel"
data-slide="prev" style="width: 35px; color: #000;">
<span class="carousel-control-prev-icon"> <span class="carousel-control-prev-icon">
<i class="fa fa-chevron-left" style="font-size: 24px;"></i> <i class="fa fa-chevron-left"
style="font-size: 24px;"></i>
</span> </span>
</a> </a>
<a class="carousel-control-next" href="#myCarousel" data-slide="next" style="width: 35px; color: #000;"> <a class="carousel-control-next" href="#myCarousel"
data-slide="next" style="width: 35px; color: #000;">
<span class="carousel-control-next-icon"> <span class="carousel-control-next-icon">
<i class="fa fa-chevron-right" style="font-size: 24px;"></i> <i class="fa fa-chevron-right"
style="font-size: 24px;"></i>
</span> </span>
</a> </a>
</div> </div>
<div class="container mt-5"> <div class="container mt-5">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4">
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Services</p> <p class="m-0"
style="font-weight: 600; font-size: 24px; color:#000 !important">
Our Services</p>
</div> </div>
</div> </div>
@ -502,10 +674,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/cogs.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/cogs.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Customization</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Customization</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -514,10 +689,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/wrench.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/wrench.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Implementation</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -526,10 +704,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/lifebuoy.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/lifebuoy.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Support</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Support</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -538,10 +719,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/user.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/user.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Hire Odoo Developer</p> <p style="margin-top: 20px; font-weight: bold;">Hire
Odoo Developer</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -551,10 +735,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/puzzle.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/puzzle.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Integration</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Integration</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -563,10 +750,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/update.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/update.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Migration</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Migration</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -575,10 +765,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/consultation.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/consultation.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Consultancy</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Consultancy</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -587,10 +780,13 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/training.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/training.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Implementation</p>
</div> </div>
</div> </div>
<div class="col-md-4 col-sm-6 px-4 py-4"> <div class="col-md-4 col-sm-6 px-4 py-4">
@ -599,17 +795,22 @@
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);">
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; <div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px;
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);">
<img src="assets/icons/license.png" alt="service-icon" width="38px" height="auto"> <img src="assets/icons/license.png"
alt="service-icon" width="38px"
height="auto">
</div> </div>
</div> </div>
<p style="margin-top: 20px; font-weight: bold;">Odoo Licensing Consultancy</p> <p style="margin-top: 20px; font-weight: bold;">Odoo
Licensing Consultancy</p>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div class="container mt-5"> <div class="container mt-5">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4">
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Industries</p> <p class="m-0"
style="font-weight: 600; font-size: 24px; color:#000 !important">
Our Industries</p>
</div> </div>
</div> </div>
@ -618,7 +819,8 @@
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100 " <div class="d-flex flex-column h-100 "
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);">
<img src="assets/icons/trading-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/trading-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> font-size: 1.2rem; margin-bottom: 2px;">Trading</p>
<p>Easily procure and sell your products</p> <p>Easily procure and sell your products</p>
@ -627,7 +829,8 @@
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;">
<img src="assets/icons/pos-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/pos-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">POS</p> font-size: 1.2rem; margin-bottom: 2px;">POS</p>
<p>Easy configuration and convivial experience</p> <p>Easy configuration and convivial experience</p>
@ -636,54 +839,66 @@
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)">
<img src="assets/icons/education-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/education-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Education</p> font-size: 1.2rem; margin-bottom: 2px;">
Education</p>
<p>A platform for educational management</p> <p>A platform for educational management</p>
</div> </div>
</div> </div>
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; ">
<img src="assets/icons/manufacturing-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/manufacturing-black.png"
width="42px" height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Manufacturing</p> font-size: 1.2rem; margin-bottom: 2px;">
Manufacturing</p>
<p>Plan, track and schedule your operations</p> <p>Plan, track and schedule your operations</p>
</div> </div>
</div> </div>
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;">
<img src="assets/icons/ecom-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/ecom-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & Website</p> font-size: 1.2rem; margin-bottom: 2px;">E-commerce &
Website</p>
<p>Mobile friendly, awe-inspiring product pages</p> <p>Mobile friendly, awe-inspiring product pages</p>
</div> </div>
</div> </div>
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);">
<img src="assets/icons/service-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/service-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Service Management</p> font-size: 1.2rem; margin-bottom: 2px;">Service
Management</p>
<p>Keep track of services and invoice</p> <p>Keep track of services and invoice</p>
</div> </div>
</div> </div>
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; ">
<img src="assets/icons/restaurant-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/restaurant-black.png"
width="42px" height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Restaurant</p> font-size: 1.2rem; margin-bottom: 2px;">
Restaurant</p>
<p>Run your bar or restaurant methodically</p> <p>Run your bar or restaurant methodically</p>
</div> </div>
</div> </div>
<div class="col-md-3 col-sm-6 p-0"> <div class="col-md-3 col-sm-6 p-0">
<div class="d-flex flex-column h-100" <div class="d-flex flex-column h-100"
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);">
<img src="assets/icons/hotel-black.png" width="42px" height="auto" alt=""> <img src="assets/icons/hotel-black.png" width="42px"
height="auto" alt="">
<p style="color: #714B67;font-weight: 600; margin-top: 10px; <p style="color: #714B67;font-weight: 600; margin-top: 10px;
font-size: 1.2rem; margin-bottom: 2px;">Hotel Management</p> font-size: 1.2rem; margin-bottom: 2px;">Hotel
Management</p>
<p>An all-inclusive hotel management application</p> <p>An all-inclusive hotel management application</p>
</div> </div>
</div> </div>
@ -691,7 +906,9 @@
</div> </div>
<div class="container mt-5"> <div class="container mt-5">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5">
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Support</p> <p class="m-0"
style="font-weight: 600; font-size: 24px; color:#000 !important">
Support</p>
</div> </div>
</div> </div>
<div class="container my-5"> <div class="container my-5">
@ -700,13 +917,17 @@
style="border-right: 1px solid #D9D9D9;"> style="border-right: 1px solid #D9D9D9;">
<div style="padding: 30px;"> <div style="padding: 30px;">
<div class="d-flex align-items-center"> <div class="d-flex align-items-center">
<img src="assets/misc/support (1) 1.svg" alt="" width="60px" style="margin-right: 12px;"> <img src="assets/misc/support (1) 1.svg" alt=""
width="60px" style="margin-right: 12px;">
<div style="padding: 0px 8px;"> <div style="padding: 0px 8px;">
<span <span
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need
Help?</span> Help?</span>
<p class="m-0" style="color:#718096;">Got questions or need help? Get in touch.</p> <p class="m-0" style="color:#718096;">Got
<div style="font-weight: 400;"><span><img src="assets/misc/support-email.svg" alt="" questions or need help? Get in touch.</p>
<div style="font-weight: 400;"><span><img
src="assets/misc/support-email.svg"
alt=""
width="18px" width="18px"
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com
</div> </div>
@ -717,14 +938,18 @@
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> <div class="col-md-6 pb-4 d-flex align-items-center justify-content-center">
<div style="padding: 30px;"> <div style="padding: 30px;">
<div class="d-flex align-items-center"> <div class="d-flex align-items-center">
<img src="assets/misc/whatsapp 1.svg" alt="" width="60px" style="margin-right: 12px;"> <img src="assets/misc/whatsapp 1.svg" alt=""
width="60px" style="margin-right: 12px;">
<div> <div>
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> <span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span>
<p class="m-0" style="color:#718096;">Say hi to us on WhatsApp!</p> <p class="m-0" style="color:#718096;">Say hi to
<div style="font-weight: 400; font-size: 16px;"><span><img src="assets/misc/phone.svg" us on WhatsApp!</p>
<div style="font-weight: 400; font-size: 16px;"><span><img
src="assets/misc/phone.svg"
alt="" width="14px" alt="" width="14px"
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 style="filter: invert(1); margin-right: 0.8rem;"></span>+91
99456767686</div> 99456767686
</div>
</div> </div>
</div> </div>
</div> </div>

29
mobile_service_shop/wizard/__init__.py

@ -1,23 +1,22 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from . import mobile_create_invoice from . import mobile_create_invoice

67
mobile_service_shop/wizard/mobile_create_invoice.py

@ -1,49 +1,49 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################# ###############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Vishnu KP @ Cybrosys, (odoo@cybrosys.com) # Author: Vishnu KP S (odoo@cybrosys.com)
# #
# You can modify it under the terms of the GNU AFFERO # This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # It is forbidden to publish, distribute, sublicense, or sell copies of the
# Software or modified copies of the Software.
# #
# This program is distributed in the hope that it will be useful, # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# but WITHOUT ANY WARRANTY; without even the implied warranty of # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # 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.
# #
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE ###############################################################################
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import fields, models, _ from odoo import fields, models, _
from odoo.exceptions import UserError from odoo.exceptions import UserError
class MobileInvoice(models.Model): class MobileInvoice(models.Model):
_name = 'mobile.invoice' _name = 'mobile.invoice'
advance_payment_method = fields.Selection([('advance', 'Advance'), ('full_amount', 'Full amount')], advance_payment_method = fields.Selection(
[('advance', 'Advance'), ('full_amount', 'Full amount')],
string='Invoice method', default='advance') string='Invoice method', default='advance')
amount = fields.Integer(string='Amount') amount = fields.Integer(string='Amount', help="Payment Amount")
number = fields.Char(string='Service Id') number = fields.Char(string='Service Id', help="Payment service id'")
def action_invoice_create(self): def action_invoice_create(self):
"""Creating invoice""" """Creating invoice"""
active_id = self._context.get('active_id') active_id = self._context.get('active_id')
service_id = self.env['mobile.service'].search([('id', '=', active_id)]) service_id = self.env['mobile.service'].search([('id', '=', active_id)])
if not service_id.env['product.product'].search([("name", "=", "Mobile Service Advance")]): if not service_id.env['product.product'].search(
[("name", "=", "Mobile Service Advance")]):
vals = self._prepare_advance_product() vals = self._prepare_advance_product()
self.env['product.product'].create(vals) self.env['product.product'].create(vals)
if not service_id.env['product.product'].search(
if not service_id.env['product.product'].search([("name", "=", "Mobile Service Charge")]): [("name", "=", "Mobile Service Charge")]):
vals1 = self._prepare_service_product() vals1 = self._prepare_service_product()
self.env['product.product'].create(vals1) self.env['product.product'].create(vals1)
service_id.first_invoice_created = True service_id.first_invoice_created = True
inv_obj = self.env['account.move'] inv_obj = self.env['account.move']
supplier = service_id.person_name supplier = service_id.person_name
@ -60,17 +60,19 @@ class MobileInvoice(models.Model):
service_id.first_payment_inv = inv_id.id service_id.first_payment_inv = inv_id.id
self.number = service_id.name self.number = service_id.name
if self.advance_payment_method != 'advance': if self.advance_payment_method != 'advance':
product_id = service_id.env['product.product'].search([("name", "=", "Mobile Service Charge")]) product_id = service_id.env['product.product'].search(
[("name", "=", "Mobile Service Charge")])
else: else:
product_id = service_id.env['product.product'].search([("name", "=", "Mobile Service Advance")]) product_id = service_id.env['product.product'].search(
[("name", "=", "Mobile Service Advance")])
if product_id.property_account_income_id.id: if product_id.property_account_income_id.id:
income_account = product_id.property_account_income_id.id income_account = product_id.property_account_income_id.id
elif product_id.categ_id.property_account_income_categ_id.id: elif product_id.categ_id.property_account_income_categ_id.id:
income_account = product_id.categ_id.property_account_income_categ_id.id income_account = product_id.categ_id.property_account_income_categ_id.id
else: else:
raise UserError('Please define income account for this product: "%s" (id:%d).' % raise UserError(
(product_id.name, product_id.id)) _(f'Please define income account for this '
f'product: "{product_id.name}" (id:{product_id.id}).'))
flag = 0 flag = 0
if self.amount: if self.amount:
flag = 1 flag = 1
@ -88,11 +90,13 @@ class MobileInvoice(models.Model):
'invoice_line_ids': inv_line_data}) 'invoice_line_ids': inv_line_data})
inv_id._compute_journal_id() inv_id._compute_journal_id()
sale_order_product = self.env['product.order.line'].search([('product_order_id', '=', service_id.name)]) sale_order_product = self.env['product.order.line'].search(
[('product_order_id', '=', service_id.name)])
for line_data in sale_order_product: for line_data in sale_order_product:
qty = line_data.product_uom_qty - line_data.qty_invoiced qty = line_data.product_uom_qty - line_data.qty_invoiced
if line_data.product_uom_qty < line_data.qty_invoiced: if line_data.product_uom_qty < line_data.qty_invoiced:
raise UserError(_('Used quantity is less than invoiced quantity')) raise UserError(
_('Used quantity is less than invoiced quantity'))
uom_id = line_data.product_id.product_tmpl_id.uom_id uom_id = line_data.product_id.product_tmpl_id.uom_id
if qty > 0: if qty > 0:
flag = 1 flag = 1
@ -123,14 +127,15 @@ class MobileInvoice(models.Model):
'name': action.name, 'name': action.name,
'help': action.help, 'help': action.help,
'type': 'ir.actions.act_window', 'type': 'ir.actions.act_window',
'views': [[list_view_id, 'tree'], [form_view_id, 'form'], [False, 'graph'], [False, 'kanban'], 'views': [[list_view_id, 'tree'], [form_view_id, 'form'],
[False, 'graph'], [False, 'kanban'],
[False, 'calendar'], [False, 'pivot']], [False, 'calendar'], [False, 'pivot']],
'target': action.target, 'target': action.target,
'context': action.context, 'context': action.context,
'res_model': 'account.move', 'res_model': 'account.move',
} }
if len(inv_id) > 1: if len(inv_id) > 1:
result['domain'] = "[('id','in',%s)]" % inv_id.ids result['domain'] = f"[('id','in',{inv_id.ids})]"
elif len(inv_id) == 1: elif len(inv_id) == 1:
result['views'] = [(form_view_id, 'form')] result['views'] = [(form_view_id, 'form')]
result['res_id'] = inv_id.ids[0] result['res_id'] = inv_id.ids[0]

Loading…
Cancel
Save