Ejemplo n.º 1
0
  void ResetGUI() {
    // Customer
    customer = null;
    lblCustomer.setText(getString(R.string.text_customer));

    // Products
    productAdapter.clear();
    productAdapter.notifyDataSetChanged();

    // Payment Type
    cmbPaymentType.setSelection(0);

    // Total
    totalSale = 0;
    lblTotal.setText(
        getString(R.string.currency_symbol) + Functions.GetFloatValueWithTwoDecimals(totalSale));
  }