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

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

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

@@ -155,7 +155,7 @@ class _EditActionPackingScreenState extends State<EditActionPackingScreen> {
if (snapshot.hasData) {
return DropdownButtonFormField<Harvest>(
value: harvestValue,
hint: Text("Mã thu hoạch *"),
hint: Text("Mã thu hoạch"),
onChanged: (Harvest newValue) {
setState(() {
harvestValue = newValue;

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

@@ -153,7 +153,7 @@ class _EditActionSellScreenState extends State<EditActionSellScreen> {
if (snapshot.hasData) {
return DropdownButtonFormField<Harvest>(
value: harvestValue,
hint: Text("Mã thu hoạch *"),
hint: Text("Mã thu hoạch"),
onChanged: (Harvest newValue) {
setState(() {
harvestValue = newValue;

Loading…
Cancel
Save