ScanOrderListViewController.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // ScanOrderListViewController.h
  3. // iSales-USAI
  4. //
  5. // Created by Rui Zhang on 2/8/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "LoginViewController.h"
  10. #import "ActiveViewController.h"
  11. #import "EnumSelectViewController.h"
  12. #import "UIView+Toast.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface ScanOrderListViewController : ActiveViewController
  15. @property (strong, nonatomic) IBOutlet UITableView *table_order;
  16. @property (weak, nonatomic) IBOutlet UITableView *table_upload;
  17. //@property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  18. @property (strong,nonatomic) NSMutableArray * content_data;
  19. @property dispatch_queue_t loading_queue;
  20. @property int offset;
  21. @property int limit;
  22. @property bool showNavibar;
  23. @property bool reset_result;
  24. //@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  25. @property (strong,nonatomic) NSString* load_more_hint;
  26. @property (strong,nonatomic) NSString* time_zone;
  27. @property (strong, nonatomic) IBOutlet UIToolbar *toolbarView;
  28. //@property (strong, nonatomic) IBOutlet UISearchBar *searchbar;
  29. @property (strong,nonatomic) NSString* keywords;
  30. @property bool reset;
  31. @property bool norefresh;
  32. @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary * order_detail);
  33. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnStatusFilter;
  34. @property (strong, nonatomic) NSString* statusFilter;
  35. @property (nonatomic , copy) void (^onCancel)(void);
  36. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_newOrder;
  37. @property (strong,nonatomic) NSMutableDictionary * status_cadedate;
  38. //@property (strong, nonatomic) IBOutlet UIView *toolbarView;
  39. @property (strong, nonatomic) IBOutlet UILabel *label_filter;
  40. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  41. @property int init_style;
  42. @property (strong,nonatomic) NSString* customer_id;
  43. @end
  44. NS_ASSUME_NONNULL_END