当前位置: 首页>>代码示例>>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;未经允许,请勿转载。