forked from kevinowino869/mitrobill
show prepaid or postpaid in list
This commit is contained in:
parent
c1f815535d
commit
5d16ff9484
@ -484,7 +484,6 @@
|
|||||||
"Current_Cycle": "Current Cycle",
|
"Current_Cycle": "Current Cycle",
|
||||||
"Additional_Cost": "Additional Cost",
|
"Additional_Cost": "Additional Cost",
|
||||||
"Remaining": "Remaining",
|
"Remaining": "Remaining",
|
||||||
"": "",
|
|
||||||
"Not_Found": "Not Found",
|
"Not_Found": "Not Found",
|
||||||
"Cash": "Cash",
|
"Cash": "Cash",
|
||||||
"Payment_not_found": "Payment not found",
|
"Payment_not_found": "Payment not found",
|
||||||
@ -492,19 +491,13 @@
|
|||||||
"Cache_cleared_successfully_": "Cache cleared successfully!",
|
"Cache_cleared_successfully_": "Cache cleared successfully!",
|
||||||
"Paid": "Paid",
|
"Paid": "Paid",
|
||||||
"Send_Message": "Send Message",
|
"Send_Message": "Send Message",
|
||||||
"Send_SMS_WA_Message": "Send SMS\/WA Message",
|
|
||||||
"Send_Bulk_SMS_WA_Message": "Send Bulk SMS\/WA Message",
|
|
||||||
"Send_Personal_Message": "Send Personal Message",
|
"Send_Personal_Message": "Send Personal Message",
|
||||||
"Send_Via": "Send Via",
|
"Send_Via": "Send Via",
|
||||||
"Compose_your_message___": "Compose your message...",
|
"Compose_your_message___": "Compose your message...",
|
||||||
"Use_placeholders_": "Use placeholders:",
|
"Use_placeholders_": "Use placeholders:",
|
||||||
"__name__": "[[name]]",
|
|
||||||
"Customer_Name": "Customer Name",
|
"Customer_Name": "Customer Name",
|
||||||
"__user_name__": "[[user_name]]",
|
|
||||||
"Customer_Username": "Customer Username",
|
"Customer_Username": "Customer Username",
|
||||||
"__phone__": "[[phone]]",
|
|
||||||
"Customer_Phone": "Customer Phone",
|
"Customer_Phone": "Customer Phone",
|
||||||
"__company_name__": "[[company_name]]",
|
|
||||||
"Your_Company_Name": "Your Company Name",
|
"Your_Company_Name": "Your Company Name",
|
||||||
"Message_Sent_Successfully": "Message Sent Successfully",
|
"Message_Sent_Successfully": "Message Sent Successfully",
|
||||||
"Send_Bulk_Message": "Send Bulk Message",
|
"Send_Bulk_Message": "Send Bulk Message",
|
||||||
@ -518,8 +511,9 @@
|
|||||||
"Account_Type": "Account Type",
|
"Account_Type": "Account Type",
|
||||||
"Coordinates": "Coordinates",
|
"Coordinates": "Coordinates",
|
||||||
"Latitude_and_Longitude_coordinates_for_map_must_be_separate_with_comma____": "Latitude and Longitude coordinates for map must be separate with comma ","",
|
"Latitude_and_Longitude_coordinates_for_map_must_be_separate_with_comma____": "Latitude and Longitude coordinates for map must be separate with comma ","",
|
||||||
"6_465422__3_406448": "6.465422, 3.406448",
|
|
||||||
"Customer_Geo_Location_Information": "Customer Geo Location Information",
|
"Customer_Geo_Location_Information": "Customer Geo Location Information",
|
||||||
"List": "List",
|
"List": "List",
|
||||||
"Lists": "Lists"
|
"Lists": "Lists",
|
||||||
|
"Single_Customer": "Single Customer",
|
||||||
|
"Bulk_Customers": "Bulk Customers"
|
||||||
}
|
}
|
@ -27,8 +27,8 @@
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<a href="{$_url}services/add" class="btn btn-primary btn-block"><i
|
<a href="{$_url}services/add" class="btn btn-primary btn-block"><i class="ion ion-android-add">
|
||||||
class="ion ion-android-add"> </i> {Lang::T('New Service Plan')}</a>
|
</i> {Lang::T('New Service Plan')}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
@ -50,10 +50,9 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{foreach $d as $ds}
|
{foreach $d as $ds}
|
||||||
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"{/if}>
|
||||||
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
|
||||||
<td class="headcol">{$ds['name_plan']}</td>
|
<td class="headcol">{$ds['name_plan']}</td>
|
||||||
<td>{$ds['plan_type']}</td>
|
<td>{$ds['plan_type']} {if $ds['prepaid'] != 'yes'}<b>Postpaid</b>{else}Prepaid{/if}</td>
|
||||||
<td>{$ds['typebp']}</td>
|
<td>{$ds['typebp']}</td>
|
||||||
<td>{$ds['name_bw']}</td>
|
<td>{$ds['name_bw']}</td>
|
||||||
<td>{Lang::moneyFormat($ds['price'])}</td>
|
<td>{Lang::moneyFormat($ds['price'])}</td>
|
||||||
@ -69,7 +68,10 @@
|
|||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
<td>{$ds['pool_expired']}{if $ds['list_expired']}{if $ds['pool_expired']} | {/if}{$ds['list_expired']}{/if}</td>
|
<td>{$ds['pool_expired']}{if $ds['list_expired']}
|
||||||
|
{if $ds['pool_expired']} |
|
||||||
|
{/if}{$ds['list_expired']}
|
||||||
|
{/if}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{$_url}services/edit/{$ds['id']}"
|
<a href="{$_url}services/edit/{$ds['id']}"
|
||||||
class="btn btn-info btn-xs">{Lang::T('Edit')}</a>
|
class="btn btn-info btn-xs">{Lang::T('Edit')}</a>
|
||||||
|
@ -49,15 +49,17 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{foreach $d as $ds}
|
{foreach $d as $ds}
|
||||||
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"
|
<tr {if $ds['enabled'] != 1}class="danger" title="disabled"{/if}>
|
||||||
{elseif $ds['prepaid'] != 'yes'}class="warning" title="Postpaid" {/if}>
|
|
||||||
<td>{$ds['name_plan']}</td>
|
<td>{$ds['name_plan']}</td>
|
||||||
<td>{$ds['plan_type']}</td>
|
<td>{$ds['plan_type']} {if $ds['prepaid'] != 'yes'}<b>Postpaid</b>{else}Prepaid{/if}</td>
|
||||||
<td>{$ds['name_bw']}</td>
|
<td>{$ds['name_bw']}</td>
|
||||||
<td>{Lang::moneyFormat($ds['price'])}</td>
|
<td>{Lang::moneyFormat($ds['price'])}</td>
|
||||||
<td>{$ds['validity']} {$ds['validity_unit']}</td>
|
<td>{$ds['validity']} {$ds['validity_unit']}</td>
|
||||||
<td>{$ds['pool']}</td>
|
<td>{$ds['pool']}</td>
|
||||||
<td>{$ds['pool_expired']}{if $ds['list_expired']}{if $ds['pool_expired']} | {/if}{$ds['list_expired']}{/if}</td>
|
<td>{$ds['pool_expired']}{if $ds['list_expired']}
|
||||||
|
{if $ds['pool_expired']} |
|
||||||
|
{/if}{$ds['list_expired']}
|
||||||
|
{/if}</td>
|
||||||
<td>
|
<td>
|
||||||
{if $ds['is_radius']}
|
{if $ds['is_radius']}
|
||||||
<span class="label label-primary">RADIUS</span>
|
<span class="label label-primary">RADIUS</span>
|
||||||
@ -65,7 +67,8 @@
|
|||||||
{if $ds['routers']!=''}
|
{if $ds['routers']!=''}
|
||||||
<a href="{$_url}routers/edit/0&name={$ds['routers']}">{$ds['routers']}</a>
|
<a href="{$_url}routers/edit/0&name={$ds['routers']}">{$ds['routers']}</a>
|
||||||
{/if}
|
{/if}
|
||||||
{/if}</td>
|
{/if}
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{$_url}services/pppoe-edit/{$ds['id']}"
|
<a href="{$_url}services/pppoe-edit/{$ds['id']}"
|
||||||
class="btn btn-info btn-xs">{Lang::T('Edit')}</a>
|
class="btn btn-info btn-xs">{Lang::T('Edit')}</a>
|
||||||
|
@ -252,9 +252,9 @@
|
|||||||
</a>
|
</a>
|
||||||
<ul class="treeview-menu">
|
<ul class="treeview-menu">
|
||||||
<li {if $_routes[1] eq 'send' }class="active" {/if}><a
|
<li {if $_routes[1] eq 'send' }class="active" {/if}><a
|
||||||
href="{$_url}message/send">{Lang::T('Send SMS/WA Message')}</a></li>
|
href="{$_url}message/send">{Lang::T('Single Customer')}</a></li>
|
||||||
<li {if $_routes[1] eq 'send_bulk' }class="active" {/if}><a
|
<li {if $_routes[1] eq 'send_bulk' }class="active" {/if}><a
|
||||||
href="{$_url}message/send_bulk">{Lang::T('Send Bulk SMS/WA Message')}</a></li>
|
href="{$_url}message/send_bulk">{Lang::T('Bulk Customers')}</a></li>
|
||||||
{$_MENU_MESSAGE}
|
{$_MENU_MESSAGE}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user