12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import 'dart:convert';
- import 'dart:core';
- import 'package:flutter/material.dart';
- import 'package:http/http.dart' as http;
- import 'package:employee_selfservice_mobile/constants.dart';
- import 'dart:developer' as developer;
-
- import 'package:shared_preferences/shared_preferences.dart';
-
- class PengajuanReimburse_Post {
- late String name;
- late String product;
- late String date;
- late String total;
- late String payment_mode;
- late String description;
- late List<String> file;
- late String session;
-
- PengajuanReimburse_Post({required this.session});
-
- static Future<String> connectToAPI(String name, String product, String date, String total, String payment_mode, String description, List<String> file) async {
- String URL = baseURL + "/api/v1/pengajuan_reimburse";
-
- final SharedPreferences prefs = await SharedPreferences.getInstance();
- final session = prefs.getString('session');
-
- var sendData = await http.post(Uri.parse(URL), body: jsonEncode({
- "data": [
- {
- "name" : name,
- "product" : product,
- "date" : date,
- "total" : total,
- "payment_mode" : payment_mode,
- "description" : description,
- "session": session,
- "file" : file
- }
- ]
- }), headers: {
- "Content-Type": "application/json",
- "Api-key": apiKey
- });
-
- developer.log(sendData.body, name: "Pengajuan REIMBURSE");
- return sendData.body;
- }
- }
|