NewDispatchRequirementInvoiceInfoController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // NewDispatchRequirementInvoiceInfoController.h
  3. // IBOSS-HJ
  4. //
  5. // Created by 关宏厚 on 2021/1/28.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "PaymentMethodVC.h"
  10. #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
  11. #define kTitleFont [UIFont systemFontOfSize:14]
  12. @interface NewDispatchRequirementInvoiceInfoController : BaseViewController<UITextFieldDelegate,UIScrollViewDelegate,PaymentMethodDelegate>
  13. @property(nonatomic,strong) UILabel *lblDeliveryDate;
  14. @property(nonatomic,strong) UILabel *lblReceivables;
  15. @property(nonatomic,strong) UILabel *lblRemainingReceivables;
  16. @property(nonatomic,strong) UIButton *btnReceivablesType;
  17. @property(nonatomic,strong) UITextField *txtReceiptAmount;
  18. @property(nonatomic,strong) UITextField *txtRemarks;
  19. @property(nonatomic,strong) NSString *settlementTypeName;
  20. @property(nonatomic,strong) NSString *settlementType;
  21. @property(nonatomic,strong) NSString *receivableSum;
  22. @property(nonatomic,strong) NSString *remainingReceivables;
  23. @property(nonatomic,strong) NSString *earnestFee;
  24. @property(nonatomic,strong) NSString *remarks;
  25. @property(nonatomic,strong) NSMutableArray *paymentMethodFilterArray;
  26. @property(nonatomic,strong) NSMutableArray *receivableArray;
  27. @property(nonatomic,strong)UINavigationController *cNav;
  28. @end