|
@@ -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
|
|
|
}
|
|
|
}
|
|
|
}
|