123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- import 'dart:convert';
-
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- import 'package:fluttertoast/fluttertoast.dart';
- import 'package:google_fonts/google_fonts.dart';
- import 'package:hris_selfservice_mobile/Screens/Menu/SlipGaji/RequestHttp/detailSlipGaji_post.dart';
- import 'package:hris_selfservice_mobile/Screens/Menu/SlipGaji/RequestHttp/historySlipGaji_post.dart';
- import 'package:hris_selfservice_mobile/Screens/Menu/SlipGaji/background.dart';
- import 'package:progress_dialog_null_safe/progress_dialog_null_safe.dart';
- import 'dart:developer' as logDev;
-
- import 'package:shared_preferences/shared_preferences.dart';
-
- class SlipGajiScreen extends StatefulWidget {
- const SlipGajiScreen({Key? key}) : super(key: key);
-
- @override
- State<SlipGajiScreen> createState() => _SlipGajiScreenState();
- }
-
- class _SlipGajiScreenState extends State<SlipGajiScreen> {
- //History Slip Gaji
- late List <String> dateTo_List;
- late List <String> batchID_List;
-
- //Detail Slip Gaji
- late List <String> number_List;
- late List <String> period_List;
- late List <String> namaPegawai_List;
- late List <String> status_List;
- late List <String> structure_List;
- late String position;
-
- //Komponen Gaji
- late List <String> name_List;
- late List <String> category_List;
- late List <String> total_List;
-
- int HistoryLength = 0;
- late int indexBatchID = 0;
-
- var selectedDate;
- bool visible = false;
-
- @override
- void initState() {
- super.initState();
- dateTo_List = [""];
- batchID_List = [""];
-
- number_List = [""];
- period_List = [""];
- namaPegawai_List = [""];
- status_List = [""];
- structure_List = [""];
- position = "";
-
- name_List = [""];
- category_List = [""];
- total_List = [""];
-
- WidgetsBinding.instance.addPostFrameCallback((_) {
- getHistoryData();
- });
- }
-
- getHistoryData() async {
- ProgressDialog loading = ProgressDialog(context);
- loading = ProgressDialog(context,
- type: ProgressDialogType.normal, isDismissible: false, showLogs: true);
- loading.style(
- message: 'Please Wait .....',
- borderRadius: 3,
- backgroundColor: Colors.white,
- progressWidget: CircularProgressIndicator(),
- elevation: 10.0,
- padding: EdgeInsets.all(10),
- insetAnimCurve: Curves.easeInOut,
- progress: 0.0,
- maxProgress: 100.0,
- progressTextStyle: TextStyle(
- color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
- messageTextStyle: TextStyle(
- color: Colors.black, fontSize: 15.0, fontWeight: FontWeight.w600));
- loading.show();
- HistorySlipGaji_Post.connectToAPI().then((valueResult) async {
- Map<String, dynamic> object = json.decode(valueResult);
- if (object.containsKey("result").toString() == "true"){
- String result = object['result'].toString();
- if (result.contains("failed")) {
- loading.hide();
- setState(() {
- alertDialogFailedRetrievedData(context);
- });
- } else {
- List <dynamic> historySlipGaji = object['result'];
- setState(() {
- for (int i = 0; i < historySlipGaji.length; i++){
- String dateTo = historySlipGaji[i]['date_to'].toString();
- String bulan = dateTo.substring(5,7);
- String tahun = dateTo.substring(0,4);
- String batchID = historySlipGaji[i]['batch_id'].toString();
-
- String bulanStr = "";
- if (bulan == "01"){
- bulanStr = "January";
- } else if (bulan == "02"){
- bulanStr = "February";
- } else if (bulan == "03"){
- bulanStr = "March";
- } else if (bulan == "04"){
- bulanStr = "April";
- } else if (bulan == "05"){
- bulanStr = "May";
- } else if (bulan == "06"){
- bulanStr = "June";
- } else if (bulan == "07"){
- bulanStr = "July";
- } else if (bulan == "08"){
- bulanStr = "August";
- } else if (bulan == "09"){
- bulanStr = "September";
- } else if (bulan == "10"){
- bulanStr = "October";
- } else if (bulan == "11"){
- bulanStr = "November";
- } else if (bulan == "12"){
- bulanStr = "December";
- }
-
- String bulanTahun = bulanStr + " " + tahun;
- dateTo_List.add(bulanTahun);
- batchID_List.add(batchID);
-
- }
- dateTo_List.removeAt(0);
- batchID_List.removeAt(0);
- logDev.log(dateTo_List.toString(), name: "LIST DATE");
- HistoryLength = historySlipGaji.length;
-
- });
- loading.hide();
- }
- } else {
- setState((){
- alertDialogFailedResponse(context);
- Fluttertoast.showToast(
- msg: "Server Response Error",
- toastLength: Toast.LENGTH_SHORT,
- gravity: ToastGravity.CENTER,
- timeInSecForIosWeb: 1,
- textColor: Colors.white,
- fontSize: 16.0);
- });
- loading.hide();
- }
- });
- return HistoryLength;
- }
-
- getDetailData () async {
- ProgressDialog loading = ProgressDialog(context);
- loading = ProgressDialog(context,
- type: ProgressDialogType.normal, isDismissible: false, showLogs: true);
- loading.style(
- message: 'Please Wait .....',
- borderRadius: 3,
- backgroundColor: Colors.white,
- progressWidget: CircularProgressIndicator(),
- elevation: 10.0,
- padding: EdgeInsets.all(10),
- insetAnimCurve: Curves.easeInOut,
- progress: 0.0,
- maxProgress: 100.0,
- progressTextStyle: TextStyle(
- color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
- messageTextStyle: TextStyle(
- color: Colors.black, fontSize: 15.0, fontWeight: FontWeight.w600));
- loading.show();
-
- //logDev.log(batchID_List.toString(), name: "ALL BATCH ID");
-
- final SharedPreferences prefs = await SharedPreferences.getInstance();
- DetailSlipGaji_Post.connectToAPI(batchID_List[indexBatchID]).then((valueResult) async {
- Map<String, dynamic> object = json.decode(valueResult);
- if (object.containsKey("result").toString() == "true"){
- String result = object['result'].toString();
- if (result.contains("failed")) {
- loading.hide();
- logDev.log("ERROR", name: "FAILED RESULT");
- setState(() {
- alertDialogFailedRetrievedData(context);
- });
- } else {
- //List <dynamic> detailSlipGaji = object['result'];
- setState(() {
- position = prefs.getString('position')!;
- String nomor = object['result']['number'];
- String tanggalAwal = object['result']['date_from'];
- String tanggalAkhir = object['result']['date_to'];
- String namaPegawai = object['result']['employee'];
- String status = object['result']['status'];
- String structure =object['result']['structure'];
- number_List.add(nomor);
- structure_List.add(structure);
- period_List.add(tanggalAwal + " to " + tanggalAkhir);
- namaPegawai_List.add(namaPegawai);
- status_List.add(status);
-
- List <dynamic> component = object['result']['component'];
- logDev.log(component.length.toString(), name: "BANYAK COMPONENT");
- for (int j = 0; j < component.length; j++){
- String name = component[j]['name'].toString();
- String category = component[j]['category'].toString();
- int total = component[j]['total'];
-
- name_List.add(name);
- category_List.add(category);
- total_List.add(total.toString());
- }
-
- number_List.remove(0);
- structure_List.removeAt(0);
- period_List.removeAt(0);
- namaPegawai_List.removeAt(0);
- status_List.removeAt(0);
-
- name_List.removeAt(0);
- category_List.removeAt(0);
- total_List.removeAt(0);
- });
- loading.hide();
- }
- } else {
- setState((){
- alertDialogFailedResponse(context);
- logDev.log("ERROR", name: "RESPONSE FAILED RESULT");
- /* Fluttertoast.showToast(
- msg: "Server Response Error",
- toastLength: Toast.LENGTH_SHORT,
- gravity: ToastGravity.CENTER,
- timeInSecForIosWeb: 1,
- textColor: Colors.white,
- fontSize: 16.0);*/
- });
- loading.hide();
- }
- });
-
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: SingleChildScrollView(
- child: Column(
- children: <Widget>[
- Stack(
- children: [
- WavyHeader(),
- Container(
- margin: EdgeInsets.only(top: MediaQuery.of(context).size.height/6 - 20),
- padding: EdgeInsets.fromLTRB(20, 5, 25, 5),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.end,
- crossAxisAlignment: CrossAxisAlignment.end,
- children: [
- Text(
- 'Pay Slip\t\t',
- maxLines: 1,
- style: GoogleFonts.luckiestGuy(
- fontSize: 28,
- color: Colors.red,
- fontStyle: FontStyle.italic,
- ),
- ),
- Image.asset('assets/icons/ic_salary.png', width: 40, height: 40,),
- ],
- )
- ),
- SafeArea(
- child: Container(
- width: MediaQuery.of(context).size.width,
- margin: EdgeInsets.only(
- top: MediaQuery.of(context).size.height / 5,
- left: 15,
- right: 15,
- ),
- child: Column(
- children: [
- Container(
- margin: EdgeInsets.only(bottom: 20),
- child: Row(
- children: [
- Expanded(
- flex: 2,
- child: Text(
- 'Date\t:\t',
- style: GoogleFonts.inconsolata(fontSize: 20),
- )),
- Expanded(
- flex: 8,
- child: Container(
- decoration: BoxDecoration(
- color: CupertinoColors.systemGrey2,
- borderRadius: BorderRadius.circular(5)),
- child: DropdownButton(
- value: this.selectedDate,
- isExpanded: true,
- underline: SizedBox(),
- hint: Text(
- '\t\t\tChoose Date',
- style: TextStyle(color: Colors.black54),
- ),
- onChanged: (value) {
- print(value);
- setState(() {
- selectedDate = value!;
- if (selectedDate == value){
- visible = true;
- for (int i = 0; i < dateTo_List.length; i ++){
- if (selectedDate == dateTo_List[i]){
- indexBatchID = i;
- break;
- }
- }
- //logDev.log(indexBatchID.toString(), name: "INDEX BATCH ID");
- getDetailData();
- } else {
- visible = false;
- }
- });
- },
- items: dateTo_List
- .map(
- (e) => DropdownMenuItem(
- value: e,
- child: Text("\t\t\t" + e)),
- )
- .toList(),
- ),
- )),
- ],
- ),
- ),
- Visibility(
- visible: visible,
- child: Text(
- 'Pay Slip ' + selectedDate.toString() + "\nPT. Global Service Indonesia",
- textAlign: TextAlign.center,
- style: GoogleFonts.viga(
- fontSize: 15,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- Visibility(
- visible: visible,
- child: ListView.builder(
- shrinkWrap: true,
- itemCount: 1,
- itemBuilder: (context, int indexBatchID){
- return Container(
- //height: 200,
- margin: EdgeInsets.fromLTRB(0, 15, 0, 10),
- decoration: BoxDecoration(
- color: Color(0XFFFFFEFC),
- borderRadius: BorderRadius.circular(10),
- ),
- child: Card(
- elevation: 5,
- child: Column(
- children: [
- Text(number_List[indexBatchID], style: GoogleFonts.rubikBubbles(fontSize: 16)),
- Text(number_List[indexBatchID], style: GoogleFonts.rubikBubbles(fontSize: 16)),
- Text(structure_List[indexBatchID], style: GoogleFonts.nunito(fontSize: 15)),
- Text(period_List[indexBatchID], style: GoogleFonts.nunito(fontSize: 15)),
- Text(name_List[indexBatchID], style: GoogleFonts.nunito(fontSize: 15)),
- Text(position, style: GoogleFonts.nunito(fontSize: 15)),
- Text("Payment : " /*+ payment_List[i]*/, style: GoogleFonts.yeonSung(fontSize: 14, fontStyle: FontStyle.italic))],
- ),
- ),
- );
- },
- ),
- ),
- Visibility(
- visible: visible,
- child: Container(
- alignment: Alignment.centerRight,
- child: ElevatedButton(
- onPressed: () {},
- style: ElevatedButton.styleFrom(),
- child: Text('Download Slip Gaji'),
- ),
- ),
- ),
- ],
- ),
- )),
- ],
- ),
- ],
- )),
- );
- }
- }
-
- const List<Color> Gradients1 = [
- Color(0xFF0EDED2),
- Color(0xFF03A0FE),
- ];
-
-
- alertDialogFailedRetrievedData(BuildContext context){
- Widget okButton = TextButton(
- child: Text("Refresh"),
- onPressed: () {
- Navigator.of(context, rootNavigator: true).pop();
- Navigator.pushReplacement(context, MaterialPageRoute(
- builder: (context) => SlipGajiScreen()));
- },
- );
-
- Widget noButton = TextButton(
- child: Text("Back"),
- onPressed: () {
- Navigator.of(context, rootNavigator: true).pop();
- Navigator.pop(context);
-
- },
- );
-
- // set up the AlertDialog
- AlertDialog alert = AlertDialog(
- title: Text("Employee Self Service"),
- content: Text("Failed to Retrieve Data"),
- actions: [
- noButton,
- okButton,
- ],
- );
-
- // show the dialog
- showDialog(
- context: context,
- builder: (BuildContext context) {
- return alert;
- },
- );
- }
-
- alertDialogFailedResponse(BuildContext context){
- Widget okButton = TextButton(
- child: Text("Refresh"),
- onPressed: () {
- Navigator.of(context, rootNavigator: true).pop();
- Navigator.pushReplacement(context, MaterialPageRoute(
- builder: (context) => SlipGajiScreen()));
- },
- );
-
- Widget noButton = TextButton(
- child: Text("Back"),
- onPressed: () {
- Navigator.of(context, rootNavigator: true).pop();
- Navigator.pop(context);
-
- },
- );
-
- // set up the AlertDialog
- AlertDialog alert = AlertDialog(
- title: Text("Employee Self Service"),
- content: Text("Server Response Error"),
- actions: [
- noButton,
- okButton,
- ],
- );
-
- // show the dialog
- showDialog(
- context: context,
- builder: (BuildContext context) {
- return alert;
- },
- );
- }
|