feat: update profit loss ui
Build & Deploy iOS to TestFlight / build-and-deploy (push) Waiting to run

This commit is contained in:
Efril
2026-06-24 10:14:37 +07:00
parent b07af60778
commit 0917c5132b
22 changed files with 4332 additions and 1685 deletions
+25 -1
View File
@@ -496,5 +496,29 @@
"example": "48"
}
}
}
},
"mtd_month": "MTD ({month})",
"@mtd_month": {
"placeholders": {
"month": {
"type": "String",
"example": "June"
}
}
},
"profit_loss_date": "Profit / Loss · {date}",
"@profit_loss_date": {
"placeholders": {
"date": {
"type": "String",
"example": "22 Jun 2026"
}
}
},
"profit_loss_report": "Profit & Loss Report",
"@profit_loss_report": {},
"net_profit_loss": "Net Profit/Loss",
"@net_profit_loss": {},
"cost_breakdown": "Cost Breakdown",
"@cost_breakdown": {}
}
+25 -1
View File
@@ -496,5 +496,29 @@
"example": "48"
}
}
}
},
"mtd_month": "MTD ({month})",
"@mtd_month": {
"placeholders": {
"month": {
"type": "String",
"example": "Juni"
}
}
},
"profit_loss_date": "Laba / Rugi · {date}",
"@profit_loss_date": {
"placeholders": {
"date": {
"type": "String",
"example": "22 Jun 2026"
}
}
},
"profit_loss_report": "Laporan Laba Rugi",
"@profit_loss_report": {},
"net_profit_loss": "Laba/Rugi Bersih",
"@net_profit_loss": {},
"cost_breakdown": "Rincian Biaya",
"@cost_breakdown": {}
}
+30
View File
@@ -1480,6 +1480,36 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'{count} portions sold'**
String portion_sold(int count);
/// No description provided for @mtd_month.
///
/// In en, this message translates to:
/// **'MTD ({month})'**
String mtd_month(String month);
/// No description provided for @profit_loss_date.
///
/// In en, this message translates to:
/// **'Profit / Loss · {date}'**
String profit_loss_date(String date);
/// No description provided for @profit_loss_report.
///
/// In en, this message translates to:
/// **'Profit & Loss Report'**
String get profit_loss_report;
/// No description provided for @net_profit_loss.
///
/// In en, this message translates to:
/// **'Net Profit/Loss'**
String get net_profit_loss;
/// No description provided for @cost_breakdown.
///
/// In en, this message translates to:
/// **'Cost Breakdown'**
String get cost_breakdown;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
+19
View File
@@ -710,4 +710,23 @@ class AppLocalizationsEn extends AppLocalizations {
String portion_sold(int count) {
return '$count portions sold';
}
@override
String mtd_month(String month) {
return 'MTD ($month)';
}
@override
String profit_loss_date(String date) {
return 'Profit / Loss · $date';
}
@override
String get profit_loss_report => 'Profit & Loss Report';
@override
String get net_profit_loss => 'Net Profit/Loss';
@override
String get cost_breakdown => 'Cost Breakdown';
}
+19
View File
@@ -710,4 +710,23 @@ class AppLocalizationsId extends AppLocalizations {
String portion_sold(int count) {
return '$count porsi terjual';
}
@override
String mtd_month(String month) {
return 'MTD ($month)';
}
@override
String profit_loss_date(String date) {
return 'Laba / Rugi · $date';
}
@override
String get profit_loss_report => 'Laporan Laba Rugi';
@override
String get net_profit_loss => 'Laba/Rugi Bersih';
@override
String get cost_breakdown => 'Rincian Biaya';
}