Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
supplier
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王宇航
supplier
Commits
fb8a4454
Commit
fb8a4454
authored
Feb 29, 2020
by
宁斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、單點登錄提示處理
2、套餐細項顯示問題調整 3、虛擬鍵盤顯示適配 4、結賬未送單直接 結賬邏輯調整
parent
c8cc006c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
table-mode/src/main/java/com/gingersoft/gsa/cloud/table/mvp/presenter/MealStandPresenter.java
+3
-1
table-mode/src/main/java/com/gingersoft/gsa/cloud/table/mvp/ui/activity/MealStandActivity.java
+2
-2
No files found.
table-mode/src/main/java/com/gingersoft/gsa/cloud/table/mvp/presenter/MealStandPresenter.java
View file @
fb8a4454
...
@@ -323,7 +323,9 @@ public class MealStandPresenter extends BaseOrderPresenter<MealStandContract.Mod
...
@@ -323,7 +323,9 @@ public class MealStandPresenter extends BaseOrderPresenter<MealStandContract.Mod
updateModifierData
(
modifierList
);
updateModifierData
(
modifierList
);
if
(
comboItemList
.
size
()
>
0
)
{
if
(
comboItemList
.
size
()
>
0
)
{
IActivity
.
setModifierTop
();
IActivity
.
setModifierTop
(
10
);
}
else
{
IActivity
.
setModifierTop
(
0
);
}
}
// if (food.getAutoMod() == 1) {
// if (food.getAutoMod() == 1) {
...
...
table-mode/src/main/java/com/gingersoft/gsa/cloud/table/mvp/ui/activity/MealStandActivity.java
View file @
fb8a4454
...
@@ -1057,9 +1057,9 @@ public class MealStandActivity extends BaseActivity<MealStandPresenter> implemen
...
@@ -1057,9 +1057,9 @@ public class MealStandActivity extends BaseActivity<MealStandPresenter> implemen
}
}
}
}
public
void
setModifierTop
()
{
public
void
setModifierTop
(
int
Margins
)
{
RelativeLayout
.
LayoutParams
layoutParam
=
new
RelativeLayout
.
LayoutParams
(
ViewGroup
.
LayoutParams
.
MATCH_PARENT
,
ViewGroup
.
LayoutParams
.
WRAP_CONTENT
);
RelativeLayout
.
LayoutParams
layoutParam
=
new
RelativeLayout
.
LayoutParams
(
ViewGroup
.
LayoutParams
.
MATCH_PARENT
,
ViewGroup
.
LayoutParams
.
WRAP_CONTENT
);
layoutParam
.
setMargins
(
0
,
10
,
0
,
0
);
layoutParam
.
setMargins
(
0
,
Margins
,
0
,
0
);
layoutParam
.
addRule
(
RelativeLayout
.
ABOVE
,
R
.
id
.
ll_stand_oper
);
layoutParam
.
addRule
(
RelativeLayout
.
ABOVE
,
R
.
id
.
ll_stand_oper
);
layoutParam
.
addRule
(
RelativeLayout
.
BELOW
,
R
.
id
.
rv_combo
);
layoutParam
.
addRule
(
RelativeLayout
.
BELOW
,
R
.
id
.
rv_combo
);
rv_modifier
.
setLayoutParams
(
layoutParam
);
rv_modifier
.
setLayoutParams
(
layoutParam
);
...
...
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