Update: 2026-05-07 23:24:12

This commit is contained in:
Hamza-Ayed
2026-05-07 23:24:12 +03:00
parent 80f3d257b0
commit 51d1d42f75
6 changed files with 173 additions and 15 deletions

View File

@@ -112,8 +112,14 @@ class CompaniesManagementView extends StatelessWidget {
children: [
_buildDetailChip(Icons.numbers, company['tax_identification_number'] ?? 'غير محدد', isDark),
const SizedBox(width: 8),
if (company['is_jofotara_connected'] == true || company['is_jofotara_connected'] == 1)
if (company['is_jofotara_connected'] == true || company['is_jofotara_connected'] == 1) ...[
_buildDetailChip(Icons.link, 'مرتبطة بجوفوتارا', isDark, color: const Color(0xFF10B981)),
const SizedBox(width: 8),
],
if (company['tenant_name'] != null)
Expanded(
child: _buildDetailChip(Icons.account_balance, company['tenant_name'], isDark, color: Colors.blueAccent),
),
],
),
const SizedBox(height: 12),