feat: 出港理货

This commit is contained in:
2025-12-12 13:12:50 +08:00
parent d9fb950b79
commit 6b79433557
10 changed files with 807 additions and 0 deletions

View File

@@ -121,6 +121,12 @@
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="userLandscape" />
<!-- 国际出港理货 -->
<activity
android:name="com.lukouguoji.gjc.activity.IntExpTallyActivity"
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="userLandscape" />
<!-- 国际出港运抵 -->
<activity
android:name="com.lukouguoji.gjc.activity.IntExpArriveActivity"

View File

@@ -376,6 +376,12 @@ class HomeFragment : Fragment() {
.build(ARouterConstants.ACTIVITY_URL_INT_EXP_LOAD)
.navigation()
}
// 出港理货
Constant.AuthName.GjcIntExpTally -> {
ARouter.getInstance()
.build(ARouterConstants.ACTIVITY_URL_INT_EXP_TALLY)
.navigation()
}
// 出港运抵
Constant.AuthName.GjcIntExpArrive -> {
ARouter.getInstance().build(ARouterConstants.ACTIVITY_URL_INT_EXP_ARRIVE)
@@ -703,6 +709,14 @@ class HomeFragment : Fragment() {
)
)
list.add(
RightMenu(
Constant.AuthName.GjcIntExpTally,
com.lukouguoji.module_base.R.drawable.img_gjc_banxiangzuzhuang,
"出港理货"
)
)
list.add(
RightMenu(
Constant.AuthName.GjcIntExpArrive,