ScanOrderListViewController.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_submit;
  17. @property (weak, nonatomic) IBOutlet UITableView *table_upload;
  18. //@property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  19. @property (strong,nonatomic) NSMutableArray * content_data;
  20. @property (strong,nonatomic) NSMutableArray * submit_content_data;
  21. @property dispatch_queue_t loading_queue;
  22. @property int offset;
  23. @property int limit;
  24. @property bool showNavibar;
  25. @property bool reset_result;
  26. //@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
  27. @property (strong,nonatomic) NSString* load_more_hint;
  28. @property (strong,nonatomic) NSString* time_zone;
  29. @property (strong, nonatomic) IBOutlet UIToolbar *toolbarView;
  30. //@property (strong, nonatomic) IBOutlet UISearchBar *searchbar;
  31. @property (strong,nonatomic) NSString* keywords;
  32. @property bool reset;
  33. @property bool norefresh;
  34. @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary * order_detail);
  35. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnStatusFilter;
  36. @property (strong, nonatomic) NSString* statusFilter;
  37. @property (nonatomic , copy) void (^onCancel)(void);
  38. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_newOrder;
  39. @property (strong,nonatomic) NSMutableDictionary * status_cadedate;
  40. //@property (strong, nonatomic) IBOutlet UIView *toolbarView;
  41. @property (strong, nonatomic) IBOutlet UILabel *label_filter;
  42. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  43. @property int init_style;
  44. @property (strong,nonatomic) NSString* customer_id;
  45. @end
  46. NS_ASSUME_NONNULL_END