ScanDiscountViewController.h 787 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ScanDiscountViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 6/16/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ScanDiscountViewController : UIViewController
  11. @property double price;
  12. @property double discount;
  13. @property (strong,nonatomic) NSString* cart_id;
  14. @property (weak, nonatomic) IBOutlet UIButton *btn3;
  15. @property (weak, nonatomic) IBOutlet UIButton *btnnone;
  16. @property (weak, nonatomic) IBOutlet UIButton *btn5;
  17. @property (weak, nonatomic) IBOutlet UIButton *btn8;
  18. @property (weak, nonatomic) IBOutlet UIButton *btn10;
  19. @property (nonatomic , copy) void (^onSetValue)(double price,double discount);
  20. @property bool bulk;
  21. @end
  22. NS_ASSUME_NONNULL_END