AddExternalCoordinateGoodsVC.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // AddExternalCoordinateGoodsVCViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/2/6.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "CustomerReportTextVC.h"
  10. #import "ExternalCoordinateGoodsModel.h"
  11. #import "OrderListDelegate.h"
  12. #import "ExternalCoordinateGoodsModel.h"
  13. @interface AddExternalCoordinateGoodsVC : BaseViewController<UIScrollViewDelegate,UITextFieldDelegate>
  14. @property(nonatomic,strong) UITextField *txtOrderNo;
  15. @property(nonatomic,strong)UILabel *lblSupplier;
  16. @property(nonatomic,strong) UIView *vSupplier;
  17. @property(nonatomic,strong) UIView *vOnlyCode;
  18. @property(nonatomic,strong)UITextField *txtOnlyCode;
  19. @property(nonatomic,strong) UIView *vGoodsCode;
  20. @property(nonatomic,strong)UITextField *txtGoodsCode;
  21. @property(nonatomic,strong) UIView *vBrand;
  22. @property(nonatomic,strong)UITextField *txtBrand;
  23. @property(nonatomic,strong) UIView *vKind;
  24. @property(nonatomic,strong)UITextField *txtKind;
  25. @property(nonatomic,strong) UIView *vOrderQuantity;
  26. @property(nonatomic,strong)UITextField *txtOrderQuantity;
  27. @property(nonatomic,strong) UIView *vOrderPrice;
  28. @property(nonatomic,strong)UITextField *txtOrderPrice;
  29. @property(nonatomic,strong) UIView *vSpecification;
  30. @property(nonatomic,strong)UITextField *txtSpecification;
  31. @property(nonatomic,strong) UIView *vColorNumber;
  32. @property(nonatomic,strong)UITextField *txtColorNumber;
  33. @property(nonatomic,strong) UIView *vGrade;
  34. @property(nonatomic,strong)UITextField *txtGrade;
  35. @property(nonatomic,strong) UIView *vUnit;
  36. @property(nonatomic,strong)UITextField *txtUnit;
  37. @property(nonatomic,strong) UIView *vPackage;
  38. @property(nonatomic,strong)UITextField *txtPackage;
  39. @property(nonatomic,strong) UIView *vMarkedPrice;
  40. @property(nonatomic,strong)UITextField *txtMarkedPrice;
  41. @property(nonatomic,strong) UIView *vDiscount;
  42. @property(nonatomic,strong)UITextField *txtDiscount;
  43. @property(nonatomic,strong) UIView *vUsePosition;
  44. @property(nonatomic,strong)UILabel *lblUsePosition;
  45. @property(nonatomic,strong) UIView *vVariety;
  46. @property(nonatomic,strong)UITextField *txtVariety;
  47. @property(nonatomic,strong) UIView *vSeries;
  48. @property(nonatomic,strong)UITextField *txtSeries;
  49. @property(nonatomic,strong) UIView *vRemarks;
  50. @property(nonatomic,strong)UITextField *txtRemarks;
  51. @property(nonatomic,strong) NSString *supplierId;
  52. @property(nonatomic,strong) NSString *supplierName;
  53. @property(nonatomic,strong) NSString *usePositionId;
  54. @property(nonatomic,strong) NSString *usePositionName;
  55. @property(nonatomic,strong) UIView *vOrderNO;
  56. @property(nonatomic,assign) CGFloat h;
  57. @property(nonatomic,strong) UIButton *btnSave;
  58. @property(nonatomic,strong) NSString *orderId;
  59. @property(nonatomic,strong) UIView *vBody;
  60. @property(nonatomic,strong)NSString *externalCoordinateEditFlag;
  61. @property(nonatomic,strong) ExternalCoordinateGoodsModel *externalCoordinateGoodsModel;
  62. @property(nonatomic,assign) NSInteger editStatus;
  63. @property(nonatomic,strong)NSString *orderNo;
  64. @property(nonatomic,weak) id<OrderListDelegate> orderListDelegate;
  65. @end