| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // AddExternalCoordinateGoodsVCViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/6.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "CustomerReportTextVC.h"
- #import "ExternalCoordinateGoodsModel.h"
- #import "OrderListDelegate.h"
- #import "ExternalCoordinateGoodsModel.h"
- @interface AddExternalCoordinateGoodsVC : BaseViewController<UIScrollViewDelegate,UITextFieldDelegate>
- @property(nonatomic,strong) UITextField *txtOrderNo;
- @property(nonatomic,strong)UILabel *lblSupplier;
- @property(nonatomic,strong) UIView *vSupplier;
- @property(nonatomic,strong) UIView *vOnlyCode;
- @property(nonatomic,strong)UITextField *txtOnlyCode;
- @property(nonatomic,strong) UIView *vGoodsCode;
- @property(nonatomic,strong)UITextField *txtGoodsCode;
- @property(nonatomic,strong) UIView *vBrand;
- @property(nonatomic,strong)UITextField *txtBrand;
- @property(nonatomic,strong) UIView *vKind;
- @property(nonatomic,strong)UITextField *txtKind;
- @property(nonatomic,strong) UIView *vOrderQuantity;
- @property(nonatomic,strong)UITextField *txtOrderQuantity;
- @property(nonatomic,strong) UIView *vOrderPrice;
- @property(nonatomic,strong)UITextField *txtOrderPrice;
- @property(nonatomic,strong) UIView *vSpecification;
- @property(nonatomic,strong)UITextField *txtSpecification;
- @property(nonatomic,strong) UIView *vColorNumber;
- @property(nonatomic,strong)UITextField *txtColorNumber;
- @property(nonatomic,strong) UIView *vGrade;
- @property(nonatomic,strong)UITextField *txtGrade;
- @property(nonatomic,strong) UIView *vUnit;
- @property(nonatomic,strong)UITextField *txtUnit;
- @property(nonatomic,strong) UIView *vPackage;
- @property(nonatomic,strong)UITextField *txtPackage;
- @property(nonatomic,strong) UIView *vMarkedPrice;
- @property(nonatomic,strong)UITextField *txtMarkedPrice;
- @property(nonatomic,strong) UIView *vDiscount;
- @property(nonatomic,strong)UITextField *txtDiscount;
- @property(nonatomic,strong) UIView *vUsePosition;
- @property(nonatomic,strong)UILabel *lblUsePosition;
- @property(nonatomic,strong) UIView *vVariety;
- @property(nonatomic,strong)UITextField *txtVariety;
- @property(nonatomic,strong) UIView *vSeries;
- @property(nonatomic,strong)UITextField *txtSeries;
- @property(nonatomic,strong) UIView *vRemarks;
- @property(nonatomic,strong)UITextField *txtRemarks;
- @property(nonatomic,strong) NSString *supplierId;
- @property(nonatomic,strong) NSString *supplierName;
- @property(nonatomic,strong) NSString *usePositionId;
- @property(nonatomic,strong) NSString *usePositionName;
- @property(nonatomic,strong) UIView *vOrderNO;
- @property(nonatomic,assign) CGFloat h;
- @property(nonatomic,strong) UIButton *btnSave;
- @property(nonatomic,strong) NSString *orderId;
- @property(nonatomic,strong) UIView *vBody;
- @property(nonatomic,strong)NSString *externalCoordinateEditFlag;
- @property(nonatomic,strong) ExternalCoordinateGoodsModel *externalCoordinateGoodsModel;
- @property(nonatomic,assign) NSInteger editStatus;
- @property(nonatomic,strong)NSString *orderNo;
- @property(nonatomic,weak) id<OrderListDelegate> orderListDelegate;
- @end
|