diff --git a/B3ButcherManageClient.sln b/B3ButcherManageClient.sln
index 8a12bf7..0f861a0 100644
--- a/B3ButcherManageClient.sln
+++ b/B3ButcherManageClient.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.25420.1
+# Visual Studio 15
+VisualStudioVersion = 15.0.27004.2002
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BO", "BO\BO.csproj", "{8968F14A-C7C7-4751-96CE-B114FBFD65EF}"
EndProject
@@ -33,6 +33,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SegmentationInStore", "Segm
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ByProductWeight", "ByProductWeight\ByProductWeight.csproj", "{C5696A7D-0BEB-474A-A478-FD0543E72ABF}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Distribution", "Distribution\Distribution.csproj", "{054F5E88-9AF0-430F-990E-17B8B268D59A}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -97,6 +99,10 @@ Global
{C5696A7D-0BEB-474A-A478-FD0543E72ABF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C5696A7D-0BEB-474A-A478-FD0543E72ABF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C5696A7D-0BEB-474A-A478-FD0543E72ABF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {054F5E88-9AF0-430F-990E-17B8B268D59A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {054F5E88-9AF0-430F-990E-17B8B268D59A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {054F5E88-9AF0-430F-990E-17B8B268D59A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {054F5E88-9AF0-430F-990E-17B8B268D59A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/BO/BO.csproj b/BO/BO.csproj
index 55f1f27..f08b947 100644
--- a/BO/BO.csproj
+++ b/BO/BO.csproj
@@ -87,6 +87,8 @@
+
+
diff --git a/BO/BO/LocalBO/LocalCustomer.cs b/BO/BO/LocalBO/LocalCustomer.cs
new file mode 100644
index 0000000..821114b
--- /dev/null
+++ b/BO/BO/LocalBO/LocalCustomer.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Forks.EnterpriseServices.DomainObjects2;
+
+namespace BO.BO.LocalBO
+{
+ [MapToTable("LocalCustomer")]
+ [KeyField("ID", KeyGenType.identity)]
+ public class LocalCustomer
+ {
+ public long ID { get; set; }
+ public long B3_ID { get; set; }
+ public long B3_Name { get; set; }
+ public long B3_Spell { get; set; }
+
+ }
+}
diff --git a/BO/BO/LocalBO/LocalSendLine.cs b/BO/BO/LocalBO/LocalSendLine.cs
new file mode 100644
index 0000000..84eb1f2
--- /dev/null
+++ b/BO/BO/LocalBO/LocalSendLine.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Forks.EnterpriseServices.DomainObjects2;
+
+namespace BO.BO.LocalBO
+{
+ [MapToTable("LocalSendLine")]
+ [KeyField("ID", KeyGenType.identity)]
+ public class LocalSendLine
+ {
+ public long ID { get; set; }
+ public long B3_ID { get; set; }
+ public long B3_Name { get; set; }
+ public long B3_Spell { get; set; }
+
+ }
+}
diff --git a/BO/BO/LocalSyncBase.cs b/BO/BO/LocalSyncBase.cs
index 1cd7d99..79e505b 100644
--- a/BO/BO/LocalSyncBase.cs
+++ b/BO/BO/LocalSyncBase.cs
@@ -8,6 +8,8 @@ using Forks.EnterpriseServices.DomainObjects2;
namespace BO.BO
{
+
+ //本地有数据库 并且需要同步的
[KeyField("ID", KeyGenType.identity)]
public abstract class LocalSyncBase
{
diff --git a/Distribution/Distribution.csproj b/Distribution/Distribution.csproj
new file mode 100644
index 0000000..9d85543
--- /dev/null
+++ b/Distribution/Distribution.csproj
@@ -0,0 +1,73 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {054F5E88-9AF0-430F-990E-17B8B268D59A}
+ Library
+ Properties
+ Distribution
+ Distribution
+ v4.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ DistributionForm.cs
+
+
+
+
+
+
+
+
+ DistributionForm.cs
+
+
+
+
+ {A782B23E-BE6D-4F51-B5CB-5CD259BA97CC}
+ BWP.WinFormControl
+
+
+
+
\ No newline at end of file
diff --git a/Distribution/DistributionForm.Designer.cs b/Distribution/DistributionForm.Designer.cs
new file mode 100644
index 0000000..c5d8d1e
--- /dev/null
+++ b/Distribution/DistributionForm.Designer.cs
@@ -0,0 +1,763 @@
+namespace Distribution
+{
+ partial class DistributionForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
+ this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+ this.splitContainer2 = new System.Windows.Forms.SplitContainer();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.enableWeight = new System.Windows.Forms.CheckBox();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.lblChengZhong = new System.Windows.Forms.Label();
+ this.btnWeightSet = new System.Windows.Forms.Button();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.rbtnXianLu = new System.Windows.Forms.RadioButton();
+ this.rbtnDanPin = new System.Windows.Forms.RadioButton();
+ this.btnSearch = new System.Windows.Forms.Button();
+ this.rbtnDanJIanJiZhong = new System.Windows.Forms.RadioButton();
+ this.rbtnXuanShuShuangJiLiang = new System.Windows.Forms.RadioButton();
+ this.rbtnGuDingShuLiang = new System.Windows.Forms.RadioButton();
+ this.txtGuDingShuLiang = new System.Windows.Forms.TextBox();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.label1 = new System.Windows.Forms.Label();
+ this.dateInput = new BWP.WinFormControl.UDatePicker();
+ this.label2 = new System.Windows.Forms.Label();
+ this.cbxSelectXianLu = new BWP.WinFormControl.UComboBox();
+ this.label3 = new System.Windows.Forms.Label();
+ this.cbxSelectCustomer = new BWP.WinFormControl.UComboBox();
+ this.dataGridViewSaleOutStore = new BWP.WinFormControl.UDataGridView();
+ this.btnRead = new System.Windows.Forms.Button();
+ this.btnPrint = new System.Windows.Forms.Button();
+ this.btnSendOver = new System.Windows.Forms.Button();
+ this.btnWeightRecord = new System.Windows.Forms.Button();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.label4 = new System.Windows.Forms.Label();
+ this.label5 = new System.Windows.Forms.Label();
+ this.label6 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.label8 = new System.Windows.Forms.Label();
+ this.lblCustomer = new System.Windows.Forms.Label();
+ this.label10 = new System.Windows.Forms.Label();
+ this.linkLabel1 = new System.Windows.Forms.LinkLabel();
+ this.linkLabel2 = new System.Windows.Forms.LinkLabel();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.panel6 = new System.Windows.Forms.Panel();
+ this.groupBox2 = new System.Windows.Forms.GroupBox();
+ this.dataGridViewDingHuo = new BWP.WinFormControl.UDataGridView();
+ this.dataGridViewFaHuo = new BWP.WinFormControl.UDataGridView();
+ this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
+ this.splitContainer1.Panel1.SuspendLayout();
+ this.splitContainer1.Panel2.SuspendLayout();
+ this.splitContainer1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
+ this.splitContainer2.Panel1.SuspendLayout();
+ this.splitContainer2.Panel2.SuspendLayout();
+ this.splitContainer2.SuspendLayout();
+ this.panel1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.panel3.SuspendLayout();
+ this.panel4.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSaleOutStore)).BeginInit();
+ this.panel5.SuspendLayout();
+ this.groupBox1.SuspendLayout();
+ this.groupBox2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDingHuo)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFaHuo)).BeginInit();
+ this.SuspendLayout();
+ //
+ // splitContainer1
+ //
+ this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
+ this.splitContainer1.Location = new System.Drawing.Point(0, 0);
+ this.splitContainer1.Name = "splitContainer1";
+ //
+ // splitContainer1.Panel1
+ //
+ this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
+ //
+ // splitContainer1.Panel2
+ //
+ this.splitContainer1.Panel2.Controls.Add(this.flowLayoutPanel1);
+ this.splitContainer1.Size = new System.Drawing.Size(1347, 728);
+ this.splitContainer1.SplitterDistance = 1074;
+ this.splitContainer1.SplitterWidth = 2;
+ this.splitContainer1.TabIndex = 0;
+ //
+ // splitContainer2
+ //
+ this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
+ this.splitContainer2.Location = new System.Drawing.Point(0, 0);
+ this.splitContainer2.Name = "splitContainer2";
+ //
+ // splitContainer2.Panel1
+ //
+ this.splitContainer2.Panel1.Controls.Add(this.btnSendOver);
+ this.splitContainer2.Panel1.Controls.Add(this.btnPrint);
+ this.splitContainer2.Panel1.Controls.Add(this.btnWeightRecord);
+ this.splitContainer2.Panel1.Controls.Add(this.btnRead);
+ this.splitContainer2.Panel1.Controls.Add(this.dataGridViewSaleOutStore);
+ this.splitContainer2.Panel1.Controls.Add(this.panel4);
+ this.splitContainer2.Panel1.Controls.Add(this.panel1);
+ //
+ // splitContainer2.Panel2
+ //
+ this.splitContainer2.Panel2.Controls.Add(this.panel6);
+ this.splitContainer2.Panel2.Controls.Add(this.groupBox2);
+ this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
+ this.splitContainer2.Panel2.Controls.Add(this.panel5);
+ this.splitContainer2.Size = new System.Drawing.Size(1074, 728);
+ this.splitContainer2.SplitterDistance = 478;
+ this.splitContainer2.SplitterWidth = 2;
+ this.splitContainer2.TabIndex = 0;
+ //
+ // panel1
+ //
+ this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel1.Controls.Add(this.btnSearch);
+ this.panel1.Controls.Add(this.rbtnDanPin);
+ this.panel1.Controls.Add(this.rbtnXianLu);
+ this.panel1.Controls.Add(this.panel3);
+ this.panel1.Controls.Add(this.enableWeight);
+ this.panel1.Controls.Add(this.panel2);
+ this.panel1.Controls.Add(this.btnWeightSet);
+ this.panel1.Location = new System.Drawing.Point(3, 3);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(470, 133);
+ this.panel1.TabIndex = 0;
+ //
+ // enableWeight
+ //
+ this.enableWeight.AutoCheck = false;
+ this.enableWeight.AutoSize = true;
+ this.enableWeight.Font = new System.Drawing.Font("宋体", 12F);
+ this.enableWeight.Location = new System.Drawing.Point(8, 98);
+ this.enableWeight.Name = "enableWeight";
+ this.enableWeight.Size = new System.Drawing.Size(91, 20);
+ this.enableWeight.TabIndex = 36;
+ this.enableWeight.Text = "启用称重";
+ this.enableWeight.UseVisualStyleBackColor = true;
+ //
+ // panel2
+ //
+ this.panel2.BackColor = System.Drawing.Color.Black;
+ this.panel2.Controls.Add(this.lblChengZhong);
+ this.panel2.Location = new System.Drawing.Point(8, 8);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(172, 78);
+ this.panel2.TabIndex = 35;
+ //
+ // lblChengZhong
+ //
+ this.lblChengZhong.AutoSize = true;
+ this.lblChengZhong.Font = new System.Drawing.Font("宋体", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.lblChengZhong.ForeColor = System.Drawing.Color.Red;
+ this.lblChengZhong.Location = new System.Drawing.Point(15, 18);
+ this.lblChengZhong.Name = "lblChengZhong";
+ this.lblChengZhong.Size = new System.Drawing.Size(97, 40);
+ this.lblChengZhong.TabIndex = 0;
+ this.lblChengZhong.Text = "0.00";
+ //
+ // btnWeightSet
+ //
+ this.btnWeightSet.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnWeightSet.Location = new System.Drawing.Point(105, 92);
+ this.btnWeightSet.Name = "btnWeightSet";
+ this.btnWeightSet.Size = new System.Drawing.Size(75, 30);
+ this.btnWeightSet.TabIndex = 34;
+ this.btnWeightSet.Text = "称设置";
+ this.btnWeightSet.UseVisualStyleBackColor = true;
+ //
+ // panel3
+ //
+ this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel3.Controls.Add(this.txtGuDingShuLiang);
+ this.panel3.Controls.Add(this.rbtnGuDingShuLiang);
+ this.panel3.Controls.Add(this.rbtnXuanShuShuangJiLiang);
+ this.panel3.Controls.Add(this.rbtnDanJIanJiZhong);
+ this.panel3.Location = new System.Drawing.Point(311, 0);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(156, 131);
+ this.panel3.TabIndex = 37;
+ //
+ // rbtnXianLu
+ //
+ this.rbtnXianLu.AutoSize = true;
+ this.rbtnXianLu.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.rbtnXianLu.Location = new System.Drawing.Point(210, 8);
+ this.rbtnXianLu.Name = "rbtnXianLu";
+ this.rbtnXianLu.Size = new System.Drawing.Size(74, 20);
+ this.rbtnXianLu.TabIndex = 38;
+ this.rbtnXianLu.TabStop = true;
+ this.rbtnXianLu.Text = "按线路";
+ this.rbtnXianLu.UseVisualStyleBackColor = true;
+ //
+ // rbtnDanPin
+ //
+ this.rbtnDanPin.AutoSize = true;
+ this.rbtnDanPin.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.rbtnDanPin.Location = new System.Drawing.Point(210, 52);
+ this.rbtnDanPin.Name = "rbtnDanPin";
+ this.rbtnDanPin.Size = new System.Drawing.Size(74, 20);
+ this.rbtnDanPin.TabIndex = 38;
+ this.rbtnDanPin.TabStop = true;
+ this.rbtnDanPin.Text = "按单品";
+ this.rbtnDanPin.UseVisualStyleBackColor = true;
+ //
+ // btnSearch
+ //
+ this.btnSearch.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnSearch.Location = new System.Drawing.Point(204, 92);
+ this.btnSearch.Name = "btnSearch";
+ this.btnSearch.Size = new System.Drawing.Size(80, 30);
+ this.btnSearch.TabIndex = 39;
+ this.btnSearch.Text = "查询";
+ this.btnSearch.UseVisualStyleBackColor = true;
+ //
+ // rbtnDanJIanJiZhong
+ //
+ this.rbtnDanJIanJiZhong.AutoSize = true;
+ this.rbtnDanJIanJiZhong.Location = new System.Drawing.Point(18, 11);
+ this.rbtnDanJIanJiZhong.Name = "rbtnDanJIanJiZhong";
+ this.rbtnDanJIanJiZhong.Size = new System.Drawing.Size(71, 16);
+ this.rbtnDanJIanJiZhong.TabIndex = 0;
+ this.rbtnDanJIanJiZhong.TabStop = true;
+ this.rbtnDanJIanJiZhong.Text = "单件记重";
+ this.rbtnDanJIanJiZhong.UseVisualStyleBackColor = true;
+ //
+ // rbtnXuanShuShuangJiLiang
+ //
+ this.rbtnXuanShuShuangJiLiang.AutoSize = true;
+ this.rbtnXuanShuShuangJiLiang.Location = new System.Drawing.Point(18, 42);
+ this.rbtnXuanShuShuangJiLiang.Name = "rbtnXuanShuShuangJiLiang";
+ this.rbtnXuanShuShuangJiLiang.Size = new System.Drawing.Size(83, 16);
+ this.rbtnXuanShuShuangJiLiang.TabIndex = 0;
+ this.rbtnXuanShuShuangJiLiang.TabStop = true;
+ this.rbtnXuanShuShuangJiLiang.Text = "选数双计量";
+ this.rbtnXuanShuShuangJiLiang.UseVisualStyleBackColor = true;
+ //
+ // rbtnGuDingShuLiang
+ //
+ this.rbtnGuDingShuLiang.AutoSize = true;
+ this.rbtnGuDingShuLiang.Location = new System.Drawing.Point(18, 76);
+ this.rbtnGuDingShuLiang.Name = "rbtnGuDingShuLiang";
+ this.rbtnGuDingShuLiang.Size = new System.Drawing.Size(131, 16);
+ this.rbtnGuDingShuLiang.TabIndex = 0;
+ this.rbtnGuDingShuLiang.TabStop = true;
+ this.rbtnGuDingShuLiang.Text = "固定数量双计量数量";
+ this.rbtnGuDingShuLiang.UseVisualStyleBackColor = true;
+ //
+ // txtGuDingShuLiang
+ //
+ this.txtGuDingShuLiang.Location = new System.Drawing.Point(18, 100);
+ this.txtGuDingShuLiang.Name = "txtGuDingShuLiang";
+ this.txtGuDingShuLiang.Size = new System.Drawing.Size(64, 21);
+ this.txtGuDingShuLiang.TabIndex = 1;
+ this.txtGuDingShuLiang.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ //
+ // panel4
+ //
+ this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel4.Controls.Add(this.cbxSelectCustomer);
+ this.panel4.Controls.Add(this.cbxSelectXianLu);
+ this.panel4.Controls.Add(this.dateInput);
+ this.panel4.Controls.Add(this.label3);
+ this.panel4.Controls.Add(this.label2);
+ this.panel4.Controls.Add(this.label1);
+ this.panel4.Location = new System.Drawing.Point(3, 143);
+ this.panel4.Name = "panel4";
+ this.panel4.Size = new System.Drawing.Size(470, 91);
+ this.panel4.TabIndex = 1;
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label1.Location = new System.Drawing.Point(2, 17);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(88, 16);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "发货日期:";
+ //
+ // dateInput
+ //
+ this.dateInput.BackColor = System.Drawing.Color.White;
+ this.dateInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.dateInput.Date = new System.DateTime(2017, 9, 5, 0, 0, 0, 0);
+ this.dateInput.Font = new System.Drawing.Font("宋体", 15F);
+ this.dateInput.Location = new System.Drawing.Point(87, 10);
+ this.dateInput.Name = "dateInput";
+ this.dateInput.Size = new System.Drawing.Size(122, 30);
+ this.dateInput.TabIndex = 3;
+ this.dateInput.Text = "2017/09/05";
+ this.dateInput.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.dateInput.Type = BWP.WinFormControl.DateTimeType.Date;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label2.Location = new System.Drawing.Point(230, 18);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(88, 16);
+ this.label2.TabIndex = 0;
+ this.label2.Text = "送货线路:";
+ //
+ // cbxSelectXianLu
+ //
+ this.cbxSelectXianLu.CodeArgs = null;
+ this.cbxSelectXianLu.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
+ this.cbxSelectXianLu.EnableTopItem = true;
+ this.cbxSelectXianLu.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.cbxSelectXianLu.FormattingEnabled = true;
+ this.cbxSelectXianLu.Location = new System.Drawing.Point(324, 12);
+ this.cbxSelectXianLu.Name = "cbxSelectXianLu";
+ this.cbxSelectXianLu.Range = 10;
+ this.cbxSelectXianLu.Size = new System.Drawing.Size(121, 27);
+ this.cbxSelectXianLu.TabIndex = 4;
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label3.Location = new System.Drawing.Point(34, 56);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(56, 16);
+ this.label3.TabIndex = 0;
+ this.label3.Text = "客户:";
+ //
+ // cbxSelectCustomer
+ //
+ this.cbxSelectCustomer.CodeArgs = null;
+ this.cbxSelectCustomer.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
+ this.cbxSelectCustomer.EnableTopItem = true;
+ this.cbxSelectCustomer.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.cbxSelectCustomer.FormattingEnabled = true;
+ this.cbxSelectCustomer.Location = new System.Drawing.Point(87, 51);
+ this.cbxSelectCustomer.Name = "cbxSelectCustomer";
+ this.cbxSelectCustomer.Range = 10;
+ this.cbxSelectCustomer.Size = new System.Drawing.Size(122, 27);
+ this.cbxSelectCustomer.TabIndex = 4;
+ //
+ // dataGridViewSaleOutStore
+ //
+ this.dataGridViewSaleOutStore.AllowUserToAddRows = false;
+ this.dataGridViewSaleOutStore.AllowUserToDeleteRows = false;
+ this.dataGridViewSaleOutStore.AllowUserToResizeColumns = false;
+ this.dataGridViewSaleOutStore.AllowUserToResizeRows = false;
+ dataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
+ this.dataGridViewSaleOutStore.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle10;
+ this.dataGridViewSaleOutStore.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.dataGridViewSaleOutStore.BackgroundColor = System.Drawing.Color.White;
+ dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
+ dataGridViewCellStyle11.Font = new System.Drawing.Font("宋体", 12F);
+ dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
+ dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+ dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+ this.dataGridViewSaleOutStore.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle11;
+ this.dataGridViewSaleOutStore.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewSaleOutStore.Location = new System.Drawing.Point(4, 241);
+ this.dataGridViewSaleOutStore.MultiSelect = false;
+ this.dataGridViewSaleOutStore.Name = "dataGridViewSaleOutStore";
+ this.dataGridViewSaleOutStore.ReadOnly = true;
+ this.dataGridViewSaleOutStore.RowHeadersVisible = false;
+ dataGridViewCellStyle12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218)))));
+ this.dataGridViewSaleOutStore.RowsDefaultCellStyle = dataGridViewCellStyle12;
+ this.dataGridViewSaleOutStore.RowTemplate.Height = 23;
+ this.dataGridViewSaleOutStore.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.dataGridViewSaleOutStore.Size = new System.Drawing.Size(469, 417);
+ this.dataGridViewSaleOutStore.TabIndex = 2;
+ //
+ // btnRead
+ //
+ this.btnRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.btnRead.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnRead.Location = new System.Drawing.Point(9, 681);
+ this.btnRead.Name = "btnRead";
+ this.btnRead.Size = new System.Drawing.Size(91, 34);
+ this.btnRead.TabIndex = 39;
+ this.btnRead.Text = "读入";
+ this.btnRead.UseVisualStyleBackColor = true;
+ //
+ // btnPrint
+ //
+ this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.btnPrint.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnPrint.Location = new System.Drawing.Point(237, 681);
+ this.btnPrint.Name = "btnPrint";
+ this.btnPrint.Size = new System.Drawing.Size(93, 34);
+ this.btnPrint.TabIndex = 39;
+ this.btnPrint.Text = "打印";
+ this.btnPrint.UseVisualStyleBackColor = true;
+ //
+ // btnSendOver
+ //
+ this.btnSendOver.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.btnSendOver.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnSendOver.Location = new System.Drawing.Point(361, 681);
+ this.btnSendOver.Name = "btnSendOver";
+ this.btnSendOver.Size = new System.Drawing.Size(103, 34);
+ this.btnSendOver.TabIndex = 39;
+ this.btnSendOver.Text = "发货完成";
+ this.btnSendOver.UseVisualStyleBackColor = true;
+ //
+ // btnWeightRecord
+ //
+ this.btnWeightRecord.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.btnWeightRecord.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnWeightRecord.Location = new System.Drawing.Point(124, 681);
+ this.btnWeightRecord.Name = "btnWeightRecord";
+ this.btnWeightRecord.Size = new System.Drawing.Size(91, 34);
+ this.btnWeightRecord.TabIndex = 39;
+ this.btnWeightRecord.Text = "称重记录";
+ this.btnWeightRecord.UseVisualStyleBackColor = true;
+ //
+ // panel5
+ //
+ this.panel5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel5.Controls.Add(this.linkLabel2);
+ this.panel5.Controls.Add(this.linkLabel1);
+ this.panel5.Controls.Add(this.label7);
+ this.panel5.Controls.Add(this.label6);
+ this.panel5.Controls.Add(this.label10);
+ this.panel5.Controls.Add(this.label5);
+ this.panel5.Controls.Add(this.lblCustomer);
+ this.panel5.Controls.Add(this.label8);
+ this.panel5.Controls.Add(this.label4);
+ this.panel5.Location = new System.Drawing.Point(4, 4);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(586, 132);
+ this.panel5.TabIndex = 0;
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label4.Location = new System.Drawing.Point(3, 33);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(88, 16);
+ this.label4.TabIndex = 0;
+ this.label4.Text = "会计单位:";
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label5.Location = new System.Drawing.Point(180, 69);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(88, 16);
+ this.label5.TabIndex = 0;
+ this.label5.Text = "出库单号:";
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label6.Location = new System.Drawing.Point(3, 101);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(88, 16);
+ this.label6.TabIndex = 0;
+ this.label6.Text = "送货地点:";
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label7.Location = new System.Drawing.Point(80, 101);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(72, 16);
+ this.label7.TabIndex = 0;
+ this.label7.Text = "送货地点";
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label8.Location = new System.Drawing.Point(212, 33);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(56, 16);
+ this.label8.TabIndex = 0;
+ this.label8.Text = "仓库:";
+ //
+ // lblCustomer
+ //
+ this.lblCustomer.AutoSize = true;
+ this.lblCustomer.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.lblCustomer.ForeColor = System.Drawing.Color.Red;
+ this.lblCustomer.Location = new System.Drawing.Point(3, 3);
+ this.lblCustomer.Name = "lblCustomer";
+ this.lblCustomer.Size = new System.Drawing.Size(54, 22);
+ this.lblCustomer.TabIndex = 0;
+ this.lblCustomer.Text = "客户";
+ //
+ // label10
+ //
+ this.label10.AutoSize = true;
+ this.label10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label10.Location = new System.Drawing.Point(4, 69);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(88, 16);
+ this.label10.TabIndex = 0;
+ this.label10.Text = "车牌号码:";
+ //
+ // linkLabel1
+ //
+ this.linkLabel1.AutoSize = true;
+ this.linkLabel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.linkLabel1.Location = new System.Drawing.Point(376, 33);
+ this.linkLabel1.Name = "linkLabel1";
+ this.linkLabel1.Size = new System.Drawing.Size(56, 16);
+ this.linkLabel1.TabIndex = 1;
+ this.linkLabel1.TabStop = true;
+ this.linkLabel1.Text = "器具:";
+ this.linkLabel1.VisitedLinkColor = System.Drawing.Color.Blue;
+ //
+ // linkLabel2
+ //
+ this.linkLabel2.AutoSize = true;
+ this.linkLabel2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.linkLabel2.Location = new System.Drawing.Point(376, 69);
+ this.linkLabel2.Name = "linkLabel2";
+ this.linkLabel2.Size = new System.Drawing.Size(56, 16);
+ this.linkLabel2.TabIndex = 1;
+ this.linkLabel2.TabStop = true;
+ this.linkLabel2.Text = "挂钩:";
+ this.linkLabel2.VisitedLinkColor = System.Drawing.Color.Blue;
+ //
+ // groupBox1
+ //
+ this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.groupBox1.Controls.Add(this.dataGridViewDingHuo);
+ this.groupBox1.Location = new System.Drawing.Point(4, 143);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(585, 310);
+ this.groupBox1.TabIndex = 1;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "订货明细";
+ //
+ // panel6
+ //
+ this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel6.Location = new System.Drawing.Point(1, 459);
+ this.panel6.Name = "panel6";
+ this.panel6.Size = new System.Drawing.Size(590, 49);
+ this.panel6.TabIndex = 2;
+ //
+ // groupBox2
+ //
+ this.groupBox2.Controls.Add(this.dataGridViewFaHuo);
+ this.groupBox2.Location = new System.Drawing.Point(5, 514);
+ this.groupBox2.Name = "groupBox2";
+ this.groupBox2.Size = new System.Drawing.Size(584, 213);
+ this.groupBox2.TabIndex = 1;
+ this.groupBox2.TabStop = false;
+ this.groupBox2.Text = "发货明细";
+ //
+ // dataGridViewDingHuo
+ //
+ this.dataGridViewDingHuo.AllowUserToAddRows = false;
+ this.dataGridViewDingHuo.AllowUserToDeleteRows = false;
+ this.dataGridViewDingHuo.AllowUserToResizeColumns = false;
+ this.dataGridViewDingHuo.AllowUserToResizeRows = false;
+ dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
+ this.dataGridViewDingHuo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
+ this.dataGridViewDingHuo.BackgroundColor = System.Drawing.Color.White;
+ dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle14.BackColor = System.Drawing.SystemColors.Control;
+ dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 12F);
+ dataGridViewCellStyle14.ForeColor = System.Drawing.SystemColors.WindowText;
+ dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+ dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+ this.dataGridViewDingHuo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
+ this.dataGridViewDingHuo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewDingHuo.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewDingHuo.Location = new System.Drawing.Point(3, 17);
+ this.dataGridViewDingHuo.MultiSelect = false;
+ this.dataGridViewDingHuo.Name = "dataGridViewDingHuo";
+ this.dataGridViewDingHuo.ReadOnly = true;
+ this.dataGridViewDingHuo.RowHeadersVisible = false;
+ dataGridViewCellStyle15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218)))));
+ this.dataGridViewDingHuo.RowsDefaultCellStyle = dataGridViewCellStyle15;
+ this.dataGridViewDingHuo.RowTemplate.Height = 23;
+ this.dataGridViewDingHuo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.dataGridViewDingHuo.Size = new System.Drawing.Size(579, 290);
+ this.dataGridViewDingHuo.TabIndex = 0;
+ //
+ // dataGridViewFaHuo
+ //
+ this.dataGridViewFaHuo.AllowUserToAddRows = false;
+ this.dataGridViewFaHuo.AllowUserToDeleteRows = false;
+ this.dataGridViewFaHuo.AllowUserToResizeColumns = false;
+ this.dataGridViewFaHuo.AllowUserToResizeRows = false;
+ dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
+ this.dataGridViewFaHuo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
+ this.dataGridViewFaHuo.BackgroundColor = System.Drawing.Color.White;
+ dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Control;
+ dataGridViewCellStyle17.Font = new System.Drawing.Font("宋体", 12F);
+ dataGridViewCellStyle17.ForeColor = System.Drawing.SystemColors.WindowText;
+ dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+ dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+ this.dataGridViewFaHuo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
+ this.dataGridViewFaHuo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewFaHuo.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewFaHuo.Location = new System.Drawing.Point(3, 17);
+ this.dataGridViewFaHuo.MultiSelect = false;
+ this.dataGridViewFaHuo.Name = "dataGridViewFaHuo";
+ this.dataGridViewFaHuo.RowHeadersVisible = false;
+ dataGridViewCellStyle18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ dataGridViewCellStyle18.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218)))));
+ this.dataGridViewFaHuo.RowsDefaultCellStyle = dataGridViewCellStyle18;
+ this.dataGridViewFaHuo.RowTemplate.Height = 23;
+ this.dataGridViewFaHuo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.dataGridViewFaHuo.Size = new System.Drawing.Size(578, 193);
+ this.dataGridViewFaHuo.TabIndex = 0;
+ //
+ // flowLayoutPanel1
+ //
+ this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
+ this.flowLayoutPanel1.Name = "flowLayoutPanel1";
+ this.flowLayoutPanel1.Size = new System.Drawing.Size(269, 726);
+ this.flowLayoutPanel1.TabIndex = 0;
+ //
+ // DistributionForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(1347, 728);
+ this.Controls.Add(this.splitContainer1);
+ this.MinimizeBox = false;
+ this.Name = "DistributionForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "青花瓷配货";
+ this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
+ this.Load += new System.EventHandler(this.DistributionForm_Load);
+ this.splitContainer1.Panel1.ResumeLayout(false);
+ this.splitContainer1.Panel2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
+ this.splitContainer1.ResumeLayout(false);
+ this.splitContainer2.Panel1.ResumeLayout(false);
+ this.splitContainer2.Panel2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
+ this.splitContainer2.ResumeLayout(false);
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
+ this.panel3.ResumeLayout(false);
+ this.panel3.PerformLayout();
+ this.panel4.ResumeLayout(false);
+ this.panel4.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSaleOutStore)).EndInit();
+ this.panel5.ResumeLayout(false);
+ this.panel5.PerformLayout();
+ this.groupBox1.ResumeLayout(false);
+ this.groupBox2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewDingHuo)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFaHuo)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.SplitContainer splitContainer1;
+ private System.Windows.Forms.SplitContainer splitContainer2;
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.Button btnSearch;
+ private System.Windows.Forms.RadioButton rbtnDanPin;
+ private System.Windows.Forms.RadioButton rbtnXianLu;
+ private System.Windows.Forms.Panel panel3;
+ private System.Windows.Forms.TextBox txtGuDingShuLiang;
+ private System.Windows.Forms.RadioButton rbtnGuDingShuLiang;
+ private System.Windows.Forms.RadioButton rbtnXuanShuShuangJiLiang;
+ private System.Windows.Forms.RadioButton rbtnDanJIanJiZhong;
+ private System.Windows.Forms.CheckBox enableWeight;
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.Label lblChengZhong;
+ private System.Windows.Forms.Button btnWeightSet;
+ private System.Windows.Forms.Panel panel4;
+ private System.Windows.Forms.Label label1;
+ private BWP.WinFormControl.UDatePicker dateInput;
+ private System.Windows.Forms.Label label2;
+ private BWP.WinFormControl.UComboBox cbxSelectXianLu;
+ private BWP.WinFormControl.UComboBox cbxSelectCustomer;
+ private System.Windows.Forms.Label label3;
+ private BWP.WinFormControl.UDataGridView dataGridViewSaleOutStore;
+ private System.Windows.Forms.Button btnRead;
+ private System.Windows.Forms.Button btnPrint;
+ private System.Windows.Forms.Button btnSendOver;
+ private System.Windows.Forms.Button btnWeightRecord;
+ private System.Windows.Forms.Panel panel5;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.Label label6;
+ private System.Windows.Forms.Label label7;
+ private System.Windows.Forms.Label label8;
+ private System.Windows.Forms.Label lblCustomer;
+ private System.Windows.Forms.Label label10;
+ private System.Windows.Forms.LinkLabel linkLabel2;
+ private System.Windows.Forms.LinkLabel linkLabel1;
+ private System.Windows.Forms.GroupBox groupBox1;
+ private System.Windows.Forms.Panel panel6;
+ private System.Windows.Forms.GroupBox groupBox2;
+ private BWP.WinFormControl.UDataGridView dataGridViewFaHuo;
+ private BWP.WinFormControl.UDataGridView dataGridViewDingHuo;
+ private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
+ }
+}
\ No newline at end of file
diff --git a/Distribution/DistributionForm.cs b/Distribution/DistributionForm.cs
new file mode 100644
index 0000000..9acde2b
--- /dev/null
+++ b/Distribution/DistributionForm.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Distribution
+{
+ public partial class DistributionForm : Form
+ {
+ public DistributionForm()
+ {
+ InitializeComponent();
+ dataGridViewSaleOutStore.AutoGenerateColumns = false;
+ dataGridViewDingHuo.AutoGenerateColumns = false;
+ dataGridViewFaHuo.AutoGenerateColumns = false;
+ }
+
+ private void DistributionForm_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/Distribution/DistributionForm.resx b/Distribution/DistributionForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/Distribution/DistributionForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Distribution/Properties/AssemblyInfo.cs b/Distribution/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..093edc8
--- /dev/null
+++ b/Distribution/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("Distribution")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Distribution")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// 将 ComVisible 设置为 false 会使此程序集中的类型
+//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
+//请将此类型的 ComVisible 特性设置为 true。
+[assembly: ComVisible(false)]
+
+// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
+[assembly: Guid("054f5e88-9af0-430f-990e-17b8b268d59a")]
+
+// 程序集的版本信息由下列四个值组成:
+//
+// 主版本
+// 次版本
+// 生成号
+// 修订号
+//
+// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
+//通过使用 "*",如下所示:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Distribution/白条鲜品发货.txt b/Distribution/白条鲜品发货.txt
new file mode 100644
index 0000000..5f28270
--- /dev/null
+++ b/Distribution/白条鲜品发货.txt
@@ -0,0 +1 @@
+
\ No newline at end of file