|
@@ -551,13 +551,23 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- parentFragmentManager.beginTransaction().setCustomAnimations(
|
|
|
- R.anim.slide_right_in,
|
|
|
- R.anim.slide_left_out,
|
|
|
- R.anim.slide_left_in,
|
|
|
- R.anim.slide_right_out
|
|
|
- ).addToBackStack(null)
|
|
|
- .add(R.id.add_group_info_container, GroupCustomerListFragment()).commit()
|
|
|
+ if (OASystem.authorization(OASystem.GROUP_CLIENT_LIST, OASystem.VIEW)) {
|
|
|
+ parentFragmentManager.beginTransaction().setCustomAnimations(
|
|
|
+ R.anim.slide_right_in,
|
|
|
+ R.anim.slide_left_out,
|
|
|
+ R.anim.slide_left_in,
|
|
|
+ R.anim.slide_right_out
|
|
|
+ ).addToBackStack(null)
|
|
|
+ .add(R.id.add_group_info_container, GroupCustomerListFragment()).commit()
|
|
|
+ } else {
|
|
|
+ parentFragmentManager.beginTransaction().setCustomAnimations(
|
|
|
+ R.anim.slide_right_in,
|
|
|
+ R.anim.slide_left_out,
|
|
|
+ R.anim.slide_left_in,
|
|
|
+ R.anim.slide_right_out
|
|
|
+ ).addToBackStack(null)
|
|
|
+ .add(R.id.add_group_info_container, GroupInfoRequireFragment()).commit()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|