From: erickson Date: Thu, 7 Feb 2008 22:06:26 +0000 (+0000) Subject: adding some new files X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6a2a33e0764a9568fa2da72a54a76996ce5c9339;p=Evergreen.git adding some new files git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8695 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund.html new file mode 100644 index 0000000000..b18f9a9bc0 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund.html @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- + +<%inherit file='../base.html'/> +<%namespace file='../../common/widgets.html' name='widget'/> +<%def name="page_title()">${_('Create Fund')} +<%def name="block_content()"> + +
+ + + + + + + + + + + + + + + + + + +
${_('Fund Name')} + +
${_('Fund Onwer')} + ${widget.org_select( + c.oils.acq.fund_org_.cgi_name, + c.oils.core.perm_tree['CREATE_FUND'], c.oils.core.workstation.id(), + c.oils.util.get_min_org_depth(c.oils.core.high_perm_orgs['CREATE_FUND']))} +
${_('Fund Year')} + +
+ +
+
+ diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html new file mode 100644 index 0000000000..4f08a49315 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/create_fund_allocation.html @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- + +<%inherit file='../base.html'/> +<%namespace file='../../common/widgets.html' name='widget'/> +<%def name="page_title()">${_('Create Fund Allocation')} +<%def name="block_content()"> + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
${_('Fund')} + + ${c.oils.acq.fund.name()} + ${c.oils.acq.fund.org().shortname()} +
${_('Fund Source')} + +
${_('Allocation Amount')} + +
${_('Allocation Percent')} + +
${_('Note')} + +
+ +
+
+ diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html new file mode 100644 index 0000000000..69c195b74a --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funds.html @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +<%inherit file='../base.html'/> +<%namespace file='../../common/widgets.html' name='widget'/> +<%def name="page_title()">${_('Funds')} +<%def name="block_content()"> + + + + + + + + + + + + % for fund in c.oils.acq.fund_list: + + + + + + + %endfor + +
${_('Fund Name')}${_('Fund Owner')}${_('Fund Year')}${_('Fund Balance')}
${fund.name()}${fund.org().name()}${fund.year()}${fund.summary()['combined_balance']}
+ diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund.html new file mode 100644 index 0000000000..1b936be235 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_fund.html @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +<%inherit file='../base.html'/> +<%namespace file='../../common/widgets.html' name='widget'/> +<%def name="page_title()">${_('View Fund')} +<%def name="block_content()"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
${_('Fund Name')}${c.oils.acq.fund.name()}
${_('Fund Onwer')}${c.oils.acq.fund.org().name()}
${_('Fund Year')}${c.oils.acq.fund.year()}
${_('Amount Allocated to this Fund')}${c.oils.acq.fund.summary()['allocation_total']}
${_('Fund Balance (Total - (Spent + Encumberances))')}${c.oils.acq.fund.summary()['combined_balance']}
${_('Fund Spent Balance (Total - Spent)')}${c.oils.acq.fund.summary()['spent_balance']}
${_('Total Debits (Spent + Encumbered)')}${c.oils.acq.fund.summary()['debit_total']}
${_('Total Spent')}${c.oils.acq.fund.summary()['spent_total']}
${_('Total Encumbered')}${c.oils.acq.fund.summary()['encumberance_total']}
+
+ ${_('Allocate Money')} +
+ diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/picklist/create.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/picklist/create.html new file mode 100644 index 0000000000..f6d7e612f6 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/picklist/create.html @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +<%inherit file='../base.html'/> +<%def name="page_title()">${_('Create Picklist')} +<%def name="block_content()"> + +
+ + + + + + + + + + +
${_('Picklist Name')} + +
+ +
+
+