Commit a3115014 LN

版本合并

1 个父辈 7c25a345
......@@ -16,7 +16,7 @@ namespace OnlineStore.AutoInOutStore
{
public class ResourceCulture
{
public static bool ShowLog = true ;
public static bool ShowLog = false ;
public static string China = "zh-CN";
public static string English = "en-US";
public static string German = "ge-DE";
......
......@@ -1787,6 +1787,10 @@ namespace OnlineStore.DeviceLibrary
op.msgCode = type;
op.msgParam = param;
op.msgData = new Dictionary<string, string>();
if (param == null)
{
param = new string[] { };
}
op.msgData.Add("zh", ResourceControl.GetStringByLan(ResourceControl.China, type, msg, param));
op.msgData.Add("en", ResourceControl.GetStringByLan(ResourceControl.English, type, msg, param));
op.msgData.Add("jp", ResourceControl.GetStringByLan(ResourceControl.Japanese, type, msg, param));
......
......@@ -454,10 +454,14 @@ namespace OnlineStore.DeviceLibrary
{
LastWidth = 13;
}
else
else if (IOManager.IOValue(IO_Type.WidthCheck1).Equals(IO_VALUE.HIGH))
{
LastWidth = 7;
}
else
{
LastWidth = 13;
}
}
LastHeight = GetHeight();
BatchInStoreCount++;
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!