| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // ScanOrderListViewController.h
- // iSales-USAI
- //
- // Created by Rui Zhang on 2/8/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LoginViewController.h"
- #import "ActiveViewController.h"
- #import "EnumSelectViewController.h"
- #import "UIView+Toast.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanOrderListViewController : ActiveViewController
- @property (strong, nonatomic) IBOutlet UITableView *table_order;
- @property (weak, nonatomic) IBOutlet UITableView *table_upload;
- //@property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong,nonatomic) NSMutableArray * content_data;
- @property dispatch_queue_t loading_queue;
- @property int offset;
- @property int limit;
- @property bool showNavibar;
- @property bool reset_result;
- //@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
- @property (strong,nonatomic) NSString* load_more_hint;
- @property (strong,nonatomic) NSString* time_zone;
- @property (strong, nonatomic) IBOutlet UIToolbar *toolbarView;
- //@property (strong, nonatomic) IBOutlet UISearchBar *searchbar;
- @property (strong,nonatomic) NSString* keywords;
- @property bool reset;
- @property bool norefresh;
- @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary * order_detail);
- //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnStatusFilter;
- @property (strong, nonatomic) NSString* statusFilter;
- @property (nonatomic , copy) void (^onCancel)(void);
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_newOrder;
- @property (strong,nonatomic) NSMutableDictionary * status_cadedate;
- //@property (strong, nonatomic) IBOutlet UIView *toolbarView;
- @property (strong, nonatomic) IBOutlet UILabel *label_filter;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @property int init_style;
- @property (strong,nonatomic) NSString* customer_id;
- @end
- NS_ASSUME_NONNULL_END
|