當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CString::escreverValorMoeda方法代碼示例

本文整理匯總了PHP中CString::escreverValorMoeda方法的典型用法代碼示例。如果您正苦於以下問題:PHP CString::escreverValorMoeda方法的具體用法?PHP CString::escreverValorMoeda怎麽用?PHP CString::escreverValorMoeda使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CString的用法示例。


在下文中一共展示了CString::escreverValorMoeda方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ImpressaoReciboCP

    Public function ImpressaoReciboCP() {
	$Dados = new ModelLancaCpBd();

	$Dados = $InformacoesImpressao = $Dados->DadosLancamento($this->getCodLancamento());

	$StrDescricao = "<b>RECEBI DE </b>" . $this->getRazaoSocialClinica() . " </b><br><br>"
		. "<b>A IMPORTÂNCIA DE </b> " . parent::escreverValorMoeda($Dados->getValor()) . "</b><br><br> "
		. "<b>REFERENTE A </b>" . $Dados->getResumo() . ""
		. "";

	$HtmlPrimeiraVia = '

    <head>
	<meta charset="utf-8">
	<title>COMPROVANTE DE PAGAMENTO</title>
    </head>
    <body>
	<table cellspacing="0" cellpadding="0"  width="657"  border=1 style="border-collapse: collapse; font-size:9pt">
	    <tr>
		<td align=center> 
			<img src="' . $this->getLogoClinica() . '" width="200" height="80">
		</td>
		<td colspan=2> 
			
			
			<div align="center">
			<span style="font-size:9pt;" align="center" >
			  ' . $this->getCabecalho() . '
			</span>
			</div>	
		</td>
	    <tr>
	    <tr>
		<td align="center" bgcolor="#B7B6B6" colspan=3 style="font-size:9pt;">COMPROVANTE DE PAGAMENTO  - 1º VIA - VALOR(R$) ' . $Dados->getValor() . '</td>
	    <tr>

	   
	    </tr>
	    <tr>
		<td colspan=3 align="left" style="font-size:9pt">
		    <br><br><br><br><br><br>
		    ' . $StrDescricao . '
		    <br><br><br><br><br><br>
		</td>
	    </tr>	
	       <tr style="height:27.25pt" >
		<td colspan=1 align=center>	
			<strong><span style="font-size:08pt; ">CIDADE</span></strong>
		    <p style="margin-bottom:0pt; line-height:normal;">
		
			<span style="font-size:08pt">' . $this->getCidadeClinica() . ' / ' . $this->getUfClinica() . '-' . date('d/m/Y') . '</span>
		    </p>
		</td>
		<td colspan=2 align=center>
		    <p style="margin-bottom:0pt; line-height:normal;">
			<strong><span style="font-size:08pt; "> ASSINATURA</span></strong>
		    </p>
		    <p style="margin-bottom:0pt; line-height:normal;">
	
			<span style="font-size:08pt">----------------------------------------------------------------</span>
		    </p>
		</td>
	    </tr>
	</table>
	<div align=center  style="font-size:09pt";>
	</div>
    </body>';

	$HtmlSegundaVia = '

    <head>
	<meta charset="utf-8">
	<title>COMPROVANTE DE PAGAMENTO</title>
    </head>
    <body>
	<table cellspacing="0" cellpadding="0"  width="657"  border=1 style="border-collapse: collapse; font-size:10pt">
	    <tr>
		<td align=center> 
			<img src="' . $this->getLogoClinica() . '" width="200" height="80">
		</td>
		<td colspan=2> 
			
			
			<div align="center">
			<span style="font-size:10pt;" align="center" >
			   ' . $this->getCabecalho() . '
			</span>
			</div>	
		</td>
	    <tr>
	    <tr>
		<td align="center" bgcolor="#B7B6B6" colspan=3 style="font-size:10pt;">COMPROVANTE DE PAGAMENTO - 2º VIA  VALOR(R$)' . $Dados->getValor() . '</td>
	    <tr>

	   
	    </tr>
	    <tr>
		<td colspan=3 align="left" style="font-size:11pt">
		    <br><br><br><br><br><br>
		    ' . $StrDescricao . '
//.........這裏部分代碼省略.........
開發者ID:helbertfurbino,項目名稱:sgmofinanceiro,代碼行數:101,代碼來源:CImpressaoRecibo.php


注:本文中的CString::escreverValorMoeda方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。