| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using Comal.Classes;
- using System;
- using Xamarin.Forms.Xaml;
- using PRSSecurity = InABox.Core.Security;
- namespace comal.timesheets
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class Warehousing2
- {
- public Warehousing2 ()
- {
- InitializeComponent();
- }
-
- private void ReceiveStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new PurchaseOrderPage());
- }
- private void IssueStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new RecTrans(StockMovementBatchType.Issue));
- }
- private void TransferStock_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new RecTrans(StockMovementBatchType.Transfer));
- }
- private void RearrangeLocations_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new RelocatePage());
- }
- private void StockTake_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new StocktakePage(Guid.Empty));
- }
- private void Search_Products_OnTapped(ModuleMenuItem sender, ModuleMenuItemTappedArgs args)
- {
- Navigation.PushAsync(new ProductList());
- }
- }
- }
|