RBAC: Phase 1-3, Total Salary fix, employee creation fix, permission groups, backup script
Made-with: Cursor
This commit is contained in:
@@ -902,11 +902,11 @@ function CRMContent() {
|
||||
<td className="px-6 py-4">
|
||||
<div>
|
||||
<span className="text-sm font-semibold text-gray-900">
|
||||
{deal.estimatedValue.toLocaleString()} SAR
|
||||
{(deal.estimatedValue ?? 0).toLocaleString()} SAR
|
||||
</span>
|
||||
{deal.actualValue && (
|
||||
{(deal.actualValue ?? 0) > 0 && (
|
||||
<p className="text-xs text-green-600">
|
||||
Actual: {deal.actualValue.toLocaleString()}
|
||||
Actual: {(deal.actualValue ?? 0).toLocaleString()}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user