ScanCartItemCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ScanCartItemCell.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/21/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ScanCartItemCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *labelModel;
  12. @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
  13. @property (weak, nonatomic) IBOutlet UILabel *labelUnitPrice;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelSubtotal;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelMpack;
  16. @property (weak, nonatomic) IBOutlet UITextField *editQTY;
  17. @property (weak, nonatomic) IBOutlet UIStepper *setpperQTY;
  18. @property (weak, nonatomic) IBOutlet UILabel *labelNotes;
  19. @property double unit_price;
  20. @property bool noprice;
  21. @property (strong,nonatomic) NSString* cart_id;
  22. @property int pre_val;
  23. -(void) set_Count:(int) count;
  24. -(void) init_Stepper:(int) step max:(int) max min:(int)min value:(int)value;
  25. @property (nonatomic , copy) void (^onReturnQTY)(int qty , NSDictionary* ext);
  26. @end
  27. NS_ASSUME_NONNULL_END