InventoryCostSearchCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // InventoryCostSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/11/16.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. #import "BaseIDAndNameProtocol.h"
  11. #import "StatusInfoTextVC.h"
  12. #import "SideSlipConfig.h"
  13. #import "BrandSearchViewController.h"
  14. #import "WareSearchViewController.h"
  15. @interface InventoryCostSearchCell : SideSlipBaseTableViewCell <UITextFieldDelegate,BaseIDAndNameProtocol,StatusInfoTextDelegate>
  16. @property (weak, nonatomic) IBOutlet UITextField *txtCode;
  17. @property (weak, nonatomic) IBOutlet UITextField *txtOnlyCode;
  18. @property (weak, nonatomic) IBOutlet UITextField *txtSpecification;
  19. @property (weak, nonatomic) IBOutlet UIButton *btnWarehouseArea;
  20. @property (weak, nonatomic) IBOutlet UIButton *btnBrand;
  21. @property (weak, nonatomic) IBOutlet UILabel *lblFilterZeroInventory;
  22. @property(nonatomic,strong) NSString *warehouseId;
  23. @property (copy, nonatomic) NSString *wareid; // 仓库id 211110
  24. @property(nonatomic,strong) NSString *brandId;
  25. @property (strong,nonatomic) SideSlipModel *regionModel;
  26. /**
  27. 过滤零库存标示
  28. */
  29. @property (assign,nonatomic) BOOL isfilterQuantityEqZero;
  30. @end