feat: 待回款提醒,即将到期的合同,待审核回款

This commit is contained in:
dhb52
2024-02-07 23:52:46 +08:00
parent 361c06bd6f
commit ae3d44d8bd
8 changed files with 488 additions and 30 deletions

View File

@ -18,8 +18,21 @@ export const CONTACT_STATUS = [
{ label: '已联系', value: 3 }
]
/** 合同审批状态 */
export const CONTRACT_AUDIT_STATUS = [
/** 审批状态 */
export const AUDIT_STATUS = [
{ label: '已审批', value: 20 },
{ label: '待审批', value: 10 }
]
/** 回款提醒类型 */
export const RECEIVABLE_REMIND_TYPE = [
{ label: '待回款', value: 1 },
{ label: '已逾期', value: 2 },
{ label: '已回款', value: 3 }
]
/** 合同过期状态 */
export const CONTRACT_EXPIRY_TYPE = [
{ label: '即将过期', value: 1 },
{ label: '已过期', value: 2 }
]