Kaynağa Gözat

修改 网络访问类 和 commoneditor action 类型的处理

Ray Zhang 8 yıl önce
ebeveyn
işleme
9edef909fe

BIN
Ants Contract/AntsContract.xcworkspace/xcuserdata/Ray.xcuserdatad/UserInterfaceState.xcuserstate


+ 1 - 1
Ants Contract/AntsContract.xcworkspace/xcuserdata/Ray.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@@ -474,7 +474,7 @@
             ignoreCount = "0"
             continueAfterRunningActions = "No"
             filePath = "common/PageViewController.m"
-            timestampString = "529472669.82867"
+            timestampString = "529481307.083967"
             startingColumnNumber = "9223372036854775807"
             endingColumnNumber = "9223372036854775807"
             startingLineNumber = "957"

BIN
RA Image/RA Image.xcodeproj/project.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate


+ 1 - 0
RedAnt ERP Mobile/common/CommonEditor/CommonEditorViewController.h

@@ -58,6 +58,7 @@
 
 //@property (strong,nonatomic) NSMutableDictionary* data_init;
 
+-(void) commonAction:(NSString *)value index:(NSIndexPath*) indexPath data:(NSMutableDictionary*) item_json;
 -(void) prepareReturn:(NSMutableDictionary*) value;
 -(NSMutableArray*) translate_json: (NSDictionary*) injson changed:(NSDictionary*) changed_value;
 -(NSMutableDictionary*)create_cusromer_info_from_table;

+ 9 - 201
RedAnt ERP Mobile/common/CommonEditor/CommonEditorViewController.m

@@ -8,7 +8,7 @@
 
 #import "CommonEditorViewController.h"
 #import "CommonEditorCellEdit.h"
-#import "NetworkUtils.h"
+#import "RANetwork.h"
 #import "CommonEditorCellEnum.h"
 #import "CommonEditorCellSwitch.h"
 #import "CommonEditorCellModel.h"
@@ -18,8 +18,8 @@
 #import "SignatureViewController.h"
 #import "CommonEditorCellSignature.h"
 #import "CommonEditorCellLabel.h"
-#import "AddressEditorViewController.h"
-#import "CreditCardEditorViewController.h"
+//#import "AddressEditorViewController.h"
+//#import "CreditCardEditorViewController.h"
 #import "MonthPickerViewController.h"
 //#import "ContactListViewController.h"
 #import "CommonEditorCellMAction.h"
@@ -58,6 +58,11 @@
 
 
 
+-(void) commonAction:(NSString *)value index:(NSIndexPath*) indexPath data:(NSMutableDictionary*) item_json
+{
+    NSAssert(true, @"not impl");
+}
+
 - (NSString *)class_name {
     if (!_class_name) {
         const char *class_name_ch = object_getClassName([self class]);
@@ -4152,204 +4157,7 @@
     }else if([control isEqualToString:@"action"])
     {
         NSString* value = [item_json valueForKey:@"value"];
-        if([value isEqualToString:@"new_addr"])
-        {
-            AddressEditorViewController * addressVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"AddressEditorViewController"];
-            
-            addressVC.url_type = URL_REMOTE;
-            
-            addressVC.request_url=URL_ADDRESS_EDOTOR;
-            
-            
-            
-            
-            NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
-            //            NSString * string = [checked componentsJoinedByString:@","];
-            //            [params setValue:string forKey:@"cart2Checkbox"];
-            
-            
-            
-            
-            addressVC.params = params;
-            
-            
-            addressVC.delegate = self;
-            
-            addressVC.from = indexPath;
-            //            orderinfoVC.params = params;
-            
-            [self.navigationController pushViewController:addressVC animated:true];
-            
-        }else if([value isEqualToString:@"credit_card"])
-        {
-            CreditCardEditorViewController * cardVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"CreditCardEditorViewController"];
-            
-            
-            NSDictionary *data = [item_json objectForKey:@"data"];
-            
-            if(data!=nil)
-            {
-                
-                cardVC.content_data_download = [data mutableCopy];
-                cardVC.url_type = URL_NONE;
-                
-                cardVC.request_url=nil;
-            }
-            else
-            {
-                cardVC.url_type = URL_REMOTE;
-                
-                cardVC.request_url=URL_CREDITCARD_EDOTOR;
-            }
-            NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
-            
-            params[@"orderCode"]=appDelegate.order_code;
-            cardVC.params = params;
-            
-            cardVC.delegate = self;
-            
-            cardVC.from = indexPath;
-            
-            
-            //            orderinfoVC.params = params;
-            
-            [self.navigationController pushViewController:cardVC animated:true];
-            
-        }
-        else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            cvc.showNavibar = true;
-            cvc.contact_type = value;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        else if([value isEqualToString:@"Sales_Order_Ship_From"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            cvc.showNavibar = true;
-            cvc.contact_type = value;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        else if([value isEqualToString:@"Sales_Order_Customer"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            
-            cvc.contact_type = value;
-            cvc.showNavibar = true;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            cvc.showNavibar = true;
-            cvc.contact_type = value;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        else if([value isEqualToString:@"Contact_Return_To"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            cvc.showNavibar = true;
-            cvc.contact_type = value;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        else if([value isEqualToString:@"Sales_Order_Ship_To"])
-        {
-            
-            
-            ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-            cvc.showNavibar = true;
-            cvc.contact_type = value;
-            __weak typeof(self) weakself = self;
-            cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-                
-                [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-                
-                //
-                //                if(self.returnValue)
-                //                    self.returnValue(value);
-            };
-            
-            
-            
-            [self.navigationController pushViewController:cvc animated:true];
-            
-        }
-        
+        [self commonAction:value index:indexPath data:item_json];
     }
     else if([control isEqualToString:@"datepicker"])
     {

+ 202 - 1
RedAnt ERP Mobile/common/Functions/order/CreateOrderViewController.m

@@ -27,7 +27,208 @@
 @end
 
 @implementation CreateOrderViewController
-
+-(void) commonAction:(NSString *)value index:(NSIndexPath*) indexPath data:(NSMutableDictionary*) item_json
+{
+        AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
+    if([value isEqualToString:@"new_addr"])
+    {
+        AddressEditorViewController * addressVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"AddressEditorViewController"];
+        
+        addressVC.url_type = URL_REMOTE;
+        
+        addressVC.request_url=URL_ADDRESS_EDOTOR;
+        
+        
+        
+        
+        NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
+        //            NSString * string = [checked componentsJoinedByString:@","];
+        //            [params setValue:string forKey:@"cart2Checkbox"];
+        
+        
+        
+        
+        addressVC.params = params;
+        
+        
+        addressVC.delegate = self;
+        
+        addressVC.from = indexPath;
+        //            orderinfoVC.params = params;
+        
+        [self.navigationController pushViewController:addressVC animated:true];
+        
+    }else if([value isEqualToString:@"credit_card"])
+    {
+        CreditCardEditorViewController * cardVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"CreditCardEditorViewController"];
+        
+        
+        NSDictionary *data = [item_json objectForKey:@"data"];
+        
+        if(data!=nil)
+        {
+            
+            cardVC.content_data_download = [data mutableCopy];
+            cardVC.url_type = URL_NONE;
+            
+            cardVC.request_url=nil;
+        }
+        else
+        {
+            cardVC.url_type = URL_REMOTE;
+            
+            cardVC.request_url=URL_CREDITCARD_EDOTOR;
+        }
+        NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
+        
+        params[@"orderCode"]=appDelegate.order_code;
+        cardVC.params = params;
+        
+        cardVC.delegate = self;
+        
+        cardVC.from = indexPath;
+        
+        
+        //            orderinfoVC.params = params;
+        
+        [self.navigationController pushViewController:cardVC animated:true];
+        
+    }
+    else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        cvc.showNavibar = true;
+        cvc.contact_type = value;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    else if([value isEqualToString:@"Sales_Order_Ship_From"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        cvc.showNavibar = true;
+        cvc.contact_type = value;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    else if([value isEqualToString:@"Sales_Order_Customer"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        
+        cvc.contact_type = value;
+        cvc.showNavibar = true;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        cvc.showNavibar = true;
+        cvc.contact_type = value;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    else if([value isEqualToString:@"Contact_Return_To"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        cvc.showNavibar = true;
+        cvc.contact_type = value;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    else if([value isEqualToString:@"Sales_Order_Ship_To"])
+    {
+        
+        
+        ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
+        cvc.showNavibar = true;
+        cvc.contact_type = value;
+        __weak typeof(self) weakself = self;
+        cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
+            
+            [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
+            
+            //
+            //                if(self.returnValue)
+            //                    self.returnValue(value);
+        };
+        
+        
+        
+        [self.navigationController pushViewController:cvc animated:true];
+        
+    }
+    
+}
 - (void)dealloc {
     
     AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;

+ 5 - 5
RedAnt ERP Mobile/iSales-HOMER.xcodeproj/project.pbxproj

@@ -392,7 +392,7 @@
 		712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = SOURCE_ROOT; };
 		712C40B71C731126000E6831 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = common/Functions/cart/ItemNotesViewController.h; sourceTree = SOURCE_ROOT; };
 		712C40B81C731126000E6831 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = common/Functions/cart/ItemNotesViewController.m; sourceTree = SOURCE_ROOT; };
-		713F76A61929F4A7006A7305 /* HOMER Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "HOMER Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+		713F76A61929F4A7006A7305 /* Homer App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Homer App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
 		713F76A91929F4A7006A7305 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
 		713F76AB1929F4A7006A7305 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
 		713F76AD1929F4A7006A7305 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
@@ -1162,7 +1162,7 @@
 		713F76A71929F4A7006A7305 /* Products */ = {
 			isa = PBXGroup;
 			children = (
-				713F76A61929F4A7006A7305 /* HOMER Mobile.app */,
+				713F76A61929F4A7006A7305 /* Homer App.app */,
 			);
 			name = Products;
 			path = ..;
@@ -1846,7 +1846,7 @@
 			);
 			name = "iSales-HOMER";
 			productName = "iSales-HOMER";
-			productReference = 713F76A61929F4A7006A7305 /* HOMER Mobile.app */;
+			productReference = 713F76A61929F4A7006A7305 /* Homer App.app */;
 			productType = "com.apple.product-type.application";
 		};
 /* End PBXNativeTarget section */
@@ -2319,7 +2319,7 @@
 					"-v",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-HOMER";
-				PRODUCT_NAME = "HOMER Mobile";
+				PRODUCT_NAME = "Homer App";
 				PROVISIONING_PROFILE = "";
 				WRAPPER_EXTENSION = app;
 			};
@@ -2361,7 +2361,7 @@
 					"-v",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.iSales-HOMER";
-				PRODUCT_NAME = "HOMER Mobile";
+				PRODUCT_NAME = "Homer App";
 				PROVISIONING_PROFILE = "";
 				WRAPPER_EXTENSION = app;
 			};

+ 4 - 4
RedAnt ERP Mobile/iSales-HOMER.xcodeproj/xcuserdata/Ray.xcuserdatad/xcschemes/HOMER Mobile.xcscheme

@@ -15,7 +15,7 @@
             <BuildableReference
                BuildableIdentifier = "primary"
                BlueprintIdentifier = "713F76A51929F4A7006A7305"
-               BuildableName = "HOMER Mobile.app"
+               BuildableName = "Homer App.app"
                BlueprintName = "iSales-HOMER"
                ReferencedContainer = "container:iSales-HOMER.xcodeproj">
             </BuildableReference>
@@ -44,7 +44,7 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "713F76A51929F4A7006A7305"
-            BuildableName = "HOMER Mobile.app"
+            BuildableName = "Homer App.app"
             BlueprintName = "iSales-HOMER"
             ReferencedContainer = "container:iSales-HOMER.xcodeproj">
          </BuildableReference>
@@ -68,7 +68,7 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "713F76A51929F4A7006A7305"
-            BuildableName = "HOMER Mobile.app"
+            BuildableName = "Homer App.app"
             BlueprintName = "iSales-HOMER"
             ReferencedContainer = "container:iSales-HOMER.xcodeproj">
          </BuildableReference>
@@ -87,7 +87,7 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "713F76A51929F4A7006A7305"
-            BuildableName = "HOMER Mobile.app"
+            BuildableName = "Homer App.app"
             BlueprintName = "iSales-HOMER"
             ReferencedContainer = "container:iSales-HOMER.xcodeproj">
          </BuildableReference>

+ 0 - 18
RedAnt Mobile/RedAnt Mobile.xcodeproj/project.pbxproj

@@ -69,9 +69,6 @@
 		71F3AA641F624B2F001036C8 /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA611F624B2F001036C8 /* BundleModelCell.m */; };
 		71F3AA651F624B2F001036C8 /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA631F624B2F001036C8 /* BundleModelViewController.m */; };
 		71F3AA681F624E19001036C8 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA671F624E19001036C8 /* JKTimerManager.m */; };
-		71F3AA6B1F624EAF001036C8 /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA6A1F624EAF001036C8 /* AddressEditorViewController.m */; };
-		71F3AA6E1F624EE0001036C8 /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA6D1F624EE0001036C8 /* CreditCardEditorViewController.m */; };
-		71F3AA771F625FAD001036C8 /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA761F625FAD001036C8 /* ActiveViewController.m */; };
 		71F3AA7D1F62617D001036C8 /* NetworkUtils+Contact.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA7C1F62617D001036C8 /* NetworkUtils+Contact.m */; };
 		71F3AA801F626309001036C8 /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA7F1F626309001036C8 /* CustomIOSAlertView.m */; };
 		71F3AA831F6263B2001036C8 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3AA821F6263B2001036C8 /* MainViewController.m */; };
@@ -200,12 +197,6 @@
 		71F3AA631F624B2F001036C8 /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = "../../RedAnt ERP Mobile/common/Functions/cart/BundleModelViewController.m"; sourceTree = "<group>"; };
 		71F3AA661F624E19001036C8 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JKTimerManager.h; path = "../../RedAnt ERP Mobile/common/JKTimer/JKTimerManager.h"; sourceTree = "<group>"; };
 		71F3AA671F624E19001036C8 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = JKTimerManager.m; path = "../../RedAnt ERP Mobile/common/JKTimer/JKTimerManager.m"; sourceTree = "<group>"; };
-		71F3AA691F624EAF001036C8 /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = "../../RedAnt ERP Mobile/common/Functions/address/AddressEditorViewController.h"; sourceTree = "<group>"; };
-		71F3AA6A1F624EAF001036C8 /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = "../../RedAnt ERP Mobile/common/Functions/address/AddressEditorViewController.m"; sourceTree = "<group>"; };
-		71F3AA6C1F624EE0001036C8 /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = "../../RedAnt ERP Mobile/common/Functions/creditcard/CreditCardEditorViewController.h"; sourceTree = "<group>"; };
-		71F3AA6D1F624EE0001036C8 /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = "../../RedAnt ERP Mobile/common/Functions/creditcard/CreditCardEditorViewController.m"; sourceTree = "<group>"; };
-		71F3AA751F625FAD001036C8 /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = "../../RedAnt ERP Mobile/common/ActiveViewController.h"; sourceTree = "<group>"; };
-		71F3AA761F625FAD001036C8 /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = "../../RedAnt ERP Mobile/common/ActiveViewController.m"; sourceTree = "<group>"; };
 		71F3AA7B1F62617D001036C8 /* NetworkUtils+Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NetworkUtils+Contact.h"; path = "../../common/NetworkUtils+Contact.h"; sourceTree = "<group>"; };
 		71F3AA7C1F62617D001036C8 /* NetworkUtils+Contact.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NetworkUtils+Contact.m"; path = "../../common/NetworkUtils+Contact.m"; sourceTree = "<group>"; };
 		71F3AA7E1F626309001036C8 /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = "../../RedAnt ERP Mobile/common/customUI/CustomIOSAlertView.h"; sourceTree = "<group>"; };
@@ -403,12 +394,6 @@
 				71F3AA611F624B2F001036C8 /* BundleModelCell.m */,
 				71F3AA621F624B2F001036C8 /* BundleModelViewController.h */,
 				71F3AA631F624B2F001036C8 /* BundleModelViewController.m */,
-				71F3AA691F624EAF001036C8 /* AddressEditorViewController.h */,
-				71F3AA6A1F624EAF001036C8 /* AddressEditorViewController.m */,
-				71F3AA6C1F624EE0001036C8 /* CreditCardEditorViewController.h */,
-				71F3AA6D1F624EE0001036C8 /* CreditCardEditorViewController.m */,
-				71F3AA751F625FAD001036C8 /* ActiveViewController.h */,
-				71F3AA761F625FAD001036C8 /* ActiveViewController.m */,
 				71F3AA7E1F626309001036C8 /* CustomIOSAlertView.h */,
 				71F3AA7F1F626309001036C8 /* CustomIOSAlertView.m */,
 				71F3AA471F61240A001036C8 /* customUI */,
@@ -617,7 +602,6 @@
 				71F3A9D01F5FA277001036C8 /* BasicViewController.m in Sources */,
 				71F3AA531F6125ED001036C8 /* ImageViewController.m in Sources */,
 				71F3AA411F612369001036C8 /* CommonEditorViewController.m in Sources */,
-				71F3AA6E1F624EE0001036C8 /* CreditCardEditorViewController.m in Sources */,
 				71F3A9ED1F5FA557001036C8 /* ioapi.c in Sources */,
 				71F3AA391F612369001036C8 /* CommonEditorCellEnum.m in Sources */,
 				71F3AA3A1F612369001036C8 /* CommonEditorCellImg.m in Sources */,
@@ -630,8 +614,6 @@
 				71F3A9F91F5FA688001036C8 /* Reachability.m in Sources */,
 				71F3AA461F612369001036C8 /* SRMonthPicker.m in Sources */,
 				71F3AA421F612369001036C8 /* DatePickerViewController.m in Sources */,
-				71F3AA6B1F624EAF001036C8 /* AddressEditorViewController.m in Sources */,
-				71F3AA771F625FAD001036C8 /* ActiveViewController.m in Sources */,
 				71F3A9D91F5FA3B9001036C8 /* RANetwork.m in Sources */,
 				71F3AA091F5FDDFE001036C8 /* NSData+Base64.m in Sources */,
 				71F3A9DC1F5FA458001036C8 /* RANetworkTaskDelegate.m in Sources */,

BIN
RedAnt Mobile/RedAnt Mobile.xcodeproj/project.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate