add price policy

This commit is contained in:
Phuoc Nguyen
2025-11-03 11:20:09 +07:00
parent c0527a086c
commit 21c1c3372c
53 changed files with 7160 additions and 2361 deletions

View File

@@ -151,6 +151,29 @@ class HomePage extends ConsumerWidget {
],
),
// Orders & Payments Section
QuickActionSection(
title: 'Đơn hàng & thanh toán',
actions: [
QuickAction(
icon: Icons.description,
label: 'Chính sách giá',
onTap: () => context.push(RouteNames.pricePolicy),
),
QuickAction(
icon: Icons.inventory_2,
label: 'Đơn hàng',
onTap: () => context.push(RouteNames.orders),
),
QuickAction(
icon: Icons.receipt_long,
label: 'Thanh toán',
onTap: () =>
context.push(RouteNames.payments)
),
],
),
// Loyalty Section
QuickActionSection(
title: 'Khách hàng thân thiết',
@@ -174,28 +197,7 @@ class HomePage extends ConsumerWidget {
],
),
// Orders & Payments Section
QuickActionSection(
title: 'Đơn hàng & thanh toán',
actions: [
QuickAction(
icon: Icons.description,
label: 'Yêu cầu báo giá',
onTap: () => context.push(RouteNames.quotes),
),
QuickAction(
icon: Icons.inventory_2,
label: 'Đơn hàng',
onTap: () => context.push(RouteNames.orders),
),
QuickAction(
icon: Icons.receipt_long,
label: 'Thanh toán',
onTap: () =>
context.push(RouteNames.payments)
),
],
),
// Sample Houses & News Section
QuickActionSection(
@@ -212,11 +214,11 @@ class HomePage extends ConsumerWidget {
onTap: () =>
_showComingSoon(context, 'Đăng ký dự án', l10n),
),
QuickAction(
icon: Icons.article,
label: 'Tin tức',
onTap: () => _showComingSoon(context, 'Tin tức', l10n),
),
// QuickAction(
// icon: Icons.article,
// label: 'Tin tức',
// onTap: () => _showComingSoon(context, 'Tin tức', l10n),
// ),
],
),