Zbiór zmian 966 dla trunk/eCard/eCardMVC/Platnosci
- Data:
- 2009-12-22 14:03:36 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC/Platnosci
- Pliki:
-
- 2 zmodyfikowane
-
Controllers/PlatnoscController.cs (zmodyfikowane) (1 diff)
-
Models/FunkcjePlatnosci.cs (zmodyfikowane) (1 diff)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci/Controllers/PlatnoscController.cs
r957 r966 129 129 public ActionResult Status() 130 130 { 131 131 132 var potwierdzenie = new PotwierdzeniaEcard(); 132 133 var content = new ContentResult(); -
trunk/eCard/eCardMVC/Platnosci/Models/FunkcjePlatnosci.cs
r958 r966 42 42 { 43 43 var brutto = String.Format("{0:0.00}", kwota.ToString().Replace(",", ".")) + " PLN "; 44 45 if (!String.IsNullOrEmpty(miano)) 46 if (waluta > 0 && miano.ToUpper() != "PLN") 47 brutto += "(" + (waluta.ToString()).Replace(",", ".") + " " + miano.ToUpper() + ")"; 44 48 45 if (waluta > 0 && (miano != "" || miano.ToUpper() != "PLN"))46 brutto += "(" + (waluta.ToString()).Replace(",", ".") + " " + miano.ToUpper() + ")";47 48 49 return brutto; 49 50 }
