From 0c97e2e0fe504da4014f046419811a7a253b3f17 Mon Sep 17 00:00:00 2001 From: djfiander Date: Wed, 30 Jul 2008 02:12:50 +0000 Subject: [PATCH] barest stub layout for receiving materials. No real content yet. git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@10182 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../oilsweb/oilsweb/controllers/acq/receiving.py | 19 ++++++++++++++++++ .../templates/oils/default/acq/receiving/base.html | 12 +++++++++++ .../oils/default/acq/receiving/process.html | 23 ++++++++++++++++++++++ .../oilsweb/templates/oils/default/menu.html | 13 ++++++++++++ 4 files changed, 67 insertions(+) create mode 100644 Open-ILS/web/oilsweb/oilsweb/controllers/acq/receiving.py create mode 100644 Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/base.html create mode 100644 Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/process.html diff --git a/Open-ILS/web/oilsweb/oilsweb/controllers/acq/receiving.py b/Open-ILS/web/oilsweb/oilsweb/controllers/acq/receiving.py new file mode 100644 index 0000000000..3c48da8617 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/controllers/acq/receiving.py @@ -0,0 +1,19 @@ +from oilsweb.lib.base import * +import logging, pylons +import oilsweb.lib.context, oilsweb.lib.util +import oilsweb.lib.bib +import oils.const, oils.utils.utils +import osrf.net_obj + +import simplejson + +from osrf.ses import ClientSession +from oils.event import Event +from oils.org import OrgUtil +from oilsweb.lib.request import RequestMgr + +class ReceivingController(BaseController): + + def process(self, **kwargs): + r = RequestMgr() + return r.render('acq/receiving/process.html') diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/base.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/base.html new file mode 100644 index 0000000000..9bd815d7e2 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/base.html @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +<%inherit file='../base.html'/> +<%def name='block_navigate()'> + + diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/process.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/process.html new file mode 100644 index 0000000000..fcb265403d --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/receiving/process.html @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- + +<%inherit file='base.html'/> +<%namespace file='../../common/jubgrid.html' name='jubgrid'/> + +<%def name="block_js()"> + ${parent.block_js()} + +<%def name="page_title()">${_('Receiving')} + +<%def name="block_content()"> + +
+
+

Receiving Processing

+
+
+ + + + diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/menu.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/menu.html index 324c4f87b1..fcae02e2e3 100644 --- a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/menu.html +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/menu.html @@ -48,6 +48,19 @@ + +
+ Receiving +
+
+ Receiving +
+
+
-- 2.11.0