OrderDetailModelCell.h 1.0 KB

123456789101112131415161718192021222324252627
  1. //
  2. // OrderDetailModelCell.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/28/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "StrikethroughLabel.h"
  10. @interface OrderDetailModelCell : UITableViewCell
  11. @property (strong, nonatomic) IBOutlet UIButton *imgbtn;
  12. @property (strong, nonatomic) IBOutlet UILabel *descriptionLabel;
  13. @property (strong, nonatomic) IBOutlet UILabel *unitpriceLabel;
  14. @property (strong, nonatomic) IBOutlet UILabel *qtyLabel;
  15. @property (strong, nonatomic) IBOutlet UILabel *subtotalLabel;
  16. @property (strong, nonatomic) IBOutlet UILabel *statusLabel;
  17. @property (strong, nonatomic) IBOutlet UILabel *noteLabel;
  18. @property (strong, nonatomic) IBOutlet UIButton *buttonBundle;
  19. @property (strong, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice;
  20. @property (strong, nonatomic) IBOutlet UILabel *labelDiscount;
  21. @property (strong, nonatomic) NSDictionary* bundle_item;
  22. @property (nonatomic,copy) NSString *imageName;///<图片标识
  23. @end