PortfolioEditQTYViewController.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // PortfolioEditQTYViewController.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 3/18/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PortfolioEditQTYViewController : UIViewController<UITextFieldDelegate, UITextViewDelegate>
  10. @property int qty;
  11. @property (strong, nonatomic) IBOutlet UITextField *editQTY;
  12. @property (nonatomic , copy) void (^onSetValue)(int qty , double price, double discount, NSString* notes);
  13. @property (strong, nonatomic) IBOutlet UILabel *labelQueryQTY;
  14. @property (strong, nonatomic) IBOutlet UIButton *buttonRefresh;
  15. //@property (strong, nonatomic) NSString * fashionid;
  16. @property (strong, nonatomic) NSMutableArray* arr_fashion_ids;
  17. @property double price;
  18. @property double discount;
  19. @property (strong, nonatomic) NSString* linenotes;
  20. @property (strong, nonatomic) IBOutlet UITextField *editPrice;
  21. @property (strong, nonatomic) IBOutlet UITextField *editDiscount;
  22. @property (strong, nonatomic) IBOutlet UILabel *labelDiscount;
  23. //@property (strong, nonatomic) IBOutlet UILabel *labelCalPrice;
  24. @property (strong, nonatomic) IBOutlet UILabel *label_multiItems;
  25. @property (strong, nonatomic) IBOutlet UITextView *tv_linenote;
  26. @property (strong, nonatomic) IBOutlet UILabel *labelpriceafter;
  27. @property (strong, nonatomic) IBOutlet UILabel *labelNewPrice;
  28. @end