292 lines
11 KiB
Dart
292 lines
11 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:fcs/model/language_model.dart';
|
|
import 'package:fcs/model/main_model.dart';
|
|
import 'package:fcs/model/po_model.dart';
|
|
import 'package:fcs/pages/po/po_submission_form.dart';
|
|
import 'package:fcs/pages/util.dart';
|
|
import 'package:fcs/theme/theme.dart';
|
|
import 'package:fcs/vo/po.dart';
|
|
import 'package:fcs/vo/popup_menu.dart';
|
|
import 'package:fcs/widget/localization/app_translations.dart';
|
|
import 'package:fcs/widget/popupmenu.dart';
|
|
import 'package:fcs/widget/progress.dart';
|
|
|
|
class SubmissionList extends StatefulWidget {
|
|
@override
|
|
_SubmissionListState createState() => _SubmissionListState();
|
|
}
|
|
|
|
class _SubmissionListState extends State<SubmissionList> {
|
|
var dateFormatter = new DateFormat('dd MMM yyyy');
|
|
final double dotSize = 10.0;
|
|
PopupMenu selectedChoices = poMenus[0];
|
|
POSubmission poSubmission;
|
|
DateTime _selectedDate = DateTime.now();
|
|
String status;
|
|
int _selectedIndex = 0;
|
|
int _dateIndex = 0;
|
|
bool _isLoading = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
var poModel = Provider.of<POSubmissionModel>(context, listen: false);
|
|
_selectedIndex = poModel.popupMenu.index;
|
|
_dateIndex = poModel.dateIndex;
|
|
_selectedDate = poModel.selectedDate;
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
Future<Null> _selectDate(BuildContext context) async {
|
|
var poSubmissionModel = Provider.of<POSubmissionModel>(context);
|
|
|
|
final DateTime picked = await showDatePicker(
|
|
context: context,
|
|
initialDate: _selectedDate,
|
|
firstDate: DateTime(2015, 8),
|
|
lastDate: DateTime(2101),
|
|
builder: (BuildContext context, Widget child) {
|
|
return Theme(
|
|
data: ThemeData.light().copyWith(
|
|
primaryColor: primaryColor, //Head background
|
|
accentColor: secondaryColor, //selection color
|
|
dialogBackgroundColor: Colors.white, //Background color
|
|
),
|
|
child: child,
|
|
);
|
|
},
|
|
);
|
|
if (picked != null) {
|
|
var pickedDate = new DateTime(picked.year, picked.month, picked.day);
|
|
var currentDate = new DateTime(
|
|
DateTime.now().year, DateTime.now().month, DateTime.now().day);
|
|
|
|
this._dateIndex = pickedDate == currentDate ? 0 : 1;
|
|
setState(() {
|
|
_selectedDate = picked;
|
|
poSubmissionModel.filterData(
|
|
this.status, _selectedDate, this._selectedIndex, this._dateIndex);
|
|
});
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var poSubmissionModel = Provider.of<POSubmissionModel>(context);
|
|
MainModel mainModel = Provider.of<MainModel>(context);
|
|
bool isBuyer = mainModel.user.isBuyer();
|
|
var languageModle = Provider.of<LanguageModel>(context);
|
|
|
|
return LocalProgress(
|
|
inAsyncCall: _isLoading,
|
|
child: Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: primaryColor,
|
|
title: Text(
|
|
AppTranslations.of(context).text("po.title"),
|
|
style: languageModle.isEng
|
|
? TextStyle()
|
|
: TextStyle(fontFamily: 'MyanmarUnicode'),
|
|
),
|
|
actions: <Widget>[
|
|
InkWell(
|
|
child: Container(
|
|
padding: EdgeInsets.only(top: 15),
|
|
child: Stack(
|
|
children: <Widget>[
|
|
Image.asset(
|
|
"assets/date_filter.png",
|
|
color: Colors.white,
|
|
width: 25,
|
|
),
|
|
_dateIndex == 0
|
|
? Container()
|
|
: Positioned(
|
|
bottom: 15,
|
|
right: 10,
|
|
child: Container(
|
|
width: 10,
|
|
height: 10,
|
|
decoration: new BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: secondaryColor,
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
onTap: () => _selectDate(context),
|
|
),
|
|
PopupMenuButton<PopupMenu>(
|
|
elevation: 3.2,
|
|
onSelected: (selected) {
|
|
setState(() {
|
|
_selectedIndex = selected.index;
|
|
});
|
|
if (selected.status == 'All') {
|
|
status = null;
|
|
} else {
|
|
status = selected.status;
|
|
}
|
|
poSubmissionModel.filterData(
|
|
status, _selectedDate, _selectedIndex, _dateIndex);
|
|
},
|
|
icon: Container(
|
|
width: 30,
|
|
height: 30,
|
|
decoration: new BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: Colors.white,
|
|
),
|
|
child: Stack(
|
|
fit: StackFit.expand,
|
|
children: <Widget>[
|
|
Icon(
|
|
Icons.filter_list,
|
|
color: primaryColor,
|
|
),
|
|
_selectedIndex != 0
|
|
? Positioned(
|
|
bottom: 0,
|
|
right: 0,
|
|
child: Container(
|
|
width: 10,
|
|
height: 10,
|
|
decoration: new BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: secondaryColor,
|
|
),
|
|
),
|
|
)
|
|
: Container()
|
|
],
|
|
)),
|
|
itemBuilder: (BuildContext context) {
|
|
return statusMenu.map((PopupMenu choice) {
|
|
return PopupMenuItem<PopupMenu>(
|
|
value: choice,
|
|
child: Row(
|
|
children: <Widget>[
|
|
Text(choice.status),
|
|
SizedBox(
|
|
width: 10,
|
|
),
|
|
_selectedIndex != null &&
|
|
_selectedIndex == choice.index
|
|
? Icon(
|
|
Icons.check,
|
|
color: Colors.grey,
|
|
)
|
|
: Container(),
|
|
],
|
|
),
|
|
);
|
|
}).toList();
|
|
}),
|
|
],
|
|
),
|
|
floatingActionButton: isBuyer
|
|
? FloatingActionButton(
|
|
backgroundColor: primaryColor,
|
|
heroTag: "btn2",
|
|
onPressed: () => Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => POSubmissionForm()),
|
|
),
|
|
child: Icon(Icons.add),
|
|
)
|
|
: null,
|
|
body: new ListView.builder(
|
|
scrollDirection: Axis.vertical,
|
|
padding: EdgeInsets.only(left: 15, right: 15, top: 15),
|
|
shrinkWrap: true,
|
|
itemCount: poSubmissionModel.pos.length,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
return Card(
|
|
elevation: 10,
|
|
color: Colors.white,
|
|
child: InkWell(
|
|
onTap: () {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => POSubmissionForm(
|
|
poSubmission: poSubmissionModel.pos[index],
|
|
)),
|
|
);
|
|
},
|
|
child: Row(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: new Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 16.0),
|
|
child: new Row(
|
|
children: <Widget>[
|
|
new Padding(
|
|
padding: new EdgeInsets.symmetric(
|
|
horizontal: 15.0 - dotSize / 2),
|
|
child: Padding(
|
|
padding: EdgeInsets.all(5.0),
|
|
child: Image.asset(
|
|
"assets/pay.png",
|
|
width: 40,
|
|
height: 40,
|
|
color: primaryColor,
|
|
),
|
|
),
|
|
),
|
|
new Expanded(
|
|
child: new Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
new Text(
|
|
poSubmissionModel.pos[index].poNumber
|
|
.toString(),
|
|
style: new TextStyle(
|
|
fontSize: 12.0, color: Colors.black),
|
|
),
|
|
new Text(
|
|
dateFormatter.format(
|
|
poSubmissionModel.pos[index].poDate),
|
|
style: new TextStyle(
|
|
fontSize: 12.0, color: Colors.grey),
|
|
),
|
|
!isBuyer
|
|
? new Text(
|
|
poSubmissionModel
|
|
.pos[index].userName
|
|
.toString(),
|
|
style: new TextStyle(
|
|
fontSize: 12.0,
|
|
color: Colors.grey),
|
|
)
|
|
: Container()
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(right: 18.0),
|
|
child: getStatus(poSubmissionModel.pos[index].status),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}),
|
|
),
|
|
);
|
|
}
|
|
}
|