Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
06394dc3e3 | ||
![]() |
70b103ebd8 | ||
![]() |
b96c828fa3 | ||
![]() |
1fb3ee10d0 | ||
![]() |
95f8ae318a |
|
@ -1,13 +1,9 @@
|
|||
.. -*- mode: rst -*-
|
||||
|
||||
rattail-tutorial
|
||||
================
|
||||
# rattail-tutorial
|
||||
|
||||
This project is intended for use as a "tutorial" for Rattail app development.
|
||||
|
||||
It contains documentation for the tutorial itself, but also contains
|
||||
code for the tutorial app, which users may run locally for testing.
|
||||
|
||||
See the `Rattail website`_ for more info.
|
||||
|
||||
.. _`Rattail website`: https://rattailproject.org/
|
||||
See the [Rattail website](https://rattailproject.org/) for more info.
|
|
@ -125,7 +125,7 @@ rattail-tutorial app instead, you should do this::
|
|||
|
||||
mkdir -p ~/src
|
||||
cd ~/src
|
||||
git clone https://rattailproject.org/git/rattail-tutorial.git
|
||||
git clone https://forgejo.wuttaproject.org/rattail/rattail-tutorial.git
|
||||
pip install -e rattail-tutorial
|
||||
|
||||
Creating the Project
|
||||
|
|
|
@ -8,7 +8,7 @@ build-backend = "hatchling.build"
|
|||
name = "rattail-tutorial"
|
||||
version = "0.3.1"
|
||||
description = "Rattail Development Tutorial"
|
||||
readme = "README.rst"
|
||||
readme = "README.md"
|
||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||
license = {text = "GNU GPL v3+"}
|
||||
classifiers = [
|
||||
|
@ -43,13 +43,17 @@ main = "rattail_tutorial.web.app:main"
|
|||
|
||||
|
||||
[project.entry-points."rattail.config.extensions"]
|
||||
rattail_tutorial = "rattail_tutorial.config:Rattail_tutorialConfig"
|
||||
rattail_tutorial = "rattail_tutorial.config:RattailTutorialConfig"
|
||||
|
||||
|
||||
[project.entry-points."rattail.emails"]
|
||||
rattail_tutorial = "rattail_tutorial.emails"
|
||||
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://rattailproject.org"
|
||||
repository = "https://kallithea.rattailproject.org/rattail-project/rattail-tutorial"
|
||||
Changelog = "https://kallithea.rattailproject.org/rattail-project/rattail-tutorial/files/master/CHANGELOG.md"
|
||||
repository = "https://forgejo.wuttaproject.org/rattail/rattail-tutorial"
|
||||
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-tutorial/src/branch/master/CHANGELOG.md"
|
||||
|
||||
|
||||
[tool.commitizen]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2019 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -24,10 +24,10 @@
|
|||
Custom config
|
||||
"""
|
||||
|
||||
from rattail.config import ConfigExtension
|
||||
from wuttjamaican.conf import WuttaConfigExtension
|
||||
|
||||
|
||||
class Rattail_tutorialConfig(ConfigExtension):
|
||||
class RattailTutorialConfig(WuttaConfigExtension):
|
||||
"""
|
||||
Rattail config extension for Rattail Tutorial
|
||||
"""
|
||||
|
@ -36,5 +36,4 @@ class Rattail_tutorialConfig(ConfigExtension):
|
|||
def configure(self, config):
|
||||
|
||||
# set some default config values
|
||||
config.setdefault('rattail.mail', 'emails', 'rattail_tutorial.emails')
|
||||
config.setdefault('tailbone', 'menus', 'rattail_tutorial.web.menus')
|
||||
config.setdefault('tailbone.menus.handler', 'rattail_tutorial.web.menus:TutorialMenuHandler')
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2019 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -26,9 +26,6 @@ Custom email profiles
|
|||
|
||||
from rattail.mail import Email
|
||||
|
||||
# bring in some common ones from rattail
|
||||
from rattail.emails import datasync_error_watcher_get_changes, filemon_action_error
|
||||
|
||||
|
||||
class rattail_import_sample_updates(Email):
|
||||
"""
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2019 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -24,166 +24,139 @@
|
|||
Web Menus
|
||||
"""
|
||||
|
||||
from tailbone import menus as base
|
||||
|
||||
def simple_menus(request):
|
||||
url = request.route_url
|
||||
|
||||
menus = [
|
||||
{
|
||||
class TutorialMenuHandler(base.MenuHandler):
|
||||
"""
|
||||
Demo menu handler
|
||||
"""
|
||||
|
||||
def make_menus(self, request, **kwargs):
|
||||
|
||||
products_menu = self.make_products_menu(request)
|
||||
|
||||
vendors_menu = self.make_vendors_menu(request)
|
||||
|
||||
company_menu = self.make_company_menu(request)
|
||||
|
||||
batches_menu = self.make_batches_menu(request)
|
||||
|
||||
admin_menu = self.make_admin_menu(request,
|
||||
include_stores=False,
|
||||
include_tenders=False)
|
||||
|
||||
menus = [
|
||||
products_menu,
|
||||
vendors_menu,
|
||||
company_menu,
|
||||
batches_menu,
|
||||
admin_menu,
|
||||
]
|
||||
|
||||
return menus
|
||||
|
||||
def make_products_menu(self, request, **kwargs):
|
||||
return {
|
||||
'title': "Products",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Products",
|
||||
'url': url('products'),
|
||||
'route': 'products',
|
||||
'perm': 'products.list',
|
||||
},
|
||||
{
|
||||
'title': "Brands",
|
||||
'url': url('brands'),
|
||||
'route': 'brands',
|
||||
'perm': 'brands.list',
|
||||
},
|
||||
{
|
||||
'title': "Report Codes",
|
||||
'url': url('reportcodes'),
|
||||
'route': 'reportcodes',
|
||||
'perm': 'reportcodes.list',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
}
|
||||
|
||||
def make_vendors_menu(self, request, **kwargs):
|
||||
return {
|
||||
'title': "Vendors",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Vendors",
|
||||
'url': url('vendors'),
|
||||
'route': 'vendors',
|
||||
'perm': 'vendors.list',
|
||||
},
|
||||
{'type': 'sep'},
|
||||
{
|
||||
'title': "Catalogs",
|
||||
'url': url('vendorcatalogs'),
|
||||
'route': 'vendorcatalogs',
|
||||
'perm': 'vendorcatalogs.list',
|
||||
},
|
||||
{
|
||||
'title': "Upload New Catalog",
|
||||
'url': url('vendorcatalogs.create'),
|
||||
'route': 'vendorcatalogs.create',
|
||||
'perm': 'vendorcatalogs.create',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
}
|
||||
|
||||
def make_company_menu(self, request, **kwargs):
|
||||
return {
|
||||
'title': "Company",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Stores",
|
||||
'url': url('stores'),
|
||||
'route': 'stores',
|
||||
'perm': 'stores.list',
|
||||
},
|
||||
{
|
||||
'title': "Departments",
|
||||
'url': url('departments'),
|
||||
'route': 'departments',
|
||||
'perm': 'departments.list',
|
||||
},
|
||||
{
|
||||
'title': "Subdepartments",
|
||||
'url': url('subdepartments'),
|
||||
'route': 'subdepartments',
|
||||
'perm': 'subdepartments.list',
|
||||
},
|
||||
{'type': 'sep'},
|
||||
{
|
||||
'title': "Employees",
|
||||
'url': url('employees'),
|
||||
'route': 'employees',
|
||||
'perm': 'employees.list',
|
||||
},
|
||||
{'type': 'sep'},
|
||||
{
|
||||
'title': "Customers",
|
||||
'url': url('customers'),
|
||||
'route': 'customers',
|
||||
'perm': 'customers.list',
|
||||
},
|
||||
{
|
||||
'title': "Customer Groups",
|
||||
'url': url('customergroups'),
|
||||
'route': 'customergroups',
|
||||
'perm': 'customergroups.list',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
}
|
||||
|
||||
def make_batches_menu(self, request, **kwargs):
|
||||
return {
|
||||
'title': "Batches",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Handheld",
|
||||
'url': url('batch.handheld'),
|
||||
'route': 'batch.handheld',
|
||||
'perm': 'batch.handheld.list',
|
||||
},
|
||||
{
|
||||
'title': "Inventory",
|
||||
'url': url('batch.inventory'),
|
||||
'route': 'batch.inventory',
|
||||
'perm': 'batch.inventory.list',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
'title': "Admin",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Users",
|
||||
'url': url('users'),
|
||||
'perm': 'users.list',
|
||||
},
|
||||
{
|
||||
'title': "User Events",
|
||||
'url': url('userevents'),
|
||||
'perm': 'userevents.list',
|
||||
},
|
||||
{
|
||||
'title': "Roles",
|
||||
'url': url('roles'),
|
||||
'perm': 'roles.list',
|
||||
},
|
||||
{'type': 'sep'},
|
||||
{
|
||||
'title': "App Settings",
|
||||
'url': url('appsettings'),
|
||||
'perm': 'settings.list',
|
||||
},
|
||||
{
|
||||
'title': "Email Settings",
|
||||
'url': url('emailprofiles'),
|
||||
'perm': 'emailprofiles.list',
|
||||
},
|
||||
{
|
||||
'title': "Email Attempts",
|
||||
'url': url('email_attempts'),
|
||||
'perm': 'email_attempts.list',
|
||||
},
|
||||
{
|
||||
'title': "Raw Settings",
|
||||
'url': url('settings'),
|
||||
'perm': 'settings.list',
|
||||
},
|
||||
{'type': 'sep'},
|
||||
{
|
||||
'title': "DataSync Changes",
|
||||
'url': url('datasyncchanges'),
|
||||
'perm': 'datasync.list',
|
||||
},
|
||||
{
|
||||
'title': "Tables",
|
||||
'url': url('tables'),
|
||||
'perm': 'tables.list',
|
||||
},
|
||||
{
|
||||
'title': "Rattail Tutorial Upgrades",
|
||||
'url': url('upgrades'),
|
||||
'perm': 'upgrades.list',
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
return menus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue