2013-08-13 19:37:11 +02:00
|
|
|
{include="header"}
|
|
|
|
|
2013-09-17 00:03:26 +02:00
|
|
|
<h2>{if condition="$id != 0"}Edit{else}Add{/if} a bill</h2>
|
2013-08-13 19:37:11 +02:00
|
|
|
|
|
|
|
<form method="post" action="index.php?do=new_invoice" id="invoice_form">
|
2013-08-30 20:07:52 +02:00
|
|
|
<fieldset>
|
|
|
|
<legend>Expense</legend>
|
|
|
|
<p>
|
|
|
|
<label for="what">What ? </label>
|
|
|
|
</p>
|
|
|
|
<textarea name="what" id="what" rows="10">{$what_post}</textarea>
|
|
|
|
<p>
|
|
|
|
<label for="amount">Amount : </label>
|
|
|
|
<input type="text" name="amount" id="amount" {if condition="$amount_post != 0"} value="{$amount_post}" {/if} size="5"/> {$currency}
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<label for="date_day">Date : </label>
|
|
|
|
<select name="date_day" id="date_day">
|
|
|
|
{loop="days"}
|
|
|
|
<option value="{$value}" {if condition="$value == $day_post"}selected{/if}>{$value}</option>
|
|
|
|
{/loop}
|
|
|
|
</select> /
|
|
|
|
<select name="date_month" id="date_month" onchange="set_days_month_year();">
|
|
|
|
{loop="months"}
|
|
|
|
<option value="{$value}" {if condition="$value == $month_post"}selected{/if}>{$value}</option>
|
|
|
|
{/loop}
|
|
|
|
</select> /
|
|
|
|
<select name="date_year" id="date_year" onchange="set_days_month_year();">
|
|
|
|
{loop="years"}
|
|
|
|
<option value="{$value}" {if condition="$value == $year_post"}selected{/if}>{$value}</option>
|
|
|
|
{/loop}
|
|
|
|
</select>
|
|
|
|
<select name="date_hour" id="date_hour">
|
|
|
|
<option value="0" {if condition="$hour_post == 0"}selected{/if}>AM</option>
|
|
|
|
<option value="1" {if condition="$hour_post == 1"}selected{/if}>PM</option>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Users in ?</legend>
|
2013-08-13 19:37:11 +02:00
|
|
|
{loop="users"}
|
2013-09-08 16:29:55 +02:00
|
|
|
<input type="checkbox" name="users_in[]" value="{$value->getId()}" id="users_in_{$value->getId()}" {if condition="($current_user->getId() == $value->getId() && empty($users_in)) || in_array($value->getId(), array_keys($users_in))"} checked {/if}/> <label for="users_in_{$value->getId()}">{$value->getDisplayName()}</label> and <input type="text" name="guest_user_{$value->getId()}" id="guest_user_{$value->getId()}" size="1" {if condition="in_array($value->getId(), array_keys($users_in))"} value="{$users_in[$value->getId()]}" {else} value="0" {/if} onkeyup="guest_user_label({$value->getId()});"/><label for="guest_user_{$value->getId()}" id="guest_user_{$value->getId()}_label"> guest</label>.<br/>
|
2013-08-13 19:37:11 +02:00
|
|
|
{/loop}
|
2013-08-30 20:07:52 +02:00
|
|
|
</fieldset>
|
|
|
|
<p class="center">
|
2013-09-21 16:12:10 +02:00
|
|
|
<input type="submit" value="{if condition="$id != 0"}Edit{else}Add{/if}"/>
|
2013-08-17 19:16:16 +02:00
|
|
|
{if condition="$id != 0"}<input type="hidden" name="id" value="{$id}"/>{/if}
|
2013-08-25 23:06:47 +02:00
|
|
|
<input type="hidden" name="token" value="{$token}"/>
|
2013-08-13 19:37:11 +02:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{include="footer"}
|