optimize
wet 2 years ago
parent 9e0b3c08f5
commit 677ce92734

@ -2713,7 +2713,7 @@ namespace Myshipping.Application
if (order.PKGS!=null) { if (order.PKGS!=null) {
if (order.PKGS.ToString().Split('.').Count() > 1&&Convert.ToInt32(order.PKGS.ToString().Split('.')[1])>0) if (order.PKGS.ToString().Split('.').Count() > 1&&Convert.ToInt32(order.PKGS.ToString().Split('.')[1])>0)
{ {
value = string.Format("{0:F2}", order.PKGS); value = string.Format("{0:F3}", order.PKGS);
} }
else { else {
value = order.PKGS.ToString().Split('.')[0]; value = order.PKGS.ToString().Split('.')[0];
@ -2739,7 +2739,7 @@ namespace Myshipping.Application
{ {
if (order.KGS.ToString().Split('.').Count() > 1 && Convert.ToInt32(order.KGS.ToString().Split('.')[1]) > 0) if (order.KGS.ToString().Split('.').Count() > 1 && Convert.ToInt32(order.KGS.ToString().Split('.')[1]) > 0)
{ {
value = string.Format("{0:F2}", order.KGS); value = string.Format("{0:F3}", order.KGS);
} }
else else
{ {
@ -2767,7 +2767,7 @@ namespace Myshipping.Application
{ {
if (order.CBM.ToString().Split('.').Count() > 1 && Convert.ToInt32(order.CBM.ToString().Split('.')[1]) > 0) if (order.CBM.ToString().Split('.').Count() > 1 && Convert.ToInt32(order.CBM.ToString().Split('.')[1]) > 0)
{ {
value = string.Format("{0:F2}", order.CBM); value = string.Format("{0:F3}", order.CBM);
} }
else else
{ {

Loading…
Cancel
Save