Browse Source

2024-05-24 修改

修改

1. 日付费用申请,修改界面逻辑,未通过也可以修改数据,拥有审核权限的成员无法修改其它人的数据
zhaiy 10 months ago
parent
commit
3b1ce02943

+ 8 - 3
app/src/main/java/com/pan_american/android/ui/efficiency_tools/daily_payment/AddDailyPaymentActivity.kt

@@ -462,6 +462,11 @@ class AddDailyPaymentActivity : BaseActivity<ActivityAddDailyPaymentBinding>() {
                 }
             }
 
+            if (OASystem.userInfo.userId != dailyPaymentDetail.createUserId) {
+                showMessage(resources.getString(R.string.daily_payment_userId_error))
+                return@setOnClickListener
+            }
+
             when {
                 paymentIdentifyId == -1 -> {
                     showMessage(resources.getString(R.string.payment_identification_select_hint))
@@ -822,10 +827,10 @@ class AddDailyPaymentActivity : BaseActivity<ActivityAddDailyPaymentBinding>() {
     }
 
     private fun canBeEdit(): Boolean {
-        if (fromList) {
-            return OASystem.authorization(OASystem.DAILY_PAYMENT, OASystem.EDIT) and (financeStatus == 0) and (managerStatus == 0)
+        return if (fromList) {
+            OASystem.authorization(OASystem.DAILY_PAYMENT, OASystem.EDIT) and (financeStatus != 1) and (managerStatus != 1)
         } else {
-            return true
+            true
         }
     }
 }

+ 2 - 0
app/src/main/res/values/strings.xml

@@ -273,6 +273,8 @@
     <string name="payment_notes_hint">请填写申请说明</string>
     <string name="payment_price_hint">请输入正确的金额</string>
 
+    <string name="daily_payment_userId_error">无法修改当前申请人的费用信息</string>
+
     <!-- 日付费用,错误信息 -->
     <string name="daily_payment_detail_get_failed">日付详情获取失败</string>