Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Krishna Vemulavada
/
vera_2.1_app
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9dde565e
authored
Nov 22, 2016
by
Kunj Gupta
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fixed - We need to get updated data from server each time.
parent
254ec802
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
17 deletions
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueItemScreen.java
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueScreen.java
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueVariableScreen.java
app/src/main/java/com/vsoft/uoflservicenow/ui/MyIncidentScreen.java
app/src/main/java/com/vsoft/uoflservicenow/ui/MyRequestActivity.java
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueItemScreen.java
View file @
9dde565e
...
@@ -86,17 +86,17 @@ public class CatalogueItemScreen extends AppCompatActivity {
...
@@ -86,17 +86,17 @@ public class CatalogueItemScreen extends AppCompatActivity {
// Send initial screen view hit.
// Send initial screen view hit.
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
List
<
CatalogueItem
>
catalogueItemList
=
CatalogueItemManager
.
getAllCatalogueItems
(
mCatalogue
.
getId
());
if
(
catalogueItemList
.
isEmpty
())
{
if
(
application
.
isNetConnected
())
{
if
(
application
.
isNetConnected
())
{
new
FetchCatalogueItem
().
execute
();
new
FetchCatalogueItem
().
execute
();
}
else
{
}
else
{
List
<
CatalogueItem
>
catalogueItemList
=
CatalogueItemManager
.
getAllCatalogueItems
(
mCatalogue
.
getId
());
if
(
catalogueItemList
.
isEmpty
())
{
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueItemScreen
.
this
);
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueItemScreen
.
this
);
}
}
else
{
}
else
{
setData
(
catalogueItemList
);
setData
(
catalogueItemList
);
}
}
}
}
}
class
FetchCatalogueItem
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
class
FetchCatalogueItem
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
private
ProgressDialog
progressDialog
;
private
ProgressDialog
progressDialog
;
...
...
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueScreen.java
View file @
9dde565e
...
@@ -67,15 +67,15 @@ public class CatalogueScreen extends AppCompatActivity {
...
@@ -67,15 +67,15 @@ public class CatalogueScreen extends AppCompatActivity {
// Send initial screen view hit.
// Send initial screen view hit.
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
List
<
Catalogue
>
catalogueList
=
CatalogueManager
.
getAllCatalogues
();
if
(
catalogueList
.
isEmpty
())
{
if
(
application
.
isNetConnected
())
{
if
(
application
.
isNetConnected
())
{
new
FetchCatalogue
().
execute
();
new
FetchCatalogue
().
execute
();
}
else
{
}
else
{
List
<
Catalogue
>
catalogueList
=
CatalogueManager
.
getAllCatalogues
();
if
(!
catalogueList
.
isEmpty
())
{
setData
(
catalogueList
);
}
else
{
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueScreen
.
this
);
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueScreen
.
this
);
}
}
}
else
{
setData
(
catalogueList
);
}
}
}
}
...
...
app/src/main/java/com/vsoft/uoflservicenow/ui/CatalogueVariableScreen.java
View file @
9dde565e
...
@@ -171,19 +171,19 @@ public class CatalogueVariableScreen extends AppCompatActivity {
...
@@ -171,19 +171,19 @@ public class CatalogueVariableScreen extends AppCompatActivity {
// Send initial screen view hit.
// Send initial screen view hit.
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
mCatalogueVariableList
=
CatalogueVariableManager
.
getAllVariable
(
mCatalogueItem
.
getId
());
setVariableChoices
();
if
(
mCatalogueVariableList
.
isEmpty
())
{
if
(
mApplication
.
isNetConnected
())
{
if
(
mApplication
.
isNetConnected
())
{
new
FetchCatalogueVariable
().
execute
();
new
FetchCatalogueVariable
().
execute
();
}
else
{
}
else
{
mCatalogueVariableList
=
CatalogueVariableManager
.
getAllVariable
(
mCatalogueItem
.
getId
());
if
(
mCatalogueVariableList
.
isEmpty
())
{
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueVariableScreen
.
this
);
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
CatalogueVariableScreen
.
this
);
}
}
else
{
}
else
{
setVariableChoices
();
createView
();
createView
();
runUIPolicyActions
(
null
);
runUIPolicyActions
(
null
);
}
}
}
}
}
class
FetchCatalogueVariable
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
class
FetchCatalogueVariable
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
private
ProgressDialog
progressDialog
;
private
ProgressDialog
progressDialog
;
...
...
app/src/main/java/com/vsoft/uoflservicenow/ui/MyIncidentScreen.java
View file @
9dde565e
...
@@ -67,17 +67,17 @@ public class MyIncidentScreen extends AppCompatActivity {
...
@@ -67,17 +67,17 @@ public class MyIncidentScreen extends AppCompatActivity {
// Send initial screen view hit.
// Send initial screen view hit.
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
Util
.
sendScreenName
(
tracker
,
actionBar
.
getTitle
().
toString
());
mIncidentList
=
MyIncidentsManager
.
getAllIncidents
();
if
(
mIncidentList
.
isEmpty
())
{
if
(
application
.
isNetConnected
())
{
if
(
application
.
isNetConnected
())
{
new
FetchIncident
().
execute
();
new
FetchIncident
().
execute
();
}
else
{
}
else
{
mIncidentList
=
MyIncidentsManager
.
getAllIncidents
();
if
(
mIncidentList
.
isEmpty
())
{
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
MyIncidentScreen
.
this
);
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
MyIncidentScreen
.
this
);
}
}
else
{
}
else
{
setData
(
mIncidentList
);
setData
(
mIncidentList
);
}
}
}
}
}
@OnItemClick
(
R
.
id
.
my_incidents_screen_list_view
)
@OnItemClick
(
R
.
id
.
my_incidents_screen_list_view
)
void
listViewOnClicked
(
int
position
)
{
void
listViewOnClicked
(
int
position
)
{
...
...
app/src/main/java/com/vsoft/uoflservicenow/ui/MyRequestActivity.java
View file @
9dde565e
...
@@ -68,17 +68,17 @@ public class MyRequestActivity extends AppCompatActivity {
...
@@ -68,17 +68,17 @@ public class MyRequestActivity extends AppCompatActivity {
mAdapter
=
new
MyRequestAdapter
(
MyRequestActivity
.
this
);
mAdapter
=
new
MyRequestAdapter
(
MyRequestActivity
.
this
);
mListView
.
setAdapter
(
mAdapter
);
mListView
.
setAdapter
(
mAdapter
);
List
<
MyRequest
>
myRequestList
=
MyRequestsManager
.
getAllRequests
();
if
(
myRequestList
.
isEmpty
())
{
if
(
application
.
isNetConnected
())
{
if
(
application
.
isNetConnected
())
{
new
FetchMyRequestData
().
execute
();
new
FetchMyRequestData
().
execute
();
}
else
{
}
else
{
List
<
MyRequest
>
myRequestList
=
MyRequestsManager
.
getAllRequests
();
if
(
myRequestList
.
isEmpty
())
{
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
MyRequestActivity
.
this
);
DialogUtils
.
showNoConnectionDialogWithCloseActivity
(
MyRequestActivity
.
this
);
}
}
else
{
}
else
{
setData
(
myRequestList
);
setData
(
myRequestList
);
}
}
}
}
}
class
FetchMyRequestData
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
class
FetchMyRequestData
extends
AsyncTask
<
String
,
Void
,
SyncStatus
>
{
private
ProgressDialog
progressDialog
;
private
ProgressDialog
progressDialog
;
...
...
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