| Server IP : 162.214.74.102 / Your IP : 216.73.217.114 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/erp/application/plugins/module_billing/views/ |
Upload File : |
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
{if isset($cost_center->id)}
<h3>{$_L['Edit Cost Center']}</h3>
{else}
<h3>{$_L['Add New Cost Center']}</h3>
{/if}
</div>
<div class="modal-body">
<form class="form-horizontal" id="form_cost_center" method="post" action="{U}module_billing/cost_center/add_post">
<input type="hidden" name="id" value="{if isset($cost_center->id)}{$cost_center->id}{/if}">
<div class="row">
<div class="col-md-12 col-sm-12">
<label for="value" class="control-label">
{$_L['Name']}
<small class="red">*</small>
</label>
<input type="text" name="name" id="name" class="form-control"
value="{if isset($cost_center->name)}{$cost_center->name}{/if}">
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button class="btn btn-primary cost_center_submit" type="submit" id="modal_cost_center_submit">
{if isset($cost_center->id)}
<i class="fa fa-check"></i> {$_L['Edit Cost Center']}
{else}
<i class="fa fa-check"></i> {$_L['Add New Cost Center']}
{/if}
</button>
<a href="#" data-dismiss="modal"> | {$_L['or Cancel']}</a>
</div>