Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
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
abook_android
abook_check
Commits
cc3ab041
Commit
cc3ab041
authored
Jul 28, 2022
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0706課題 品質異常に検品箱数を表示する対応
parent
2542d734
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
+1
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+1
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
+1
-0
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
View file @
cc3ab041
...
@@ -66,6 +66,7 @@ public class ABookKeys {
...
@@ -66,6 +66,7 @@ public class ABookKeys {
public
static
final
String
UBNORMALITY_REPORT_ITEM_NO
=
"itemNo"
;
// 商品ID
public
static
final
String
UBNORMALITY_REPORT_ITEM_NO
=
"itemNo"
;
// 商品ID
public
static
final
String
UBNORMALITY_REPORT_FARM_NO
=
"farmNo"
;
// 生産者ID
public
static
final
String
UBNORMALITY_REPORT_FARM_NO
=
"farmNo"
;
// 生産者ID
public
static
final
String
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
=
"shippingSourceNo"
;
// 出荷元ID
public
static
final
String
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
=
"shippingSourceNo"
;
// 出荷元ID
public
static
final
String
UBNORMALITY_REPORT_CHECK_NUM
=
"itemCheckNum"
;
// 検品数
// KAGOME対応 品質異常報告パラメータend
// KAGOME対応 品質異常報告パラメータend
// KAGOME対応Ph2 品質異常報告パラメータstart
// KAGOME対応Ph2 品質異常報告パラメータstart
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
cc3ab041
...
@@ -1102,6 +1102,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1102,6 +1102,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
));
param
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_CHECK_NUM
,
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_CHECK_NUM
));
// 品質異常へ遷移
// 品質異常へ遷移
ActivityHandlingHelper
.
getInstance
().
abnormalityReport
(
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_OPERATION_ID
),
ActivityHandlingHelper
.
getInstance
().
abnormalityReport
(
abookCheckParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_OPERATION_ID
),
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
View file @
cc3ab041
...
@@ -677,6 +677,7 @@ public class HTMLWebViewActivity extends ParentWebViewActivity implements KeyAct
...
@@ -677,6 +677,7 @@ public class HTMLWebViewActivity extends ParentWebViewActivity implements KeyAct
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_ITEM_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_FARM_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_SHIPPING_SOURCE_NO
));
json
.
put
(
ABookKeys
.
UBNORMALITY_REPORT_CHECK_NUM
,
addTaskReportInitParam
.
get
(
ABookKeys
.
UBNORMALITY_REPORT_CHECK_NUM
));
final
String
param
=
json
.
toString
();
final
String
param
=
json
.
toString
();
runOnUiThread
(
new
Runnable
()
{
runOnUiThread
(
new
Runnable
()
{
...
...
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