Commit 253d0704 by 任天宇

优化

parent bb89702f
......@@ -593,7 +593,7 @@
this.Controls.Add(this.plLeft);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmMain";
this.Text = "样品入箱客户端 1.1(23.7.03 CP2101)";
this.Text = "样品入箱客户端 1.2(23.7.4 CP2101)";
this.Load += new System.EventHandler(this.FrmMain_Load);
this.plLeft.ResumeLayout(false);
this.gbInfo.ResumeLayout(false);
......
......@@ -283,6 +283,11 @@ namespace Kivii.Client.SamplePackages
private void samplePackaging(Sample sample)
{
if (sample == null) return;
if (_currentPackage == null) return;
if (_currentPackage.PackageName.IsNullOrEmpty())
{
_currentPackage.PackageName = cbSetCurrentPackageNode.Text;
}
var request = new SamplePackaging();
request.Package = _currentPackage;
request.Kvid = sample.Kvid;
......
......@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.4.2023.7030")]
[assembly: AssemblyFileVersion("5.4.2023.7030")]
[assembly: AssemblyVersion("5.4.2023.7040")]
[assembly: AssemblyFileVersion("5.4.2023.7040")]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment