亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? a2b_entity_invoice_detail.php

?? asterisk用 的voip記費軟件
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
						<?php 	} ?>					</select>&nbsp;<input type="submit" class="form_input_button" name="submit" value="Update">					</form>					</td>            </tr>						<?php } ?>            <tr>              <td >&nbsp;</td>              <td >&nbsp;</td>            </tr>                    </table></td>      </tr>	         <tr>        <td valign="top"><table width="100%" align="left" cellpadding="0" cellspacing="0">   				<?php 				if (is_array($list_total_destination) && count($list_total_destination)>0)				{ 				?>				<tr>				<td colspan="5" align="center"> <b><?php echo gettext("Calls by Destination");?></b></font> </td>				</tr>			<tr class="invoice_subheading">              <td class="invoice_td" width="29%"><?php echo gettext("Destination");?> </td>              <td width="19%" class="invoice_td"><?php echo gettext("Duration");?> </td>			  <td width="20%" class="invoice_td"><?php echo gettext("Graphic");?> </td>			  <td width="11%" class="invoice_td"><?php echo gettext("Calls");?> </td>              <td width="21%" class="invoice_td" align="right"><?php echo gettext("Amount")." (".BASE_CURRENCY.")"; ?> </td>            </tr>			<?php  						$i=0;								foreach ($list_total_destination as $data){					$i=($i+1)%2;						$tmc = $data[1]/$data[3];								if ((!isset($resulttype)) || ($resulttype=="min")){  					$tmc = sprintf("%02d",intval($tmc/60)).":".sprintf("%02d",intval($tmc%60));						}else{									$tmc =intval($tmc);				}								if ((!isset($resulttype)) || ($resulttype=="min")){  						$minutes = sprintf("%02d",intval($data[1]/60)).":".sprintf("%02d",intval($data[1]%60));				}else{						$minutes = $data[1];				}				if ($mmax>0) 	$widthbar= intval(($data[1]/$mmax)*200); 					?>            <tr class="invoice_rows">              <td width="29%" class="invoice_td"><?php echo $data[0]?></td>              <td width="19%" class="invoice_td"><?php echo $minutes?> </td>			  <td width="20%" class="invoice_td"><img src="<?php echo Images_Path_Main ?>/sidenav-selected.gif" height="6" width="<?php echo $widthbar?>"> </td>			  <td width="11%" class="invoice_td"><?php echo $data[3]?> </td>              <td width="21%" align="right" class="invoice_td"><?php  display_2bill($data[2]) ?></td>            </tr>			<?php 	 }	 	 		 				if ((!isset($resulttype)) || ($resulttype=="min")){  				$total_tmc = sprintf("%02d",intval(($totalminutes/$totalcall)/60)).":".sprintf("%02d",intval(($totalminutes/$totalcall)%60));								$totalminutes = sprintf("%02d",intval($totalminutes/60)).":".sprintf("%02d",intval($totalminutes%60));			}else{				$total_tmc = intval($totalminutes/$totalcall);						}			 ?>   			 <tr >              <td width="29%" class="invoice_td">&nbsp;</td>              <td width="19%" class="invoice_td">&nbsp;</td>              <td width="20%" class="invoice_td">&nbsp; </td>			  <td width="11%" class="invoice_td">&nbsp; </td>			  <td width="21%" class="invoice_td">&nbsp; </td>			              </tr>            <tr class="invoice_subheading">              <td width="29%" class="invoice_td"><?php echo gettext("TOTAL");?> </td>              <td width="39%" class="invoice_td"colspan="2"><?php echo $totalminutes?></td>			  			  <td width="11%" class="invoice_td"><?php echo $totalcall?> </td>              <td width="21%" align="right" class="invoice_td"><?php  display_2bill($totalcost - $totalcost_did) ?> </td>            </tr>              <tr>              <td width="29%">&nbsp;</td>              <td width="19%">&nbsp;</td>              <td width="20%">&nbsp; </td>			  <td width="11%">&nbsp; </td>			  <td width="21%">&nbsp; </td>			              </tr>					<?php } ?>  			<!-- Start Here ****************************************-->			<?php											$mmax=0;				$totalcall=0;				$totalminutes=0;				$totalcost_day=0;				if (is_array($list_total_day) && count($list_total_day)>0)				{				foreach ($list_total_day as $data){						if ($mmax < $data[1]) $mmax=$data[1];					$totalcall+=$data[3];					$totalminutes+=$data[1];					$totalcost_day+=$data[2];				}				?>				<tr>				<td colspan="5" align="center"><b><?php echo gettext("Calls by Date");?></b> </td>				</tr>			  <tr class="invoice_subheading">              <td class="invoice_td" width="29%"><?php echo gettext("Date");?> </td>              <td width="19%" class="invoice_td"><?php echo gettext("Duration");?> </td>			  <td width="20%" class="invoice_td"><?php echo gettext("Graphic");?> </td>			  <td width="11%" class="invoice_td"><?php echo gettext("Calls");?> </td>              <td width="21%" class="invoice_td" align="right"><?php echo gettext("Amount")." (".BASE_CURRENCY.")"; ?> </td>            </tr>			<?php  						$i=0;								foreach ($list_total_day as $data){					$i=($i+1)%2;						$tmc = $data[1]/$data[3];								if ((!isset($resulttype)) || ($resulttype=="min")){  					$tmc = sprintf("%02d",intval($tmc/60)).":".sprintf("%02d",intval($tmc%60));						}else{									$tmc =intval($tmc);				}								if ((!isset($resulttype)) || ($resulttype=="min")){  						$minutes = sprintf("%02d",intval($data[1]/60)).":".sprintf("%02d",intval($data[1]%60));				}else{						$minutes = $data[1];				}				if ($mmax>0) 	$widthbar= intval(($data[1]/$mmax)*200); 						?>            <tr class="invoice_rows">              <td width="29%" class="invoice_td"><?php echo $data[0]?></td>              <td width="19%" class="invoice_td"><?php echo $minutes?> </td>			  <td width="20%" class="invoice_td"><img src="<?php echo Images_Path_Main ?>/sidenav-selected.gif" height="6" width="<?php echo $widthbar?>"> </td>			  <td width="11%" class="invoice_td"><?php echo $data[3]?> </td>              <td width="21%" align="right" class="invoice_td"><?php  display_2bill($data[2]) ?></td>            </tr>			 <?php 	 }	 	 		 					if ((!isset($resulttype)) || ($resulttype=="min")){  					$total_tmc = sprintf("%02d",intval(($totalminutes/$totalcall)/60)).":".sprintf("%02d",intval(($totalminutes/$totalcall)%60));									$totalminutes = sprintf("%02d",intval($totalminutes/60)).":".sprintf("%02d",intval($totalminutes%60));				}else{					$total_tmc = intval($totalminutes/$totalcall);							}			 			 ?>               			 <tr >              <td width="29%" class="invoice_td">&nbsp;</td>              <td width="19%" class="invoice_td">&nbsp;</td>              <td width="20%" class="invoice_td">&nbsp; </td>			  <td width="11%" class="invoice_td">&nbsp; </td>			  <td width="21%" class="invoice_td">&nbsp; </td>			              </tr>            <tr class="invoice_subheading">              <td width="29%" class="invoice_td"><?php echo gettext("TOTAL");?> </td>              <td width="39%" class="invoice_td"colspan="2"><?php echo $totalminutes?></td>			  			  <td width="11%" class="invoice_td"><?php echo $totalcall?> </td>              <td width="21%" align="right" class="invoice_td"><?php  display_2bill($totalcost_day) ?> </td>            </tr>                       <tr >              <td width="29%">&nbsp;</td>              <td width="19%">&nbsp;</td>              <td width="20%">&nbsp; </td>			  <td width="11%">&nbsp; </td>			  <td width="21%">&nbsp; </td>			              </tr>				 <?php }?> 										<!-- END HERE ******************************************-->        </table>				</td>      </tr>      <?php       if (is_array($list_total_did) && count($list_total_did)>0)				{      ?>	   <tr>	  <td>	  <!------------------------ DID Billing Here Starts ----------------------->				<table width="100%" align="left" cellpadding="0" cellspacing="0">   				<tr>				<td colspan="5" align="center"><font></font> <b><?php echo gettext("DID Billing")?></b></td>				</tr>			<tr class="invoice_subheading">			  <td width="17%" class="invoice_td"><?php echo gettext("Charge Date")?> </td>              <td class="invoice_td" width="12%"><?php echo gettext("DID")?> </td>              <td width="14%" class="invoice_td"><?php echo gettext("Country")?> </td>			  <td width="40%" class="invoice_td"><?php echo gettext("Description")?> </td>			  			                <td width="17%" class="invoice_td" align="right"><?php echo gettext("Amount")." (".BASE_CURRENCY.")"; ?> </td>            </tr>			<?php  						$i=0;								$totaldidcost = 0;								foreach ($list_total_did as $data)				{						$totaldidcost = $totaldidcost + convert_currency($currencies_list, $data[0], $data[5], BASE_CURRENCY);						?>			 <tr class="invoice_rows">			 <td width="17%" class="invoice_td"><?php echo $data[1]?> </td>              <td width="12%" class="invoice_td">&nbsp;<?php echo $data[4]; ?></td>              <td width="14%" class="invoice_td">&nbsp;<?php echo $data[3]; ?> </td>  			  <td width="40%" class="invoice_td"><?php echo $data[2]?></td>			  			                <td width="17%" align="right" class="invoice_td"><?php  echo convert_currency($currencies_list, $data[0], $data[5], BASE_CURRENCY)." ".BASE_CURRENCY?></td>            </tr>			 <?php				}				$totalcost = $totalcost  + $totaldidcost;			 ?>   			 <tr >              <td width="17%" class="invoice_td">&nbsp;</td>              <td width="12%" class="invoice_td">&nbsp;</td>              <td width="14%" class="invoice_td">&nbsp; </td>			  <td width="40%" class="invoice_td">&nbsp; </td>			  			  <td width="17%" class="invoice_td">&nbsp; </td>			              </tr>            <tr class="invoice_subheading">              <td width="17%" class="invoice_td"><?php echo gettext("TOTAL");?> </td>              <td class="invoice_td" >&nbsp;</td>			  			  <td width="14%" class="invoice_td">&nbsp; </td>			  <td width="40%" class="invoice_td">&nbsp;</td>              <td width="17%" align="right" class="invoice_td"><?php  display_2bill($totaldidcost) ?> </td>            </tr> 		            <tr >              <td width="17%">&nbsp;</td>              <td width="12%">&nbsp;</td>              <td width="14%">&nbsp; </td>			  <td width="40%">&nbsp; </td>			  			  <td width="17%">&nbsp; </td>			              </tr>				</table>				<!------------------------DID Billing ENDS Here ----------------------------->	  </td>	  </tr>	  <?php			 			 }			 ?>	   <!------------------------Extra Charges Start Here ----------------------------->	  <?php  				$i=0;						$extracharge_total = 0;		if (is_array($list_total_charges) && count($list_total_charges)>0)		{						  ?>			  <tr>	  <td>	  	  <table width="100%" align="left" cellpadding="0" cellspacing="0">   				<tr>				<td colspan="4" align="center"><font></font> <b><?php echo gettext("Extra Charges")?></b></td>				</tr>			<tr class="invoice_subheading">              <td class="invoice_td" width="18%"><?php echo gettext("Date")?> </td>              <td width="15%" class="invoice_td"><?php echo gettext("Type")?> </td>			  			  <td width="12%" class="invoice_td"><?php echo gettext("Description")?> </td>  			                <td width="25%" class="invoice_td" align="right"><?php echo gettext("Amount")." (".BASE_CURRENCY.")"; ?> </td>            </tr>			<?php  								foreach ($list_total_charges as $data)			{				 	$extracharge_total = $extracharge_total + convert_currency($currencies_list,$data[3], $data[6], BASE_CURRENCY) ;					?>			 <tr class="invoice_rows">              <td width="18%" class="invoice_td"><?php echo $data[2]?></td>              <td width="15%" class="invoice_td"><?php 			  if($data[4] == 1) //connection setup charges				{					echo gettext("Setup Charges");				}				if($data[4] == 2) //DID Montly charges				{					echo gettext("DID Montly Use");				}				if($data[4] == 3) //Subscription fee charges				{					echo gettext("Subscription Fee");				}				if($data[4] == 4) //Extra Misc charges				{					echo gettext("Extra Charges");				}			  ?> </td>  			  <td width="10%" class="invoice_td"><?php  echo $data[7]; ?></td>			                <td width="25%" align="right" class="invoice_td"><?php echo convert_currency($currencies_list,$data[3], $data[6],BASE_CURRENCY)." ".BASE_CURRENCY ?></td>            </tr>			 <?php			  }			  //for loop end here			   ?>			 <tr >              <td width="18%" class="invoice_td">&nbsp;</td>              <td width="15%" class="invoice_td">&nbsp;</td>              <td width="13%" class="invoice_td">&nbsp; </td>			  			 			  <td width="25%" class="invoice_td">&nbsp; </td>			              </tr>            <tr class="invoice_subheading">              <td width="18%" class="invoice_td"><?php echo gettext("TOTAL");?> </td>              <td class="invoice_td" >&nbsp;</td>			  			  <td width="17%" class="invoice_td">&nbsp; </td>              <td width="25%" align="right" class="invoice_td"><?php echo display_2bill($extracharge_total) ?> </td>            </tr>			            <tr >              <td width="18%">&nbsp;</td>              <td width="15%">&nbsp;</td>              <td width="13%">&nbsp; </td>			  			  <td width="25%">&nbsp; </td>			              </tr>				</table>			  	  </td>	  </tr>	  <?php	   }	   //if check end here	   $totalcost = $totalcost + $extracharge_total;	   ?>	  <!------------------------Extra Charges End Here ----------------------------->	  	 <tr>	 <td>&nbsp;</td>	 </tr> 	 <tr class="invoice_subheading">	 <td  align="right" class="invoice_td"><?php echo gettext("Total");?> = <?php echo display_2bill($totalcost);?>&nbsp;</td>	 </tr>	 <tr class="invoice_subheading">	 <td  align="right" class="invoice_td"><?php echo gettext("VAT");?> = <?php 	 $prvat = ($vat / 100) * $totalcost;	 display_2bill($prvat);?>&nbsp;</td>	 </tr>	 <tr class="invoice_subheading">	 <td  align="right" class="invoice_td"><?php echo gettext("Grand Total");?> = <?php echo display_2bill($totalcost + $prvat);?>&nbsp;</td>	 </tr>	 <tr>	 <td>&nbsp;</td>	 </tr>	  <?php if ($exporttype != "pdf"){?>      <tr>        <td><table cellspacing="0" cellpadding="0">            <tr>              <td width="15%"><?php echo gettext("Status");?> :&nbsp; </td>             <td width="20%"><?php if($info_customer[0][12] == 't') {?>			  <img width="18" height="7" src="<?php echo Images_Path;?>/connected.gif">			  <?php }			  else			  {			  ?>			  <img width="18" height="7" src="<?php echo Images_Path;?>/terminated.gif">			  <?php }?></td>              <td width="65%"><img width="18" height="7" src="<?php echo Images_Path;?>/connected.gif">&nbsp;<?php echo gettext("Connected");?>&nbsp;&nbsp;&nbsp;			  <img width="22" height="7" src="<?php echo Images_Path;?>/terminated.gif">&nbsp; <?php echo gettext("DisConnected");?></td>            </tr>        </table></td>      </tr>      <tr>        <td><table width="100%" cellpadding="0" cellspacing="0">            <tr>              <td valign="top"><table width="400" height="22" align="left" cellpadding="0" cellspacing="0">                                  </table>                  <table cellpadding="0">                    <tr>                      <td>&nbsp;</td>                    </tr>                  </table>        </table></td>      </tr>	  <?php } ?>    </table><?php$smarty->display( 'footer.tpl');?>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国产精品99久久人人澡| 亚洲国产一区二区三区青草影视| 在线一区二区三区四区五区| 久久国产剧场电影| 日韩毛片精品高清免费| 久久日一线二线三线suv| 欧日韩精品视频| 成人午夜激情片| 精品一区二区三区蜜桃| 一区二区三区中文字幕在线观看| 国产午夜精品一区二区三区嫩草 | 久久99精品国产| 一区二区三区四区国产精品| 国产欧美一二三区| 欧美成人高清电影在线| 欧美嫩在线观看| 欧美制服丝袜第一页| 成人av在线一区二区三区| 久久99精品网久久| 免费看欧美女人艹b| 图片区小说区国产精品视频| 亚洲欧美一区二区不卡| 中文字幕精品一区二区精品绿巨人| 日韩欧美你懂的| 欧美一区午夜精品| 欧美日韩国产高清一区| 欧美日韩亚洲丝袜制服| 日本福利一区二区| 91视频免费观看| 99国产欧美另类久久久精品| www.在线成人| 99国产麻豆精品| 91麻豆国产福利在线观看| 成人免费高清视频在线观看| 国产成人午夜片在线观看高清观看| 国产一区三区三区| 国产一区三区三区| 国产传媒欧美日韩成人| 国产尤物一区二区| 国产精品一区二区三区乱码| 丰满少妇在线播放bd日韩电影| 国产成人免费av在线| 国产91富婆露脸刺激对白| va亚洲va日韩不卡在线观看| 99这里只有精品| 色爱区综合激月婷婷| 91国偷自产一区二区开放时间| 日本高清免费不卡视频| 欧美日韩久久久一区| 欧美一区二区在线不卡| ww久久中文字幕| 国产欧美日韩综合| 亚洲视频小说图片| 亚洲韩国精品一区| 另类成人小视频在线| 国产一区二区三区在线观看免费| 国产综合成人久久大片91| 粗大黑人巨茎大战欧美成人| 91看片淫黄大片一级| 欧美日韩精品系列| 日韩欧美国产成人一区二区| 国产女人水真多18毛片18精品视频| 中文字幕视频一区| 亚洲成人福利片| 黄色资源网久久资源365| www.欧美色图| 欧美一区二区在线视频| 国产日韩三级在线| 亚洲资源在线观看| 麻豆精品一区二区| 不卡的av电影在线观看| 欧美日韩在线不卡| 久久久久久久久岛国免费| 亚洲三级在线免费| 麻豆精品在线观看| 99热在这里有精品免费| 欧美另类videos死尸| 精品国产123| 一区二区不卡在线视频 午夜欧美不卡在 | 成人av在线资源网| 欧美午夜精品免费| 国产午夜三级一区二区三| 亚洲一区二区三区中文字幕| 狠狠色狠狠色合久久伊人| 色8久久人人97超碰香蕉987| 精品国产污污免费网站入口 | 青青草精品视频| 成人不卡免费av| 91精品国产综合久久精品| 国产精品女主播av| 美日韩一区二区三区| 色综合久久88色综合天天| 精品国产乱子伦一区| 亚洲一区二区在线免费看| 国产一区二区美女诱惑| 欧美久久久一区| 亚洲色图视频免费播放| 国产九九视频一区二区三区| 欧美日本国产视频| 中文字幕日本乱码精品影院| 青草国产精品久久久久久| 91网上在线视频| 久久精品人人做| 日韩av电影天堂| 一本高清dvd不卡在线观看| 久久综合色婷婷| 丝袜美腿亚洲一区二区图片| 色哟哟亚洲精品| 国产蜜臀97一区二区三区| 狠狠色狠狠色综合| 3d动漫精品啪啪一区二区竹菊| 中文字幕一区不卡| 国产河南妇女毛片精品久久久| 日韩欧美不卡在线观看视频| 视频一区中文字幕| 精品视频在线免费观看| 亚洲美腿欧美偷拍| 99精品国产视频| 国产精品女人毛片| 国产精品自拍av| 精品少妇一区二区三区在线视频| 日韩成人免费看| 欧美一区二区三区喷汁尤物| 午夜精品国产更新| 欧美人与性动xxxx| 亚洲国产va精品久久久不卡综合| 91国产丝袜在线播放| 亚洲色欲色欲www在线观看| 国产成人精品免费| 国产精品乱码人人做人人爱| 国产精品亚洲а∨天堂免在线| 久久综合色8888| 国产福利不卡视频| 久久久久国产精品麻豆| 国产激情一区二区三区桃花岛亚洲| 欧美不卡在线视频| 黄一区二区三区| 亚洲乱码一区二区三区在线观看| 国产1区2区3区精品美女| 国产三级精品三级在线专区| 国产成人在线影院 | 中文字幕乱码亚洲精品一区| 成人在线综合网| 国产精品久久久久aaaa樱花 | 91精品在线一区二区| 免费看日韩a级影片| 精品福利视频一区二区三区| 国产久卡久卡久卡久卡视频精品| 在线观看网站黄不卡| 欧美精品一区二区三区蜜臀| 国产精品亚洲人在线观看| 国产精品色婷婷| 色综合久久中文综合久久牛| 一区二区三区精品在线| 欧美网站一区二区| 青青草97国产精品免费观看 | 成人h动漫精品一区二区| 国产精品三级av| 欧美性受xxxx| 久久精品国产一区二区三| 欧美经典一区二区三区| 一本高清dvd不卡在线观看 | 国产乱色国产精品免费视频| 国产精品美女久久久久久久| 欧美午夜精品免费| 久久爱www久久做| 国产精品妹子av| 精品视频在线免费| 国产精品一区二区不卡| 亚洲精品欧美在线| 精品久久久久99| 91国偷自产一区二区使用方法| 奇米亚洲午夜久久精品| 中文字幕中文字幕一区二区| 欧美精品99久久久**| 国产精品一区二区91| 亚洲国产精品影院| 国产三区在线成人av| 欧美日韩国产在线观看| 国产成人自拍网| 日本欧美一区二区在线观看| 中文字幕巨乱亚洲| 欧美一级午夜免费电影| 成人av动漫网站| 久久超碰97人人做人人爱| 亚洲免费av高清| 国产欧美一区二区在线| 91精品一区二区三区久久久久久| 成人app在线观看| 久久不见久久见免费视频1| 一区二区不卡在线播放| 国产精品网友自拍| 欧美一级爆毛片| 在线观看亚洲成人| 风流少妇一区二区| 久久国产精品色婷婷| 日韩精品亚洲专区| 一二三四社区欧美黄| 国产精品欧美一区二区三区| 日韩一区二区麻豆国产|