|
|
|
using Model;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Numerics;
|
|
|
|
|
|
|
|
namespace IHM.Mobile;
|
|
|
|
|
|
|
|
public partial class AjoutBanques : ContentPage
|
|
|
|
{
|
|
|
|
public Manager Mgr => (App.Current as App).Manager;
|
|
|
|
public AjoutBanques()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
BindingContext = Mgr;
|
|
|
|
Mgr.importBanques();
|
|
|
|
}
|
|
|
|
|
|
|
|
private async void ImportOFX_Clicked(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
PickOptions options = new PickOptions();
|
|
|
|
options.PickerTitle = "Choisir un fichier OFX";
|
|
|
|
|
|
|
|
try{
|
|
|
|
var result = await FilePicker.Default.PickAsync(options);
|
|
|
|
if (result != null)
|
|
|
|
{
|
|
|
|
if (result.FileName.EndsWith("ofx", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
IList<Compte> lesComptes = Mgr.getCompteFromOFX(result.FullPath);
|
|
|
|
Debug.WriteLine(lesComptes.Count);
|
|
|
|
foreach(Compte compte in lesComptes)
|
|
|
|
{
|
|
|
|
Mgr.User.LesBanques.First().AjouterCompte(compte);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new FileLoadException("Imposible de charger le fichier");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
catch(Exception ex)
|
|
|
|
{
|
|
|
|
Debug.WriteLine(ex.Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|