| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // NewDispatchRequirementInvoiceInfoController.h
- // IBOSS-HJ
- //
- // Created by 关宏厚 on 2021/1/28.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "PaymentMethodVC.h"
- #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
- #define kTitleFont [UIFont systemFontOfSize:14]
- @interface NewDispatchRequirementInvoiceInfoController : BaseViewController<UITextFieldDelegate,UIScrollViewDelegate,PaymentMethodDelegate>
- @property(nonatomic,strong) UILabel *lblDeliveryDate;
- @property(nonatomic,strong) UILabel *lblReceivables;
- @property(nonatomic,strong) UILabel *lblRemainingReceivables;
- @property(nonatomic,strong) UIButton *btnReceivablesType;
- @property(nonatomic,strong) UITextField *txtReceiptAmount;
- @property(nonatomic,strong) UITextField *txtRemarks;
- @property(nonatomic,strong) NSString *settlementTypeName;
- @property(nonatomic,strong) NSString *settlementType;
- @property(nonatomic,strong) NSString *receivableSum;
- @property(nonatomic,strong) NSString *remainingReceivables;
- @property(nonatomic,strong) NSString *earnestFee;
- @property(nonatomic,strong) NSString *remarks;
- @property(nonatomic,strong) NSMutableArray *paymentMethodFilterArray;
- @property(nonatomic,strong) NSMutableArray *receivableArray;
- @property(nonatomic,strong)UINavigationController *cNav;
- @end
|