private async void button6_Clicked(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(entryCli.Text))
{
_ = MercatorPenguin.Dialogs.Stop(this, "Je moet eerst een klant kiezen!");
return;
}
button6.IsEnabled = false;
string id_cli = await EditSig(new MercatorPenguin.Classes.EditSigDescriptor(this, activityIndicator) { Module = MercatorPenguin.Enums.SigEnum.CLI, IdSig = entryCli.Text });
if (string.IsNullOrEmpty(id_cli))
await MercatorPenguin.Dialogs.Stop(this, "De fiche is niet aangepast!");
else
await MercatorPenguin.Dialogs.Stop(this, "De fiche is aangepast en opgeslagen!");
button6.IsEnabled = true;
}