// // ScanDiscountViewController.h // HMLG Scan Order // // Created by Rui Zhang on 6/16/22. // Copyright © 2022 United Software Applications, Inc. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface ScanDiscountViewController : UIViewController @property double price; @property double discount; @property (strong,nonatomic) NSString* cart_id; @property (weak, nonatomic) IBOutlet UIButton *btn3; @property (weak, nonatomic) IBOutlet UIButton *btnnone; @property (weak, nonatomic) IBOutlet UIButton *btn5; @property (weak, nonatomic) IBOutlet UIButton *btn8; @property (weak, nonatomic) IBOutlet UIButton *btn10; @property (nonatomic , copy) void (^onSetValue)(double price,double discount); @property bool bulk; @end NS_ASSUME_NONNULL_END