Browse Source

May 9 : [UPDT] License Updated 'multi_sms_gateway'

dependabot/npm_and_yarn/odoo_website_helpdesk/static/src/cdn/minimist-1.2.8
AjmalCybro 2 years ago
parent
commit
33a876817d
  1. 29
      multi_sms_gateway/__init__.py
  2. 33
      multi_sms_gateway/__manifest__.py
  3. 29
      multi_sms_gateway/models/__init__.py
  4. 29
      multi_sms_gateway/models/res_partner.py
  5. 29
      multi_sms_gateway/models/sms_connection_params.py
  6. 29
      multi_sms_gateway/models/sms_gateway.py
  7. 29
      multi_sms_gateway/models/sms_gateway_config.py
  8. 29
      multi_sms_gateway/models/sms_history.py
  9. 29
      multi_sms_gateway/wizard/__init__.py
  10. 29
      multi_sms_gateway/wizard/send_sms.py

29
multi_sms_gateway/__init__.py

@ -1,24 +1,23 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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 models from . import models
from . import wizard from . import wizard

33
multi_sms_gateway/__manifest__.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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': 'Multiple SMS Gateway Integration', 'name': 'Multiple SMS Gateway Integration',
'version': '16.0.1.0.0', 'version': '16.0.1.0.0',
@ -47,9 +46,7 @@
'wizard/send_sms_views.xml', 'wizard/send_sms_views.xml',
'views/multi_sms_gateway_menus.xml' 'views/multi_sms_gateway_menus.xml'
], ],
'license': 'OPL-1', 'license': 'AGPL-3',
# 'price': 4.99, # ToDo: Please update the price before publish
# 'currency': 'EUR',
'installable': True, 'installable': True,
'auto_install': False, 'auto_install': False,
'application': False 'application': False

29
multi_sms_gateway/models/__init__.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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 res_partner from . import res_partner
from . import sms_connection_params from . import sms_connection_params
from . import sms_gateway from . import sms_gateway

29
multi_sms_gateway/models/res_partner.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to send sms from the form view of partner. """ """ This module helps to send sms from the form view of partner. """
from odoo import models, _ from odoo import models, _

29
multi_sms_gateway/models/sms_connection_params.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to Connect SMS gateway. """ """ This module helps to Connect SMS gateway. """
from odoo import fields, models from odoo import fields, models

29
multi_sms_gateway/models/sms_gateway.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to add gateway providers. """ """ This module helps to add gateway providers. """
from odoo import fields, models from odoo import fields, models

29
multi_sms_gateway/models/sms_gateway_config.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to configure different SMS gateway. """ """ This module helps to configure different SMS gateway. """
from odoo import fields, models from odoo import fields, models

29
multi_sms_gateway/models/sms_history.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to see the history of all SMS send. """ """ This module helps to see the history of all SMS send. """
from odoo import fields, models from odoo import fields, models

29
multi_sms_gateway/wizard/__init__.py

@ -1,23 +1,22 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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 send_sms from . import send_sms

29
multi_sms_gateway/wizard/send_sms.py

@ -1,25 +1,24 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################### #############################################################################
# #
# Cybrosys Technologies Pvt. Ltd. # Cybrosys Technologies Pvt. Ltd.
# #
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) # Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com)
# #
# This program is under the terms of the Odoo Proprietary License v1.0 # You can modify it under the terms of the GNU AFFERO
# (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.
# #
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # This program is distributed in the hope that it will be useful,
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # but WITHOUT ANY WARRANTY; without even the implied warranty of
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER # GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
# 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/>.
#
#############################################################################
""" This module helps to add the sms details in the wizard and send SMS. """ """ This module helps to add the sms details in the wizard and send SMS. """
import messagebird import messagebird
import requests import requests

Loading…
Cancel
Save