|
@@ -282,11 +282,15 @@ public class SendKeyBoardFragment extends Fragment {
|
|
|
timer.cancel();
|
|
|
}
|
|
|
if ("store".equals(finalLoginType) || "courier".equals(finalLoginType)){
|
|
|
- if ("0".equals(data.getIsPay())){
|
|
|
- NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_paymentFragment);
|
|
|
- }else {
|
|
|
- NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_sendMainFragment);
|
|
|
- }
|
|
|
+ Bundle isPayBundle = new Bundle();
|
|
|
+ isPayBundle.putString("isPay",data.getIsPay());
|
|
|
+ activity.getBundleMap().put(SendKeyBoardFragment.class.getName(), isPayBundle);
|
|
|
+ NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_sendMainFragment);
|
|
|
+// if ("0".equals(data.getIsPay())){
|
|
|
+// NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_paymentFragment);
|
|
|
+// }else {
|
|
|
+// NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_sendMainFragment);
|
|
|
+// }
|
|
|
}else{
|
|
|
NavUtils.navigate(SendKeyBoardFragment.this, R.id.action_sendFragment_to_collectMaterialsFragment);
|
|
|
}
|