added edit customer account type
This commit is contained in:
parent
19d60da919
commit
aae5b58d57
BIN
phpnuxbill.zip
Normal file
BIN
phpnuxbill.zip
Normal file
Binary file not shown.
@ -83,6 +83,16 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">{Lang::T('Account Type')}</label>
|
||||||
|
<div class="col-md-9">
|
||||||
|
<select class="form-control" id="service_type" name="service_type">
|
||||||
|
<option value="Personal" {if $d['account_type'] eq 'Personal' }selected{/if}>Personal
|
||||||
|
</option>
|
||||||
|
<option value="Business" {if $d['account_type'] eq 'Business' }selected{/if}>Business</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -88,6 +88,17 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">{Lang::T('Account Type')}</label>
|
||||||
|
<div class="col-md-9">
|
||||||
|
<select class="form-control" id="account_type" name="account_type">
|
||||||
|
<option value="Personal" {if $d['account_type'] eq 'Personal' }selected{/if}>Personal
|
||||||
|
</option>
|
||||||
|
<option value="Business" {if $d['account_type'] eq 'Business' }selected{/if}>Business</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{Lang::T('Username')}</th>
|
<th>{Lang::T('Username')}</th>
|
||||||
|
<th>{Lang::T('Account Type')}</th>
|
||||||
<th>{Lang::T('Full Name')}</th>
|
<th>{Lang::T('Full Name')}</th>
|
||||||
<th>{Lang::T('Balance')}</th>
|
<th>{Lang::T('Balance')}</th>
|
||||||
<th>{Lang::T('Phone Number')}</th>
|
<th>{Lang::T('Phone Number')}</th>
|
||||||
@ -52,6 +53,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td onclick="window.location.href = '{$_url}customers/view/{$ds['id']}'"
|
<td onclick="window.location.href = '{$_url}customers/view/{$ds['id']}'"
|
||||||
style="cursor:pointer;">{$ds['username']}</td>
|
style="cursor:pointer;">{$ds['username']}</td>
|
||||||
|
<td>{Lang::moneyFormat($ds['account_type'])}</td>
|
||||||
<td onclick="window.location.href = '{$_url}customers/view/{$ds['id']}'"
|
<td onclick="window.location.href = '{$_url}customers/view/{$ds['id']}'"
|
||||||
style="cursor: pointer;">{$ds['fullname']}</td>
|
style="cursor: pointer;">{$ds['fullname']}</td>
|
||||||
<td>{Lang::moneyFormat($ds['balance'])}</td>
|
<td>{Lang::moneyFormat($ds['balance'])}</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user