Warehousing2.xaml.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using Comal.Classes;
  2. using System;
  3. using Xamarin.Forms.Xaml;
  4. using PRSSecurity = InABox.Core.Security;
  5. namespace comal.timesheets
  6. {
  7. [XamlCompilation(XamlCompilationOptions.Compile)]
  8. public partial class Warehousing2
  9. {
  10. public Warehousing2 ()
  11. {
  12. InitializeComponent();
  13. }
  14. private void ReceiveStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  15. {
  16. Navigation.PushAsync(new PurchaseOrderPage());
  17. }
  18. private void IssueStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  19. {
  20. Navigation.PushAsync(new RecTrans(StockMovementBatchType.Issue));
  21. }
  22. private void TransferStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  23. {
  24. Navigation.PushAsync(new RecTrans(StockMovementBatchType.Transfer));
  25. }
  26. private void RearrangeLocations_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  27. {
  28. Navigation.PushAsync(new RelocatePage());
  29. }
  30. private void StockTake_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  31. {
  32. Navigation.PushAsync(new StocktakePage(Guid.Empty));
  33. }
  34. private void Search_Products_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
  35. {
  36. Navigation.PushAsync(new ProductList());
  37. }
  38. }
  39. }