sc 4 years ago
parent
commit
8c8eff0c94
  1. 11
      ConvertMoels/ProductTypeSQLConvert.cs

11
ConvertMoels/ProductTypeSQLConvert.cs

@ -19,7 +19,7 @@ namespace Audit.ConvertMoels
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{ {
string ProductType = System.Convert.ToString(value); string ProductType = System.Convert.ToString(value);
if (ProductType == "0")//类型0:染料,1:助剂,2:粉体助剂,3:液体染料,其它:未知 if (ProductType == "0")//类型0:染料,1:助剂,2:粉体助剂,其它:未知
{ {
return "染料"; return "染料";
} }
@ -37,14 +37,7 @@ namespace Audit.ConvertMoels
} }
else else
{ {
if (ProductType == "3") return "未知类型";
{
return "液体染料";
}
else
{
return "未知类型";
}
} }
} }
} }

Loading…
Cancel
Save