168 lines
5.4 KiB
Python
168 lines
5.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Rattail -- Retail Software Framework
|
|
# Copyright © 2010-2016 Lance Edgar
|
|
#
|
|
# This file is part of Rattail.
|
|
#
|
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
|
# terms of the GNU Affero General Public License as published by the Free
|
|
# Software Foundation, either version 3 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# Rattail 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 Affero General Public License for
|
|
# more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with Rattail. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
################################################################################
|
|
"""
|
|
Views for maintaining vendor catalogs
|
|
"""
|
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
import logging
|
|
|
|
from rattail.db import model, api
|
|
from rattail.db.batch.vendorcatalog.handler import VendorCatalogHandler
|
|
from rattail.vendors.catalogs import iter_catalog_parsers
|
|
|
|
import formalchemy
|
|
|
|
from tailbone import forms
|
|
from tailbone.db import Session
|
|
from tailbone.views.batch import FileBatchMasterView
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class VendorCatalogsView(FileBatchMasterView):
|
|
"""
|
|
Master view for vendor catalog batches.
|
|
"""
|
|
model_class = model.VendorCatalog
|
|
batch_row_class = model.VendorCatalogRow
|
|
batch_handler_class = VendorCatalogHandler
|
|
url_prefix = '/vendors/catalogs'
|
|
|
|
def get_parsers(self):
|
|
if not hasattr(self, 'parsers'):
|
|
self.parsers = sorted(iter_catalog_parsers(), key=lambda p: p.display)
|
|
return self.parsers
|
|
|
|
def configure_grid(self, g):
|
|
g.joiners['vendor'] = lambda q: q.join(model.Vendor)
|
|
g.filters['vendor'] = g.make_filter('vendor', model.Vendor.name,
|
|
default_active=True, default_verb='contains')
|
|
g.sorters['vendor'] = g.make_sorter(model.Vendor.name)
|
|
|
|
g.configure(
|
|
include=[
|
|
g.created,
|
|
g.created_by,
|
|
g.vendor,
|
|
g.effective,
|
|
g.filename,
|
|
g.executed,
|
|
],
|
|
readonly=True)
|
|
|
|
def get_instance_title(self, batch):
|
|
return unicode(batch.vendor)
|
|
|
|
def configure_fieldset(self, fs):
|
|
fs.vendor.set(renderer=forms.renderers.VendorFieldRenderer)
|
|
fs.filename.set(label="Catalog File")
|
|
|
|
if self.creating:
|
|
parser_options = [(p.display, p.key) for p in self.get_parsers()]
|
|
parser_options.insert(0, ("(please choose)", ''))
|
|
fs.parser_key.set(renderer=formalchemy.fields.SelectFieldRenderer,
|
|
options=parser_options, label="File Type")
|
|
|
|
fs.configure(
|
|
include=[
|
|
fs.filename,
|
|
fs.parser_key,
|
|
fs.vendor,
|
|
])
|
|
|
|
else:
|
|
|
|
fs.configure(
|
|
include=[
|
|
fs.vendor.readonly(),
|
|
fs.filename,
|
|
fs.effective.readonly(),
|
|
fs.created,
|
|
fs.created_by,
|
|
fs.executed,
|
|
fs.executed_by,
|
|
])
|
|
|
|
batch = fs.model
|
|
if not batch.executed:
|
|
del fs.executed
|
|
del fs.executed_by
|
|
|
|
def configure_row_grid(self, g):
|
|
g.configure(
|
|
include=[
|
|
g.sequence,
|
|
g.upc.label("UPC"),
|
|
g.brand_name.label("Brand"),
|
|
g.description,
|
|
g.size,
|
|
g.vendor_code,
|
|
g.old_unit_cost.label("Old Cost"),
|
|
g.unit_cost.label("New Cost"),
|
|
g.unit_cost_diff.label("Diff."),
|
|
g.status_code,
|
|
],
|
|
readonly=True)
|
|
|
|
def row_grid_row_attrs(self, row, i):
|
|
attrs = {}
|
|
if row.status_code in (row.STATUS_NEW_COST, row.STATUS_UPDATE_COST):
|
|
attrs['class_'] = 'notice'
|
|
if row.status_code == row.STATUS_PRODUCT_NOT_FOUND:
|
|
attrs['class_'] = 'warning'
|
|
return attrs
|
|
|
|
def template_kwargs_create(self, **kwargs):
|
|
parsers = self.get_parsers()
|
|
for parser in parsers:
|
|
if parser.vendor_key:
|
|
vendor = api.get_vendor(Session(), parser.vendor_key)
|
|
if vendor:
|
|
parser.vendormap_value = "{{uuid: '{}', name: '{}'}}".format(
|
|
vendor.uuid, vendor.name.replace("'", "\\'"))
|
|
else:
|
|
log.warning("vendor '{}' not found for parser: {}".format(
|
|
parser.vendor_key, parser.key))
|
|
parser.vendormap_value = 'null'
|
|
else:
|
|
parser.vendormap_value = 'null'
|
|
kwargs['parsers'] = parsers
|
|
return kwargs
|
|
|
|
@classmethod
|
|
def defaults(cls, config):
|
|
|
|
# fix permission group title
|
|
config.add_tailbone_permission_group('vendorcatalogs', "Vendor Catalogs")
|
|
|
|
cls._filebatch_defaults(config)
|
|
cls._batch_defaults(config)
|
|
cls._defaults(config)
|
|
|
|
|
|
def includeme(config):
|
|
VendorCatalogsView.defaults(config)
|