Lines 13-68
Link Here
|
13 |
border-radius:25px; |
13 |
border-radius:25px; |
14 |
} |
14 |
} |
15 |
</style> |
15 |
</style> |
16 |
|
|
|
17 |
<div id="onboardingModal"> |
16 |
<div id="onboardingModal"> |
18 |
<span class="close">×</span><br><br> |
17 |
<span class="close">×</span><br><br> |
19 |
[% IF displayonboardscreen == "acquisitions" %] |
18 |
[% IF displayonboardscreen == "acquisitions" %] |
20 |
[% IF step == 2 %] |
|
|
21 |
<form action="/cgi-bin/koha/admin/aqbudgets.pl" id="edit_fund" name="Aform" method="post"> |
22 |
<fieldset class="rows"> |
23 |
<legend>[% IF ( budget_id ) %]Modify[% ELSE %]Add[% END %] Fund |
24 |
[% IF ( budget_period_description ) %] |
25 |
[% budget_name %] for Budget '[% budget_period_description %]' |
26 |
[% END %] |
27 |
</legend> |
28 |
<input type="hidden" name="op" value="add_validate" /> |
29 |
<input type="hidden" name="checked" value="0" /> |
30 |
<ol> |
31 |
[% IF ( budget_parent_id ) %] |
32 |
<li> |
33 |
<span class="label">Fund parent: </span> |
34 |
[% budget_parent_name %] |
35 |
[% budget_parent_id %] - [% budget_parent_name %] |
36 |
<input type="hidden" name="budget_parent_id" value="[% budget_parent_id %]" /> |
37 |
</li> |
38 |
[% END %] |
39 |
|
40 |
<li> |
41 |
<label class="required" for="budget_code">Fund code: </label> |
42 |
<input type="text" name="budget_code" id="budget_code" value="[% budget_code %]" size="30" /> |
43 |
</li> |
44 |
|
45 |
<li> |
46 |
<label class="required" for="budget_name">Fund name: </label> |
47 |
<input type="text" name="budget_name" id="budget_name" value="[% budget_name %]" size="60" /> |
48 |
</li> |
49 |
|
50 |
<li> |
51 |
<label style="white-space: nowrap;" for="budget_amount" class="required">Amount: </label> |
52 |
<input type="text" name="budget_amount" id="budget_amount" value="[% budget_amount | $Price on_editing => 1 %]" size="8" /> |
53 |
</li> |
54 |
|
55 |
<fieldset class="action"> |
56 |
<input type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/admin/aqbudgets.pl">Cancel</a> |
57 |
<input type="hidden" name="budget_period_id" value="[% budget_period_id %]" /> |
58 |
</fieldset> |
59 |
</form> |
60 |
|
61 |
[% ELSE %] |
62 |
<h2> Create a budget</h2> |
19 |
<h2> Create a budget</h2> |
63 |
<form action="/cgi-bin/koha/admin/aqbudgetperiods.pl" name="f" method="post"> |
20 |
<form action="/cgi-bin/koha/admin/aqbudgetperiods.pl" name="f" method="post"> |
64 |
<fieldset class="rows"> |
21 |
<fieldset class="rows"> |
65 |
<input type="hidden" name="op" value="add_validate" /> |
22 |
<input type="hidden" name="op" value="add_validate" /> |
|
|
23 |
<input type="hidden" name="step" value="2"/> |
66 |
<input type="hidden" name="budget_period_id" value="[% budget_period_id %]" /> |
24 |
<input type="hidden" name="budget_period_id" value="[% budget_period_id %]" /> |
67 |
<ol> |
25 |
<ol> |
68 |
<li> |
26 |
<li> |
Lines 93-112
Link Here
|
93 |
</li> |
51 |
</li> |
94 |
</ol> |
52 |
</ol> |
95 |
</fieldset> |
53 |
</fieldset> |
96 |
|
|
|
97 |
<fieldset class="action"> |
54 |
<fieldset class="action"> |
98 |
<a href = "/cgi-bin/koha/acqui/acqui-home.pl?step=2"> |
55 |
<a href = "/cgi-bin/koha/acqui/acqui-home.pl"> |
99 |
<input type="submit" class="action" value="Submit" /> |
56 |
<input type="submit" class="action" value="Submit" /> |
100 |
</a> |
57 |
</a> |
101 |
<a href="/cgi-bin/koha/admin/aqbudgetperiods.pl" class="cancel">Cancel</a> |
|
|
102 |
</fieldset> |
58 |
</fieldset> |
103 |
</form> |
59 |
</form> |
104 |
</div> |
60 |
</div> |
105 |
[% END %] |
61 |
[% ELSIF displayonboardscreen == "label" %] |
|
|
62 |
<h2>testing</h2> |
106 |
|
63 |
|
107 |
[% ELSIF displayonboardscreen == "label" %] |
|
|
108 |
|
64 |
|
109 |
|
65 |
|
110 |
|
66 |
|
111 |
<h2>testing</h2> |
67 |
[% END %] |
112 |
[% END %] |
|
|