| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // NewSalesOutStorageListVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "ScanViewController.h"
- #import "SalesSlipSearchModel.h"
- #import "SalesSlipListModel.h"
- #import "CustomerReportTextVC.h"
- #import "SalesSlipSearchListVC.h"
- #import "NewSalesOutStorageGoodsDetailVC.h"
- #define SALES_SLIP_SEARCH_RANGE_MODEL @"SALES_SLIP_SEARCH_RANGE_MODEL"
- @interface NewSalesOutStorageListVC : BaseViewController<DKScanDelegate,SalesOutStorageDelegate,UITextFieldDelegate>
- @property(nonatomic,strong) UIButton *btnSearch;
- @property(nonatomic,strong) NSString *salesNo;
- @property(nonatomic,strong) NSString *goodsCode;
- @property(nonatomic,strong) NSString *customerName;
- @property(nonatomic,strong) NSString *customerCode;
- @property(nonatomic,strong) NSString *startDate;
- @property(nonatomic,strong) NSString *endDate;
- @property(nonatomic,strong) NSString *address;
- @property(nonatomic,strong) NSString *invoiceStatus;
- @property(nonatomic,strong) UILabel *lblOutStorageNo;
- @property(nonatomic,strong) UILabel *lblCustomerCode;
- @property(nonatomic,strong) UILabel *lblCustomerName;
- @property(nonatomic,strong) UILabel *lblTelephone;
- @property(nonatomic,strong) UILabel *lblDriver;
- @property(nonatomic,strong) UILabel *lblDocker;
- @property(nonatomic,strong) UILabel *lblCustomerAddress;
- @property(nonatomic,strong) UITextField *txtRemarks;
- @property(nonatomic,strong) UIView *middleSeparatorView;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) NSMutableArray *goodsList;
- @property(nonatomic,strong) NSString* driverId;
- @property(nonatomic,strong) NSString* driverName;
- @property(nonatomic,strong) NSString* dockerId;
- @property(nonatomic,strong) NSString* dockerName;
- @property(nonatomic,strong) NSString* remarks;
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong) UINavigationController *listNavVc;
- @property (nonatomic,strong) SalesOutStorageSalesSlipModel *salesSlipListModel;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (nonatomic)BOOL keyboardShow;
- @property(nonatomic,strong)NewSalesOutStorageGoodsDetailVC *goodsDetailVc;
- @end
|