|
|
|
@ -2713,7 +2713,7 @@ namespace Myshipping.Application
|
|
|
|
|
if (order.PKGS!=null) {
|
|
|
|
|
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 {
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
value = string.Format("{0:F2}", order.KGS);
|
|
|
|
|
value = string.Format("{0:F3}", order.KGS);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
@ -2767,7 +2767,7 @@ namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|