2025-01-12 00:22:08 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Wutta-COREPOS -- Wutta Framework integration for CORE-POS
|
|
|
|
# Copyright © 2024 Lance Edgar
|
|
|
|
#
|
|
|
|
# This file is part of Wutta Framework.
|
|
|
|
#
|
|
|
|
# Wutta Framework is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by the Free
|
|
|
|
# Software Foundation, either version 3 of the License, or (at your option) any
|
|
|
|
# later version.
|
|
|
|
#
|
|
|
|
# Wutta Framework is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
# more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# Wutta Framework. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
CORE-POS Handler
|
|
|
|
"""
|
|
|
|
|
|
|
|
from wuttjamaican.app import GenericHandler
|
|
|
|
|
|
|
|
|
|
|
|
class CoreposHandler(GenericHandler):
|
|
|
|
"""
|
|
|
|
Base class and default implementation for the CORE-POS integration
|
|
|
|
:term:`handler`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_office_url(self, require=False):
|
|
|
|
"""
|
|
|
|
Returns the base URL for the CORE Office web app.
|
|
|
|
|
|
|
|
Note that the return value is stripped of final slash.
|
2025-01-12 01:10:52 -06:00
|
|
|
|
|
|
|
:param require: If true, an error is raised when URL cannot be
|
|
|
|
determined.
|
|
|
|
|
|
|
|
:returns: URL as string.
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
url = self.config.get('corepos.office.url', require=require)
|
|
|
|
if url:
|
|
|
|
return url.rstrip('/')
|
|
|
|
|
|
|
|
def get_office_department_url(
|
|
|
|
self,
|
2025-01-12 01:10:52 -06:00
|
|
|
dept_id,
|
2025-01-12 00:22:08 -06:00
|
|
|
office_url=None,
|
2025-01-12 01:10:52 -06:00
|
|
|
require=False):
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
Returns the CORE Office URL for a Department.
|
2025-01-12 01:10:52 -06:00
|
|
|
|
|
|
|
:param dept_id: Department ID for the URL.
|
|
|
|
|
|
|
|
:param office_url: Root URL from :meth:`get_office_url()`.
|
|
|
|
|
|
|
|
:param require: If true, an error is raised when URL cannot be
|
|
|
|
determined.
|
|
|
|
|
|
|
|
:returns: URL as string.
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
if not office_url:
|
|
|
|
office_url = self.get_office_url(require=require)
|
|
|
|
if office_url:
|
2025-01-12 01:10:52 -06:00
|
|
|
return f'{office_url}/item/departments/DepartmentEditor.php?did={dept_id}'
|
2025-01-12 00:22:08 -06:00
|
|
|
|
|
|
|
def get_office_likecode_url(
|
|
|
|
self,
|
2025-01-12 01:10:52 -06:00
|
|
|
likecode_id,
|
2025-01-12 00:22:08 -06:00
|
|
|
office_url=None,
|
2025-01-12 01:10:52 -06:00
|
|
|
require=False):
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
Returns the CORE Office URL for a Like Code.
|
2025-01-12 01:10:52 -06:00
|
|
|
|
|
|
|
:param likecode_id: Like Code ID for the URL.
|
|
|
|
|
|
|
|
:param office_url: Root URL from :meth:`get_office_url()`.
|
|
|
|
|
|
|
|
:param require: If true, an error is raised when URL cannot be
|
|
|
|
determined.
|
|
|
|
|
|
|
|
:returns: URL as string.
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
if not office_url:
|
|
|
|
office_url = self.get_office_url(require=require)
|
|
|
|
if office_url:
|
2025-01-12 01:10:52 -06:00
|
|
|
return f'{office_url}/item/likecodes/LikeCodeEditor.php?start={likecode_id}'
|
2025-01-12 00:22:08 -06:00
|
|
|
|
|
|
|
def get_office_product_url(
|
|
|
|
self,
|
|
|
|
upc,
|
|
|
|
office_url=None,
|
2025-01-12 01:10:52 -06:00
|
|
|
require=False):
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
Returns the CORE Office URL for a Product.
|
2025-01-12 01:10:52 -06:00
|
|
|
|
|
|
|
:param upc: UPC for the URL.
|
|
|
|
|
|
|
|
:param office_url: Root URL from :meth:`get_office_url()`.
|
|
|
|
|
|
|
|
:param require: If true, an error is raised when URL cannot be
|
|
|
|
determined.
|
|
|
|
|
|
|
|
:returns: URL as string.
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
if not office_url:
|
|
|
|
office_url = self.get_office_url(require=require)
|
|
|
|
if office_url:
|
|
|
|
return f'{office_url}/item/ItemEditorPage.php?searchupc={upc}'
|
|
|
|
|
|
|
|
def get_office_vendor_url(
|
|
|
|
self,
|
2025-01-12 01:10:52 -06:00
|
|
|
vend_id,
|
2025-01-12 00:22:08 -06:00
|
|
|
office_url=None,
|
2025-01-12 01:10:52 -06:00
|
|
|
require=False):
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
Returns the CORE Office URL for a Vendor.
|
2025-01-12 01:10:52 -06:00
|
|
|
|
|
|
|
:param vend_id: Vendor ID for the URL.
|
|
|
|
|
|
|
|
:param office_url: Root URL from :meth:`get_office_url()`.
|
|
|
|
|
|
|
|
:param require: If true, an error is raised when URL cannot be
|
|
|
|
determined.
|
|
|
|
|
|
|
|
:returns: URL as string.
|
2025-01-12 00:22:08 -06:00
|
|
|
"""
|
|
|
|
if not office_url:
|
|
|
|
office_url = self.get_office_url(require=require)
|
|
|
|
if office_url:
|
2025-01-12 01:10:52 -06:00
|
|
|
return f'{office_url}/item/vendors/VendorIndexPage.php?vid={vend_id}'
|