InventorySearchCell.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //
  2. // InventorySearchCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/23.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:库存明细表查询条件单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SideSlipBaseTableViewCell.h"
  12. @interface InventorySearchCell : SideSlipBaseTableViewCell
  13. /**
  14. 库区
  15. */
  16. @property (strong,nonatomic) IBOutlet UIButton *btnWare;
  17. /**
  18. 品牌
  19. */
  20. @property (strong,nonatomic) IBOutlet UIButton *btnBrand;
  21. /**
  22. 过滤零库存
  23. */
  24. @property (strong,nonatomic) IBOutlet UILabel *lblFilterQuantityEqZero;
  25. /**
  26. 商品编码
  27. */
  28. @property (strong,nonatomic) IBOutlet UITextField *txtCode;
  29. /**
  30. 唯一编码
  31. */
  32. @property (strong,nonatomic) IBOutlet UITextField *txtOnlyCode;
  33. /**
  34. 商品名称
  35. */
  36. @property (strong,nonatomic) IBOutlet UITextField *txtGoodName;
  37. @property (strong, nonatomic) IBOutlet UIButton *btnPositionNumber;
  38. @property (strong, nonatomic) IBOutlet UIButton *btnCeaseFlag;
  39. @property (weak, nonatomic) IBOutlet UITextField *txtGoodsSpecification;
  40. @property (weak, nonatomic) IBOutlet UITextField *txtMinimumCanSalesQuantity;
  41. @property (weak, nonatomic) IBOutlet UITextField *txtMaximumCanSalesQuantity;
  42. /**
  43. 库区
  44. */
  45. @property (copy, nonatomic) NSString *ware;
  46. /**
  47. 品牌
  48. */
  49. @property (copy, nonatomic) NSString *brand;
  50. @property (copy, nonatomic) NSString *positionNumberValue;
  51. @property(nonatomic,strong) NSMutableArray *ceaseFlagList;
  52. @property(nonatomic,strong) NSString *ceaseFlagId;
  53. /**
  54. 过滤零库存标示
  55. */
  56. @property (assign,nonatomic) BOOL isfilterQuantityEqZero;
  57. @end