feat: profit sharing
Build & Deploy iOS to TestFlight / build-and-deploy (push) Canceled after 0s

This commit is contained in:
efrilm
2026-08-21 22:31:54 +07:00
parent f9bfb69254
commit 2e4c77888e
48 changed files with 12553 additions and 162 deletions
+144
View File
@@ -1564,6 +1564,150 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Total Inventory Value'**
String get total_inventory_value;
/// No description provided for @profit_sharing.
///
/// In en, this message translates to:
/// **'Profit Sharing'**
String get profit_sharing;
/// No description provided for @profit_sharing_desc.
///
/// In en, this message translates to:
/// **'Revenue allocation for purchasing, owner, and team'**
String get profit_sharing_desc;
/// No description provided for @profit_sharing_allocation.
///
/// In en, this message translates to:
/// **'Profit Sharing Allocation'**
String get profit_sharing_allocation;
/// No description provided for @share_purchase.
///
/// In en, this message translates to:
/// **'Purchasing'**
String get share_purchase;
/// No description provided for @share_owner.
///
/// In en, this message translates to:
/// **'Owner'**
String get share_owner;
/// No description provided for @share_team.
///
/// In en, this message translates to:
/// **'Team'**
String get share_team;
/// No description provided for @weekly.
///
/// In en, this message translates to:
/// **'Weekly'**
String get weekly;
/// No description provided for @monthly.
///
/// In en, this message translates to:
/// **'Monthly'**
String get monthly;
/// No description provided for @period_breakdown.
///
/// In en, this message translates to:
/// **'Period Breakdown'**
String get period_breakdown;
/// No description provided for @revenue_by_brand.
///
/// In en, this message translates to:
/// **'Revenue by Brand'**
String get revenue_by_brand;
/// No description provided for @week_count.
///
/// In en, this message translates to:
/// **'{count} weeks'**
String week_count(int count);
/// No description provided for @order_count_label.
///
/// In en, this message translates to:
/// **'{count} orders'**
String order_count_label(int count);
/// No description provided for @gross_margin.
///
/// In en, this message translates to:
/// **'Gross Margin'**
String get gross_margin;
/// No description provided for @parent_category_summary.
///
/// In en, this message translates to:
/// **'Parent Category Summary'**
String get parent_category_summary;
/// No description provided for @sub_category.
///
/// In en, this message translates to:
/// **'Sub Category'**
String get sub_category;
/// No description provided for @qty.
///
/// In en, this message translates to:
/// **'Qty'**
String get qty;
/// No description provided for @std_hpp.
///
/// In en, this message translates to:
/// **'Std HPP'**
String get std_hpp;
/// No description provided for @real_hpp.
///
/// In en, this message translates to:
/// **'Real HPP'**
String get real_hpp;
/// No description provided for @status.
///
/// In en, this message translates to:
/// **'Status'**
String get status;
/// No description provided for @grand_total.
///
/// In en, this message translates to:
/// **'TOTAL'**
String get grand_total;
/// No description provided for @status_healthy.
///
/// In en, this message translates to:
/// **'Healthy'**
String get status_healthy;
/// No description provided for @status_watch.
///
/// In en, this message translates to:
/// **'Watch'**
String get status_watch;
/// No description provided for @status_critical.
///
/// In en, this message translates to:
/// **'Unhealthy'**
String get status_critical;
/// No description provided for @tap_row_for_detail.
///
/// In en, this message translates to:
/// **'Tap a card to see sub category and product details'**
String get tap_row_for_detail;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {