本文整理汇总了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 . '
//.........这里部分代码省略.........