SubmitOrderCell.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // SubmitOrderCell.h
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-7-18.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ShopCartItemModel.h"
  10. #import "ShopCartViewController.h"
  11. @class ShopCartCellDelegate;
  12. @interface SubmitOrderCell : UITableViewCell
  13. {
  14. }
  15. @property(strong) IBOutlet UILabel * lblCartID;
  16. @property(strong) IBOutlet UILabel * lblInventoryID;
  17. @property(strong) IBOutlet UITextField * txtSalesQuantity;
  18. @property(strong) IBOutlet UITextField * txtSalesPrice;
  19. @property(strong) IBOutlet UITextField * txtRemarks;
  20. @property(strong) IBOutlet UITextField * txtMarkedPrice;
  21. @property(strong) IBOutlet UILabel * lblSpecification;
  22. @property(strong) IBOutlet UILabel * lblAcreage;
  23. @property(strong) IBOutlet UILabel * lblVolume;
  24. @property(strong) IBOutlet UILabel * lblCodeID;
  25. @property(strong) IBOutlet UILabel * lblCode;
  26. @property(strong) IBOutlet UILabel * lblOnlyCode;
  27. @property(strong) IBOutlet UILabel * lblGradeID;
  28. @property(strong) IBOutlet UILabel * lblColorNumber;
  29. @property(strong) IBOutlet UILabel * lblWarehouseID;
  30. @property(strong) IBOutlet UILabel * lblPositionNumber;
  31. @property(strong) IBOutlet UILabel * lblWarehouseName;
  32. @property(strong) IBOutlet UILabel * lblBalanceQuantity;
  33. @property(strong) IBOutlet UILabel * lblBrandID;
  34. @property(strong) IBOutlet UILabel * lblBrandName;
  35. @property(strong) IBOutlet UILabel * lblKindID;
  36. @property(strong) IBOutlet UILabel * lblKindName;
  37. @property(strong) IBOutlet UILabel * lblVarietyID;
  38. @property(strong) IBOutlet UILabel * lblVarietyName;
  39. @property(strong) IBOutlet UILabel * lblSeriesID;
  40. @property(strong) IBOutlet UILabel* lblSeriesName;
  41. @property(strong) IBOutlet UILabel * lblUnitID;
  42. @property(strong) IBOutlet UILabel * lblUnitName;
  43. @property(strong) IBOutlet UILabel * lblGradeName;
  44. @property(nonatomic,strong) NSString *hiddenID;
  45. - (void) setCheckBackground: (BOOL) checked;
  46. @property(nonatomic) BOOL isSelect;
  47. @property(nonatomic) int cellIndex;
  48. //@property(weak) id<WorkFlowCellDelegate> delegate;
  49. -(void)ParseInfoModel:(ShopCartItemModel *)model;
  50. //@property(weak) id<ShopCartCellDelegate> delegate;
  51. -(void)hideSelect;
  52. -(void)setReadOnly;
  53. @end