| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // SalesSlipReceivablesVCViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/8.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SalesSlipListModel.h"
- #import "SettlementMethodVC.h"
- #import "UseStorageModel.h"
- #import "UseStorageVC.h"
- #import "SBJsonWriter.h"
- #import "RegularExpression.h"
- @protocol RefreshDelegate <NSObject>
- -(void)refreshData;
- @end
- @interface SalesSlipReceivablesVC : BaseViewController<UIScrollViewDelegate,UITextFieldDelegate,SettlementMethodDelegate,UseStorageDelegate>
- @property(nonatomic,strong) SalesSlipListModel *salesSlipModel;
- @property(nonatomic,strong) UIScrollView *scrollView;
- @property(nonatomic,strong) UIView *vBody;
- @property(nonatomic,strong) UILabel *lblSalesNo;
- @property(nonatomic,strong) UILabel *lblCustomerCode;
- @property(nonatomic,strong) UILabel *lblDepartment;
- @property(nonatomic,strong) UILabel *lblBusinessType;
- @property(nonatomic,strong) UILabel *lblCustomerName;
- @property(nonatomic,strong) UILabel *lblSalesMan;
- @property(nonatomic,strong) UITextField *txtRemarks;
- @property(nonatomic,strong) UILabel *lblAmountReceivable;
- @property(nonatomic,strong) UILabel *lblAmountReceived;
- @property(nonatomic,strong) UILabel *lblSettlementMethod;
- @property(nonatomic,strong) UITextField *txtAmountCollected;
- @property(nonatomic,strong) UILabel *lblCancellationAmount;
- @property(nonatomic,strong) UILabel *lblRemainderReceivables;
- @property(nonatomic,strong) UILabel *lblAvailablePredeposit;
- @property(nonatomic,strong) UILabel *lblSubtractionPredeposit;
- @property(nonatomic,strong) UIButton *btnSave;
- @property(nonatomic,strong) NSString *settlementTypeId;
- @property(nonatomic,strong) NSString *organizationId;
- @property(nonatomic,strong) NSString *customerId;
- @property(nonatomic,strong) NSString *salesId;
- @property(nonatomic,weak) id<RefreshDelegate> refreshDelegate;
- @property (strong, nonatomic) NSMutableArray *useStorageList;
- @property (strong, nonatomic) NSMutableArray *useStorageCheckedList;
- @property (strong, nonatomic) NSMutableArray *settlementMethodList;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSString *salesmanId;
- @end
|