Guest User

Untitled

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. fsp_SellDet_New_ByItemID fsp_SellDet_New_ByItemID = new fsp_SellDet_New_ByItemID(this);
  2. fsp_SellDet_New_ByItemID.ExecuteNonQuery(_SellID,
  3. _ItemID,
  4. _PodID,
  5. _ItemSellQty,
  6. _ItemPrice,
  7. _ItemPricePer,
  8. -_BaseDiscount,
  9. -_AdditionalDiscount,
  10. _ItemSum,
  11. _ItemVAT,
  12. _ItemCode,
  13. _ItemShortName,
  14. _ItemBrand,
  15. _ItemIssue);
  16. Intent i = new Intent(this, typeof(SellDet));
  17. StartActivity(i);
  18. Finish();
  19.  
  20. catch (Exception ex)
  21. {
  22. _dlgAlert = new AlertDialog.Builder(this).Create();
  23. _dlgAlert.SetMessage(ex.Message);
  24. _dlgAlert.SetTitle(Resources.GetString(Resource.String.Error));
  25. _dlgAlert.SetButton("OK", delegate { });
  26. _dlgAlert.Show();
  27. return;
  28. }
Add Comment
Please, Sign In to add comment