This commit is contained in:
weiz 2024-01-11 09:32:06 +08:00
parent 3c7112a10e
commit 27a1b74c31

View File

@ -34,5 +34,10 @@ class FinancePaymentPlan extends BaseModel
{
return $this->belongsTo(\app\common\model\contract\ProcurementContract::class, 'contract_id');
}
public function getPayDateAttr($value): string
{
return !empty($value) ? date('Y-m-d') : '';
}
}