# -*- coding: utf-8; -*- ################################################################################ # # Wutta-COREPOS -- Wutta Framework integration for CORE-POS # Copyright © 2025 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 . # ################################################################################ """ 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. :param require: If true, an error is raised when URL cannot be determined. :returns: URL as string. """ url = self.config.get('corepos.office.url', require=require) if url: return url.rstrip('/') def get_office_department_url( self, dept_id, office_url=None, require=False): """ Returns the CORE Office URL for a Department. :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. """ if not office_url: office_url = self.get_office_url(require=require) if office_url: return f'{office_url}/item/departments/DepartmentEditor.php?did={dept_id}' def get_office_likecode_url( self, likecode_id, office_url=None, require=False): """ Returns the CORE Office URL for a Like Code. :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. """ if not office_url: office_url = self.get_office_url(require=require) if office_url: return f'{office_url}/item/likecodes/LikeCodeEditor.php?start={likecode_id}' def get_office_product_url( self, upc, office_url=None, require=False): """ Returns the CORE Office URL for a Product. :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. """ 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, vend_id, office_url=None, require=False): """ Returns the CORE Office URL for a Vendor. :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. """ if not office_url: office_url = self.get_office_url(require=require) if office_url: return f'{office_url}/item/vendors/VendorIndexPage.php?vid={vend_id}'