AnonSec Shell
Server IP : 162.214.74.102  /  Your IP : 216.73.216.192
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/leo/application/plugins/module_imobles/views/taskcustomer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/lrsys/www/lrsys_apps/leo/application/plugins/module_imobles/views/taskcustomer/add.tpl
<div class="wrapper wrapper-content" style="padding-bottom: 0;">

    {$title_action = $_L['module imobles task customer add']}
    {if (!empty($taskcustomers->id))}
        {$title_action = $_L['module imobles task customer edit']}
    {/if}

    {$can_edit = true}


    <div class="row">

        <div class="col-md-12">

            <div class="ibox float-e-margins">

                <div class="ibox-title">
                    <h5>{$title_action}</h5>
                    {if   $typeForm!='modal'}
                        <a href="{$_url}module_imobles/taskcustomer/listAll"
                           class="btn btn-xs btn-primary btn-rounded pull-right">
                            <i class="fa fa-bars"></i> {$_L['module imobles list task customer']}
                        </a>
                    {else}
                        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                    {/if}
                </div>

                <div class="ibox-content" id="ibox_form_taskcustomer">

                    <div class="alert alert-danger" id="emsg">
                        <span id="emsgbody"></span>
                    </div>

                    <form class="form-horizontal" id="form-taskcustomer" method="post" enctype="multipart/form-data"   >
                        <input name="id" id="id" type="hidden" value="{$taskcustomer->id}">

                        <!-- DADOS GERAIS -->
                        <div id="general_data" class="">



                            <div class="row">
                                <div class="col-sm-12 col-md-8">
                                    <label>
                                        {$_L['Customer']} {$_L['*']}
                                    </label>
                                    <select name="crm_account_id"  id="crm_account_id" class="select_filter form-control ">
                                        {if $clientSel}
                                            <option value="{$clientSel->id}" selected >{$clientSel->account}</option>
                                        {/if}
                                    </select>
                                </div>

                                <div class="col-sm-12 col-md-2">
                                    <label>
                                        {$_L['module imobles date start']}{$_L['*']}
                                    </label>
                                    <input type="text" id="start_date" name="start_date" class="form-control date" readonly
                                           datepicker data-date-format="{$_c['formatDate']}" data-auto-close="true"
                                           value="{if not empty($taskcustomer->date_init)}{date( $_c['df'], strtotime($taskcustomer->date_init))}{/if}">
                                </div>

                                <div class="col-sm-12 col-md-2">
                                    <label>
                                        {$_L['module imobles date end']}{$_L['*']}
                                    </label>
                                    <input type="text" id="date_end" name="date_end" class="form-control date" readonly
                                           datepicker data-date-format="{$_c['formatDate']}" data-auto-close="true"
                                           value="{if not empty($taskcustomer->date_end)}{date( $_c['df'], strtotime($taskcustomer->date_end))}{/if}">
                                </div>
                            </div>

                            <div class="row">
                                <div class="col-xs-12 col-md-2">
                                    <label class="control-label" for="title">    {$_L['Type']}</label>
                                    <select name="type" id="type" class="select_filter form-control select2">
                                        {* <option value=""> {$_L['Select']}</option> *}
                                        <option value="credit_repair" {if in_array('credit_repair',$typeSelected) }selected{/if}> {$_L['credit_repair']}</option>
                                        <option value="pre_sale" {if in_array('pre_sale',$typeSelected) }selected{/if}> {$_L['pre_sale'] }</option>
                                        <option value='sale' {if in_array('sale',$typeSelected) }selected{/if}> {$_L['sale']}</option>
                                        <option value="pos_sale" {if in_array('pos_sale',$typeSelected) }selected{/if}> {$_L['pos_sale']}</option>
                                    </select>
                                </div>
                                <div class="col-sm-12 col-md-5">
                                    <label class="control-label" for="title">{$_L['module imobles task_category name']} </label>
                                    <select name="module_imobles_task_category_id"  id="module_imobles_task_category_id" class="select_filter form-control ">
                                        {if not empty($categorySelected)}
                                            <option value="{$categorySelected->id}" selected> {$categorySelected->name}</option>
                                        {else}
                                            <option value=""> {$_L['Select']}</option>
                                        {/if}
                                    </select>

                                </div>

                                <div class="col-sm-12 col-md-5">
                                    <label class="control-label" for="title">
                                        {$_L['module imobles task name']} {$_L['*']}
                                    </label>
                                    <select name="module_imobles_tasks_id"  id="module_imobles_tasks_id" class=" select_filter form-control ">
                                        {if not empty($taskSelected)}
                                            <option value="{$taskSelected->id}" selected> {$taskSelected->title}</option>
                                        {else}
                                            <option value=""> {$_L['Select']}</option>
                                        {/if}
                                    </select>

                                </div>


                            </div>



                            <div class="row">

                                <div class="col-md-12 col-sm-12 col-xs-12">
                                    <label class="control-label" for="title">
                                        {$_L['module imobles task observations']} 
                                    </label> 
                                    <textarea class="form-control" name="details" id="details">
                                        {$taskcustomer->details}
                                    </textarea>
                                </div>

                                <div class="col-md-2 col-sm-12 col-xs-12">
                                    <label class=" control-label" >{$_L['module imobles task status']}</label>
                                    <select name="status" id="status" class="form-control select2">
                                        <option value="open" {if $taskcustomer->status == "open" }selected{/if}> {$_L['module imobles task open']}</option>
                                        <option value="finished_on_time" {if $taskcustomer->status == "finished_on_time" }selected{/if}> {$_L['module imobles task finished on time']}</option>
                                        <option value='finished_late' {if $taskcustomer->status == "finished_late" }selected{/if}> {$_L['module imobles task finished late']}</option>
                                    </select>
                                </div>


                            </div>
                        </div>  



                        <div class="row" style="margin-top:20px">
                            <div class=" col-md-12 form-group">
                                <div class="col-lg-10">
                                    <a href="#" class="md-btn md-btn-primary waves-effect waves-light" id="submit_taskcustomer">
                                        <i class="fa fa-check"></i> {$_L['Submit']}
                                    </a>
                                    {if   $typeForm!='modal'}
                                        | <a href="{$_url}module_imobles/taskcustomer/listAll">{$_L['Or Cancel']}</a>
                                    {/if}

                                </div>
                            </div>
                        </div>
                </div>

            </div>



        </div>

        </form>

    </div>

</div>

Anon7 - 2022
AnonSec Team