feat(block1): germination tests per lot with derived rate
Record germination tests on a lot and surface the result. - GerminationEntry model with a derived rate (germinated / sample). VarietyLot carries its tests (most-recent first) and exposes latestGerminationRate. - VarietyRepository.addGerminationTest; watchVariety now also re-emits on germination-test changes, so the detail refreshes live. - Detail UI: each lot shows a germination % badge and a grass action that opens a sheet listing past tests and adding a new one (germinated + sample size). i18n strings (ES/EN). Tests: derived-rate + reactivity at the repository, and a widget test for the record-test → badge flow. Full suite: 35 passing, 0 skipped.
This commit is contained in:
parent
4e8b8293e0
commit
37427fa738
10 changed files with 405 additions and 6 deletions
|
|
@ -45,6 +45,7 @@ class Translations with BaseTranslations<AppLocale, Translations> {
|
|||
late final Translations$inventory$en inventory = Translations$inventory$en.internal(_root);
|
||||
late final Translations$quickAdd$en quickAdd = Translations$quickAdd$en.internal(_root);
|
||||
late final Translations$detail$en detail = Translations$detail$en.internal(_root);
|
||||
late final Translations$germination$en germination = Translations$germination$en.internal(_root);
|
||||
late final Translations$editVariety$en editVariety = Translations$editVariety$en.internal(_root);
|
||||
late final Translations$addLot$en addLot = Translations$addLot$en.internal(_root);
|
||||
late final Translations$quantityKind$en quantityKind = Translations$quantityKind$en.internal(_root);
|
||||
|
|
@ -173,6 +174,33 @@ class Translations$detail$en {
|
|||
String get noYear => 'Year unknown';
|
||||
}
|
||||
|
||||
// Path: germination
|
||||
class Translations$germination$en {
|
||||
Translations$germination$en.internal(this._root);
|
||||
|
||||
final Translations _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
|
||||
/// en: 'Germination'
|
||||
String get title => 'Germination';
|
||||
|
||||
/// en: 'Add test'
|
||||
String get add => 'Add test';
|
||||
|
||||
/// en: 'Sample size'
|
||||
String get sampleSize => 'Sample size';
|
||||
|
||||
/// en: 'Germinated'
|
||||
String get germinated => 'Germinated';
|
||||
|
||||
/// en: 'No germination tests yet.'
|
||||
String get none => 'No germination tests yet.';
|
||||
|
||||
/// en: '{percent}%'
|
||||
String result({required Object percent}) => '${percent}%';
|
||||
}
|
||||
|
||||
// Path: editVariety
|
||||
class Translations$editVariety$en {
|
||||
Translations$editVariety$en.internal(this._root);
|
||||
|
|
@ -315,6 +343,12 @@ extension on Translations {
|
|||
'detail.deleteConfirm' => 'Delete this seed?',
|
||||
'detail.year' => ({required Object year}) => 'Year ${year}',
|
||||
'detail.noYear' => 'Year unknown',
|
||||
'germination.title' => 'Germination',
|
||||
'germination.add' => 'Add test',
|
||||
'germination.sampleSize' => 'Sample size',
|
||||
'germination.germinated' => 'Germinated',
|
||||
'germination.none' => 'No germination tests yet.',
|
||||
'germination.result' => ({required Object percent}) => '${percent}%',
|
||||
'editVariety.title' => 'Edit seed',
|
||||
'editVariety.name' => 'Name',
|
||||
'editVariety.category' => 'Category',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue