OrderDetailModelCell.h 906 B

1234567891011121314151617181920212223
  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 UIButton *buttonBundle;
  18. @property (strong, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice;
  19. @property (strong, nonatomic) IBOutlet UILabel *labelDiscount;
  20. @property (strong, nonatomic) NSDictionary* bundle_item;
  21. @end