Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.46 KB | None | 0 0
  1. <table style="width: 900px; height: 100px;  border: 3px" class='dashboard-dados'>
  2.         <tbody align=center>
  3.         <tr>
  4.             <td style=" width: 33.3%; color: <?php echo($Sum_Pedidos >= $Devia_Ter_Hoje) ? 'inherit' : 'red'; ?>;">
  5.                 <div ng-controller="GraficVocallCtrlVendas">
  6.                     <h2>VENDIDO</h2>
  7.                     <h3><small>R$</small> <?php echo number_format($Sum_Pedidos,2,',','.'); ?></h3>
  8.                     <div width="95%" ng-radial-gauge hide-graduation-details="1" bar-thickness="30" angle="100" ranges="ranges" value="value" money="money" value-unit="unit" precision="precision" lower-limit="lowerLimit" upper-limit="upperLimit"></div>
  9.                     <h3 style="margin-top: -25px;"><?php echo $Devia_Ter_Hoje ? number_format(($Sum_Pedidos / $Devia_Ter_Hoje) * 100,2,',','.') : 0; ?>%</h3>
  10.                 </div>
  11.             </td>
  12.             <td style=" width: 33.3%; color: <?php echo($Sum_Pedidos_ERP >= $Devia_Ter_Hoje) ? 'inherit' : 'red'; ?>;">
  13.                 <div ng-controller="GraficVocallCtrlVendasERP">
  14.                     <h2>VENDIDO ERP</h2>
  15.                     <h3><small>R$</small> <?php echo number_format($Sum_Pedidos_ERP,2,',','.'); ?></h3>
  16.                     <div width="95%" ng-radial-gauge hide-graduation-details="1" bar-thickness="30" angle="100" ranges="ranges" value="value" money="money" value-unit="unit" precision="precision" lower-limit="lowerLimit" upper-limit="upperLimit"></div>
  17.                     <h3 style="margin-top: -25px;"><?php echo $Devia_Ter_Hoje ? number_format(($Sum_Pedidos_ERP / $Devia_Ter_Hoje)*  100,2,',','.') : 0; ?>%</h3>
  18.                 </div>
  19.             </td>
  20.             <td style=" width: 33.3%; color: <?php echo($Sum_Faturas >= $Devia_Ter_Hoje) ? 'inherit' : 'red'; ?>;">
  21.                 <div ng-controller="GraficVocallCtrlFatura">
  22.                     <h2>FATURADO</h2>
  23.                     <h3><small>R$</small> <?php echo number_format($Sum_Faturas,2,',','.'); ?></h3>
  24.                     <div width="95%" ng-radial-gauge hide-graduation-details="1" bar-thickness="30" angle="100" ranges="ranges" value="value" money="money" value-unit="unit" precision="precision" lower-limit="lowerLimit" upper-limit="upperLimit"></div>
  25.                     <h3 style="margin-top: -25px;"><?php echo $Devia_Ter_Hoje ? number_format(($Sum_Faturas / $Devia_Ter_Hoje) * 100,2,',','.') : 0; ?>%</h3>
  26.                 </div>
  27.             </td>
  28.         </tr>
  29.         </tbody>
  30.     </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement