ScanOrderScanModelViewController.h 821 B

1234567891011121314151617181920212223242526
  1. //
  2. // ScanOrderScanModelViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/8/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ScanResultViewController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ScanOrderScanModelViewController : ScanResultViewController <UITextFieldDelegate>
  12. @property (weak, nonatomic) IBOutlet UIButton *imagebtn;
  13. @property (weak, nonatomic) IBOutlet UILabel *descriptionLabel;
  14. @property (weak, nonatomic) IBOutlet UITextField *qtyEdit;
  15. @property (weak, nonatomic) IBOutlet UIStepper *qtystepper;
  16. @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *mpackLabel;
  18. //@property (strong,nonatomic) NSString* pre_val;
  19. @property int pre_val;
  20. @end
  21. NS_ASSUME_NONNULL_END