import android.os.Bundle;
import android.preference.PreferenceManager;
import android.provider.FontsContract;
+import android.support.design.widget.BaseTransientBottomBar;
import android.support.design.widget.Snackbar;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AppCompatActivity;
"SELECT %s as a, case when %s_upper LIKE ?||'%%' then 1 " +
"WHEN %s_upper LIKE '%%:'||?||'%%' then 2 " +
"WHEN %s_upper LIKE '%% '||?||'%%' then 3 " + "else 9 end " +
- "FROM %s " + "WHERE %s_upper LIKE " + "'%%'||?||'%%' " +
+ "FROM %s " + "WHERE %s_upper LIKE '%%'||?||'%%' " +
"ORDER BY 2, 1;", field, field, field, field, table, field),
new String[]{str, str, str, str});
}
@Override
- public void done() {
+ public
+ void done(String error) {
progress.setVisibility(View.INVISIBLE);
Log.d("visuals", "hiding progress");
- reset_form();
+ if (error == null) reset_form();
+ else Snackbar.make(findViewById(R.id.new_transaction_accounts_table), error,
+ BaseTransientBottomBar.LENGTH_LONG).show();
+
toggle_all_editing(true);
+ check_transaction_submittable();
}
private void reset_form() {
private String session;
private String backend_url;
private LedgerTransaction ltr;
+ protected String error;
private SharedPreferences pref;
void setPref(SharedPreferences pref) {
@Override
protected Void doInBackground(LedgerTransaction... ledgerTransactions) {
- backend_url = pref.getString("backend_url", "");
- ltr = ledgerTransactions[0];
+ error = null;
try {
+ backend_url = pref.getString("backend_url", "");
+ ltr = ledgerTransactions[0];
+
int tried = 0;
- while (! send_ok() ) {
+ while (!send_ok()) {
try {
tried++;
if (tried >= 2)
throw new IOException(String.format("aborting after %d tries", tried));
sleep(100);
- } catch (InterruptedException e) {
+ }
+ catch (InterruptedException e) {
e.printStackTrace();
}
}
}
- catch (IOException e) {
+ catch (Exception e) {
e.printStackTrace();
+ error = e.getMessage();
}
return null;
@Override
protected void onPostExecute(Void aVoid) {
super.onPostExecute(aVoid);
- task_callback.done();
+ task_callback.done(error);
}
}