Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hemei
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
hemei
Commits
9c2b53d7
Commit
9c2b53d7
authored
Jan 07, 2019
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1. 把混料的 MixSet,MixPSet 也加入到更新计划0,为了解决 MixPSet 与 HMI 显示不一致问题
parent
eed14f80
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Window_Ingredient.xaml.cs
...FLY.Weight/FLY.Weight.UI.Client/Window_Ingredient.xaml.cs
+4
-4
WeightSystem.cs
Project.FLY.Weight/FLY.Weight/Server/WeightSystem.cs
+2
-0
No files found.
Project.FLY.Weight/FLY.Weight.UI.Client/Window_Ingredient.xaml.cs
View file @
9c2b53d7
...
...
@@ -47,12 +47,12 @@ namespace FLY.Weight.UI.Client
for
(
int
j
=
0
;
j
<
weight
.
BinCnt
;
j
++)
{
int
no
=
j
+
1
;
props
.
Add
(
"MixPSet_"
+
no
);
props
.
Add
(
"MixPDisp_"
+
no
);
//
props.Add("MixPSet_" + no);
//
props.Add("MixPDisp_" + no);
props
.
Add
(
"MixCumPercent_"
+
no
);
props
.
Add
(
"MixSet_"
+
no
);
props
.
Add
(
"MixDisp_"
+
no
);
//
props.Add("MixSet_" + no);
//
props.Add("MixDisp_" + no);
props
.
Add
(
"MixCum_"
+
no
);
}
setPlan
=
new
SetPLCUpdatePlan
(
...
...
Project.FLY.Weight/FLY.Weight/Server/WeightSystem.cs
View file @
9c2b53d7
...
...
@@ -127,6 +127,8 @@ namespace FLY.Weight.Server
for
(
int
j
=
0
;
j
<
Items
[
i
].
BinCnt
;
j
++)
{
int
no
=
j
+
1
;
props
.
Add
(
$"MixSet_
{
no
}
"
);
props
.
Add
(
$"MixPSet_
{
no
}
"
);
props
.
Add
(
$"MixDisp_
{
no
}
"
);
props
.
Add
(
$"MixPDisp_
{
no
}
"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment