Use an euro sign, fixes decimal
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
@model Estimate
|
@model Estimate
|
||||||
@using Yavsc.Helpers
|
@using Yavsc.Helpers
|
||||||
|
@using System.Globalization
|
||||||
@{
|
@{
|
||||||
Layout = null;
|
Layout = null;
|
||||||
var pro = Model.Query.PerformerProfile;
|
var pro = Model.Query.PerformerProfile;
|
||||||
@ -11,6 +12,7 @@
|
|||||||
var proaddrm = (proaddr!=null) ? proaddr.NewLinesWith(" - ") : null ;
|
var proaddrm = (proaddr!=null) ? proaddr.NewLinesWith(" - ") : null ;
|
||||||
}
|
}
|
||||||
\documentclass[french,11pt]{article}
|
\documentclass[french,11pt]{article}
|
||||||
|
\usepackage{eurosym}
|
||||||
\usepackage{babel}
|
\usepackage{babel}
|
||||||
\usepackage[T1]{fontenc}
|
\usepackage[T1]{fontenc}
|
||||||
\usepackage[utf8]{inputenc}
|
\usepackage[utf8]{inputenc}
|
||||||
@ -88,13 +90,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
% Liste des produits facturés : Désignation, prix
|
% Liste des produits facturés : Désignation, prix
|
||||||
|
@if (Model.Bill!=null) { foreach (CommandLine line in Model.Bill) {
|
||||||
@if (Model.Bill!=null) {
|
<text>\AjouterService{@line.Description}{@line.Count}{@line.UnitaryCost.ToString("F2",CultureInfo.InvariantCulture)}
|
||||||
foreach (CommandLine line in Model.Bill) {
|
</text>} }
|
||||||
<text>
|
|
||||||
\AjouterService {@line.Description} {@line.Count} {@line.UnitaryCost}
|
|
||||||
</text>
|
|
||||||
} }
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
@ -151,7 +149,7 @@ Facture n°\FactureNum
|
|||||||
|
|
||||||
\begin{center}
|
\begin{center}
|
||||||
\begin{tabular}{lrrr}
|
\begin{tabular}{lrrr}
|
||||||
\textbf{Désignation ~~~~~~} & \textbf{Prix unitaire} & \textbf{Quantité} & \textbf{Montant (EUR)} \\
|
\textbf{Désignation ~~~~~~} & \textbf{Prix unitaire} & \textbf{Quantité} & \textbf{Montant (\euro)} \\
|
||||||
\hline
|
\hline
|
||||||
\AfficheResultat{}
|
\AfficheResultat{}
|
||||||
\end{tabular}
|
\end{tabular}
|
||||||
|
Reference in New Issue
Block a user