瀏覽代碼

✨ feat(finance): 新增调价申请历史费用补扣判断函数

lxz 2 周之前
父節點
當前提交
1986d4e962
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      app/finance/common.php

+ 7 - 0
app/finance/common.php

@@ -77,3 +77,10 @@ function isAuthLoan($uid)
     $count = Db::name('DataAuth')->where($map)->count();
     return $count;
 }
+
+//调价申请-历史费用是否需要补扣
+function price_adjust_yn_name($val=0)
+{
+	$arr = [0=>'否', 1=>'是'];
+	return $arr[$val] ?? '否';
+}