// // SubmitOrderVCViewController.h // IBOSSmini // // Created by guan hong hou on 2017/5/19. // Copyright © 2017年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "ShopCartModel.h" #import "RefreshDataDelegate.h" @interface SubmitOrderVC : BaseViewController @property(strong) UITextField *txtCustomerCode;//客户编码 @property(strong) UITextField *txtCustomerName;//客户名称 @property(strong) UIButton *btnDepartment;//部门按钮 @property(copy)NSString *departmentIdStr;//业务部门ID @property(copy)NSString *departmentCodeStr;//业务部门Code @property(strong) UIButton *btnSalesMan;//业务员按钮 @property(copy) NSString *salesmanStr; @property(copy) NSString *strFilingID;//报备ID @property(strong) UIButton *btnChannel;//渠道按钮 @property(copy) NSString *channelStr;//渠道变量 @property(strong) UIButton *btnCustomerType;//客户性质按钮 @property(copy) NSString *customerTypeStr;//客户性质变量 @property(copy) NSString *customerIDStr;//customerID @property(nonatomic,retain)ShopCartModel * cartModel;//购物车类 @property(strong) UIView* headerView;//tableview的headerview @property(strong)UITableView * vCustomTableView;//提交订单的tableview @property(strong) UIView *footerView;//底部的footerview @property(strong) UITextField *txtTelephone;//电话 @property(strong) UITextField *txtCustomerAddress;//客户地址 @property(strong) UITextField *txtRemarks;//备注 @property(strong) UILabel *lblTotalAmount;//合计金额 @property(strong) UIButton *btnCustomerCode;//客户编码按钮 @property(nonatomic,strong) ASIDownManager *mDownManager;//下载管理器 @property(nonatomic,strong) NSArray *detailArr;// @property(weak) SubmitOrderVC *parentVC;//订单产品数组 @property(strong,nonatomic) NSArray *cartItemArr;//购物车数组 @property(nonatomic,weak) id refreshDelegate; @property(copy) NSString * strOrganizationID; @property(copy) NSString *strAddress; @property(copy) NSString *strRemarks; @property(copy) NSString *strTelephone; @property(copy) NSString *strCustomerName; @property(copy) NSString *strCustomerCode; -(void)goBack;//返回到上一级控制器 -(void)updatePrice;//更新产品售价 @end