Browse Source

fix Bug #7895

master
daivph 5 years ago
parent
commit
3ba2872029
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      lib/presentation/screens/actions/harvest_process/sc_edit_action_harvest_process.dart
  2. +1
    -1
      lib/presentation/screens/actions/packing/sc_edit_action_packing.dart
  3. +1
    -1
      lib/presentation/screens/actions/sell/sc_edit_action_sell.dart

+ 1
- 1
lib/presentation/screens/actions/harvest_process/sc_edit_action_harvest_process.dart View File

if (snapshot.hasData) { if (snapshot.hasData) {
return DropdownButtonFormField<Harvest>( return DropdownButtonFormField<Harvest>(
value: harvestValue, value: harvestValue,
hint: Text("Mã thu hoạch *"),
hint: Text("Mã thu hoạch"),
onChanged: (Harvest newValue) { onChanged: (Harvest newValue) {
setState(() { setState(() {
harvestValue = newValue; harvestValue = newValue;

+ 1
- 1
lib/presentation/screens/actions/packing/sc_edit_action_packing.dart View File

if (snapshot.hasData) { if (snapshot.hasData) {
return DropdownButtonFormField<Harvest>( return DropdownButtonFormField<Harvest>(
value: harvestValue, value: harvestValue,
hint: Text("Mã thu hoạch *"),
hint: Text("Mã thu hoạch"),
onChanged: (Harvest newValue) { onChanged: (Harvest newValue) {
setState(() { setState(() {
harvestValue = newValue; harvestValue = newValue;

+ 1
- 1
lib/presentation/screens/actions/sell/sc_edit_action_sell.dart View File

if (snapshot.hasData) { if (snapshot.hasData) {
return DropdownButtonFormField<Harvest>( return DropdownButtonFormField<Harvest>(
value: harvestValue, value: harvestValue,
hint: Text("Mã thu hoạch *"),
hint: Text("Mã thu hoạch"),
onChanged: (Harvest newValue) { onChanged: (Harvest newValue) {
setState(() { setState(() {
harvestValue = newValue; harvestValue = newValue;

Loading…
Cancel
Save