songjunekeun vor 5 Jahren
Ursprung
Commit
61fde335de

+ 1 - 1
app/build.gradle

@@ -97,7 +97,7 @@ android {
             applicationIdSuffix ".chilgok_new"
             buildConfigField "String", "originalPackageName", "\"com.dbs.mplus.knuh\""
 //            buildConfigField "String", "CONSENT_SERVER_URL", "\"https://ema032.knuh.kr:8091/\""
-            buildConfigField "String", "CONSENT_SERVER_URL", "\"https://ema031.knuh.kr:8096/\""
+            buildConfigField "String", "CONSENT_SERVER_URL", "\"https://ema032.knuh.kr:8096/\""
             buildConfigField "String", "CONSENT_EFORM_SERVER_URL", "\"https://ema032.knuh.kr:8090/eformservice.aspx\""
             buildConfigField "String", "INST_CD", "\"032\""
             manifestPlaceholders = [appLabel: "칠곡운영"]

+ 1 - 1
app/src/main/java/com/dbs/mplus/knuh/activity/activityEvent/LeftMenu.java

@@ -334,7 +334,7 @@ public class LeftMenu {
   public EditText.OnEditorActionListener onEditorActionListener = new EditText.OnEditorActionListener() {
     @Override
     public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
-      if (actionId == EditorInfo.IME_ACTION_DONE && (event != null && (event.getKeyCode() == KeyEvent.KEYCODE_ENTER))) {
+      if (actionId == EditorInfo.IME_ACTION_DONE || actionId == EditorInfo.IME_ACTION_NEXT) {
         if (v == instance.etPatientId) {
           getPatientList();
         }

Datei-Diff unterdrückt, da er zu groß ist
+ 106 - 5
app/src/main/java/com/dbs/mplus/knuh/consent/ConsentFacade.java


+ 1 - 1
app/src/main/java/com/dbs/mplus/knuh/fragment/SearchFragment.java

@@ -115,7 +115,7 @@ public class SearchFragment extends Fragment {
   public EditText.OnEditorActionListener onEditorActionListener = new EditText.OnEditorActionListener() {
     @Override
     public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
-      if (actionId == EditorInfo.IME_ACTION_DONE) {
+      if (actionId == EditorInfo.IME_ACTION_DONE || actionId == EditorInfo.IME_ACTION_NEXT) {
         if (v == etPatientId) {
           getConsentList(categoryId);
         }