// // 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 @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