GXFFunctionDB.m 21.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//
//  GXFFunctionDB.m
//  XFFruit
//
//  Created by freecui on 15/8/27.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#define DATABASE_PATH [[NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) lastObject]stringByAppendingString:@"function.db"]
//#define DATABASE_PATH [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0]stringByAppendingString:@"/weChat.db"]
//FMDB
//#define FMDBQuickCheck(SomeBool) { if (!(SomeBool)) { NSLog(@"Failure on line %d", __LINE__); abort(); } }

#import "GXFFunctionDB.h"

@interface GXFFunctionDB ()
@property (nonatomic, strong) FMDatabase *dataBase;

@end
@implementation GXFFunctionDB

+ (GXFFunctionDB *)sharedInstance {
    static GXFFunctionDB *functionDb = nil;
    static dispatch_once_t once;
    dispatch_once(&once, ^{
        functionDb = [[GXFFunctionDB alloc]init];
    });
    return functionDb;
}
- (BOOL)openDb {
    // NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
    NSString *path = [NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) lastObject];
33 34 35 36 37 38 39 40
    ICRUserUtil *user = [ICRUserUtil sharedInstance];
    NSString *dbPath ;//= [path stringByAppendingString:@"function.db"];
    if (user.userCode) {
        dbPath = [NSString stringWithFormat:@"%@%@function.db",path,user.userCode];
    } else {
        dbPath = [path stringByAppendingString:@"function.db"];
    }

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    self.dataBase = [FMDatabase databaseWithPath:dbPath];
    CLog(@"dbPath = %@",dbPath);
    BOOL isOpen = [_dataBase open];
    if (!isOpen) {
         NSLog(@"数据库打开失败");
    }
        return isOpen;
    
}
- (void)createTables {
    if ([self openDb]) {
        [self functionTableCreate];
        [self displayFunctionTableCreate];
    }
}


58 59 60 61 62
- (void)deleteTables {
    if ([self openDb]) {
        [self functionTableDelete];
        [self displayFunctionTableDelete];
    }
63

64 65 66 67 68 69 70 71 72 73 74
}
- (BOOL)functionTableDelete {
    NSString *delSql = @"delete from function";
    BOOL work = [_dataBase executeQuery:delSql];
    return work;
}
- (BOOL)displayFunctionTableDelete {
    NSString *delSql = @"delete from displayFunction";
    BOOL work = [_dataBase executeQuery:delSql];
    return work;
}
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
- (BOOL)functionTableCreate {
//    if (![_dataBase open]) {
//        [self openDb];
//    }
    
 
    //Id INTEGER NOT NULL PRIMARY KEY UNIQUE CONFLICT REPLACE
    NSString *createTableSql = @"CREATE TABLE IF NOT EXISTS function (Id INTEGER PRIMARY KEY NOT NULL UNIQUE ,name VARCHAR,caption VARCHAR,hasPermission INTEGER,isSelected INTEGER) ";//CONFLICT REPLACE
    BOOL work = [_dataBase executeUpdate:createTableSql];
    
    return work;
}
- (BOOL)displayFunctionTableCreate {
    if (![_dataBase open]) {
        [self openDb];
    }
freecui's avatar
freecui committed
91
    NSString *createTableSql = @"CREATE TABLE IF NOT EXISTS displayFunction (Id INTEGER PRIMARY KEY AUTOINCREMENT,functionId INTEGER,functionName VARCHAR ,functionImgName VARCHAR,functionSmallImgName VARCHAR,  isSelected INTEGER,hasPermission INTEGER,functionItemTag INTEGER )";
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    BOOL work = [_dataBase executeUpdate:createTableSql];
    
    return work;
}

//+(BOOL)checkTableCreatedInDb:(FMDatabase *)db
//{
//    NSString *createTableSql = @"CREATE TABLE IF NOT EXISTS function (Id INTEGER PRIMARY KEY NOT NULL UNIQUE ,name VARCHAR,caption VARCHAR,hasPermission INTEGER,isSelected INTEGER) ";//CONFLICT REPLACE
//    BOOL worked = [db executeUpdate:createTableSql];
//    FMDBQuickCheck(worked);
//    return worked;
//}
//插入数据:从最初的json文件读入时 没有任何权限跟所有的功能都没有选中
- (BOOL)insertFunction: (GXFFunction *)function {
//    FMDatabase *db = [FMDatabase databaseWithPath:DATABASE_PATH];
//    if (![db open]) {
//        NSLog(@"数据库打开失败");
//        return YES;
//    };
//    [GXFFunctionDB checkTableCreatedInDb:db];
    
    NSString *inserSql = @"INSERT INTO  function (Id,name,caption,hasPermission,isSelected) VALUES(?,?,?,?,?)";
    BOOL work = [_dataBase executeUpdate:inserSql,@(function.Id),function.name,function.caption,@(function.hasPermission) ,@(function.isSelected)];//@(120),@"gg",@"fff",@(1),@(1)];
    
   // [db close];
    return work;
}
freecui's avatar
freecui committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135


//查找一条数据
- (GXFFunction *)functionSelectWithId: (NSInteger)Id{
    GXFFunction *function = [[GXFFunction alloc]init];
    FMResultSet *rs = [_dataBase executeQuery:@"SELECT * FROM  function WHERE Id = ? ",@(Id)];
    while ([rs next]) {
        function.Id = [rs intForColumnIndex:0];
        function.name = [rs stringForColumnIndex:1];
        function.caption = [rs stringForColumnIndex:2];
        function.hasPermission = [rs intForColumnIndex:3];
        function.isSelected = [rs intForColumnIndex:4];
        break;
    }
    return function;

}
136 137
//更新权限
- (BOOL)updateFunctionHasPermissionWithId: (GXFFunction *)function{
freecui's avatar
freecui committed
138 139
    //GXFFunction *function = [self functionSelectWithId:Id];
    BOOL work = [_dataBase executeUpdate:@"UPDATE function SET hasPermission = ? where Id = ?",@(function.hasPermission),@(function.Id)];
140 141 142 143 144 145 146
    return work;
}
//更新是否选中
- (BOOL)updateFunctionIsSelectedWithId: (GXFFunction *)function{
    BOOL work = [_dataBase executeUpdate:@"UPDATE function SET isSelected = ? where Id = ?",function.isSelected,function.Id];
    return work;
}
freecui's avatar
freecui committed
147 148 149 150 151 152 153 154 155 156 157 158
//返回全部原始数据的function
- (NSArray *)originFunctions {
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM function"];
    while ([rs next]) {
        GXFFunction *function = [[GXFFunction alloc]init];
        function.Id = [rs intForColumn:@"Id"];
        [muArr addObject:function];
    }
    
    return muArr;
}
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
//返回全部有权限的function
- (NSArray *)functionsHasPermission {
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM function WHERE hasPermission = ?",[NSNumber numberWithBool:1]];
    while ([rs next]) {
        GXFFunction *function = [[GXFFunction alloc]init];
        function.Id = [rs intForColumn:@"Id"];
        [muArr addObject:function];
    }
    
    return muArr;
}
- (NSArray *)p_functionsIdPermission {
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT Id FROM function WHERE hasPermission = ?",[NSNumber numberWithBool:1]];
    while ([rs next]) {
       NSInteger Id = [rs intForColumn:@"Id"];
        [muArr addObject:@(Id)];
    }
    
    return muArr;
}
//既有权限又被选择的
- (NSArray *)functionsHasPermissionAndIsSelected{
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM function WHERE hasPermission = ?,isSelected = ?",[NSNumber numberWithBool:1],[NSNumber numberWithBool:1]];
    while ([rs next]) {
        GXFFunction *function = [[GXFFunction alloc]init];
        function.Id = [rs intForColumn:@"Id"];
        [muArr addObject:function];
    }
    
    return muArr;
}
- (NSArray *)p_functionsHasPermissionAndIsSelected{
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT Id FROM function WHERE hasPermission = ?,isSelected = ?",[NSNumber numberWithBool:1],[NSNumber numberWithBool:1]];
    while ([rs next]) {
        NSInteger Id = [rs intForColumn:@"Id"];
        [muArr addObject:@(Id)];
    }
    
    return muArr;
}


freecui's avatar
freecui committed
205 206 207 208 209 210 211 212 213 214 215 216 217













218 219 220
#pragma displayFunction
- (BOOL)insertDisplayFunction: (GXFDisplayFunction *)displayFunction {
    
freecui's avatar
freecui committed
221 222
    NSString *inserSql = @"INSERT INTO  displayFunction(functionId,functionName,functionImgName,functionSmallImgName,hasPermission,functionItemTag) VALUES(?,?,?,?,?,?)";
    BOOL work = [_dataBase executeUpdate:inserSql,@(displayFunction.functionId),displayFunction.functionName,displayFunction.functionImgName,displayFunction.functionSmallImgName,@(0),@(displayFunction.functionItemTag)];
223 224 225
    
    return work;
}
freecui's avatar
freecui committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
//- (GXFDisplayFunction *)upDatePermissionDisplayFunctionByFunctionId: (NSInteger)functionId {
//    GXFDisplayFunction *displayFunction = [[GXFDisplayFunction alloc]init];
//    FMResultSet *rs = [_dataBase executeQuery:@"SELET * FROM  displayFunction WHERE functionId = ? ",@(functionId)];
//    while ([rs next]) {
//        displayFunction.functionId = [rs intForColumn:@"functionId"];
//        displayFunction.functionName = [rs stringForColumn:@"functionName"];
//        displayFunction.functionImgName = [rs stringForColumn:@"functionImgName"];
//        displayFunction.functionSmallImgName = [rs stringForColumn:@"functionSmallImgName"];
//        displayFunction.functionItemTag = [rs intForColumn:@"functionItemTag"];
//        break;
//    }
//    return displayFunction;
//}
//更新权限
- (BOOL)updateDisplayFunctionPermissionWithId: (GXFDisplayFunction *)displayFunction{
    BOOL work = [_dataBase executeUpdate:@"UPDATE displayFunction SET hasPermission = ? where functionId = ?",@(displayFunction.hasPermission),@(displayFunction.functionId)];
    return work;
243
}
freecui's avatar
freecui committed
244 245


freecui's avatar
freecui committed
246 247 248 249 250
//更新是否选中
- (BOOL)updateDisplayFunctionIsSelectedWithId: (GXFDisplayFunction *)displayFunction{
    BOOL work = [_dataBase executeUpdate:@"UPDATE displayFunction SET isSelected = ? where functionId = ?",@(displayFunction.isSelected),@(displayFunction.functionId)];
    return work;
}
251 252
#pragma 有权限的displayfunctions
//待改正,最好的办法是两张表关联起来查找但是我还没做到
freecui's avatar
freecui committed
253
//返回有权限的,并更新了权限
254 255 256 257 258
-(NSArray *)displayFunctionsHasPermission{
    
    NSMutableArray *muArr = [NSMutableArray array];
    
    NSArray *hasPermission = [self p_functionsIdPermission];
freecui's avatar
freecui committed
259 260 261 262 263 264 265
    
    BOOL hasSeeOption1 = NO;
    BOOL hasSeeOption3 = NO;
    BOOL hasSeeOption4 = NO;
    BOOL hasSeeOption5 = NO;
    BOOL hasSeeOption6 = NO;
    BOOL hasSeeOption7 = NO;
freecui's avatar
freecui committed
266
    BOOL hasSeeOption8 = NO;
267
    for (int count = 0; count < hasPermission.count; count ++) {
freecui's avatar
freecui committed
268
        FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM displayFunction WHERE functionId = ?",hasPermission[count] ];
269
        while ([rs next]) {
freecui's avatar
freecui committed
270
            GXFDisplayFunction *displayFunction = [self p_resultSetDisplayFunction:rs];
freecui's avatar
freecui committed
271 272
            displayFunction.hasPermission = YES;
            [self updateDisplayFunctionPermissionWithId:displayFunction];
273
            [muArr addObject:displayFunction];
freecui's avatar
freecui committed
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
            if (displayFunction.functionId == 500102 && hasSeeOption1 == NO) {
                hasSeeOption1 = YES;
            }
            if (displayFunction.functionId == 500103 && hasSeeOption1 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption1 = NO;
            }
            //"采购通知"
            if (displayFunction.functionId == 500302 && hasSeeOption3 == NO) {
                hasSeeOption3 = YES;
            }
            if (displayFunction.functionId == 500303 && hasSeeOption3 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption3 = NO;
            }
            
            //采购单???? 有三个:"全部查看权"、"本人查看权"、 "供应商查看权"
            if (displayFunction.functionId == 500402 && hasSeeOption4 == NO) {
                hasSeeOption4 = YES;
            }
            if (displayFunction.functionId == 500403 && hasSeeOption4 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption4 = YES;
            }
            
            //"发运单"
            if (displayFunction.functionId == 500502 && hasSeeOption5 == NO) {
                hasSeeOption5 = YES;
            }
            if (displayFunction.functionId == 500503 && hasSeeOption5 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption5 = NO;
            }
            
            //"转运单"
            if (displayFunction.functionId == 500602 && hasSeeOption6 == NO) {
                hasSeeOption6 = YES;
            }
            if (displayFunction.functionId == 500603 && hasSeeOption6 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption6 = NO;
            }
            //"加工单"
            if (displayFunction.functionId == 500702 && hasSeeOption7 == NO) {
                hasSeeOption7 = YES;
            }
            if (displayFunction.functionId == 500703 && hasSeeOption7 == YES) {
                [muArr removeObject:displayFunction];
                hasSeeOption7 = NO;
            }

freecui's avatar
freecui committed
325
            //"收货单"
freecui's avatar
freecui committed
326 327
            if (displayFunction.functionId == 500802 && hasSeeOption8 == NO) {
                hasSeeOption8 = YES;
freecui's avatar
freecui committed
328
            }
freecui's avatar
freecui committed
329
            if (displayFunction.functionId == 500803 && hasSeeOption8 == YES) {
freecui's avatar
freecui committed
330
                [muArr removeObject:displayFunction];
freecui's avatar
freecui committed
331
                hasSeeOption8 = NO;
freecui's avatar
freecui committed
332 333 334
            }
            

freecui's avatar
freecui committed
335
            continue;
freecui's avatar
freecui committed
336
        }                    
freecui's avatar
freecui committed
337
    }
freecui's avatar
freecui committed
338
        
freecui's avatar
freecui committed
339 340
    return muArr;
}
freecui's avatar
freecui committed
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435




////把显示重复功能的去掉
//- (NSArray *)siftDuplicationDisplayFunctionsButton {
//    NSMutableArray  *allDisplayFunctionsArr = [NSMutableArray arrayWithArray:[self displayFunctionsHasPermission]];
//    NSMutableArray *muArr = [NSMutableArray array];
//    
//    NSArray *hasPermission = [self p_functionsIdPermission];
//    BOOL hasSeeOption1 = NO;
//    
//     BOOL hasSeeOption3 = NO;
//     BOOL hasSeeOption4 = NO;
//     BOOL hasSeeOption5 = NO;
//     BOOL hasSeeOption6 = NO;
//     BOOL hasSeeOption7 = NO;
//    
//    for (int count = 0; count < hasPermission.count; count ++) {
//        FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM displayFunction WHERE functionId = ?",hasPermission[count] ];
//        while ([rs next]) {
//            GXFDisplayFunction *displayFunction = [self p_resultSetDisplayFunction:rs];
//            
//            [muArr addObject:displayFunction];
//            //"行情反馈",
//            if (displayFunction.functionId == 500102 && hasSeeOption1 == NO) {
//                hasSeeOption1 = YES;
//            }
//            if (displayFunction.functionId == 500103 && hasSeeOption1 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption1 = NO;
//            }
//            
//            //"采购通知"
//            if (displayFunction.functionId == 500302 && hasSeeOption3 == NO) {
//                hasSeeOption3 = YES;
//            }
//            if (displayFunction.functionId == 500303 && hasSeeOption3 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption3 = NO;
//            }
//            
//            //采购单???? 有三个:"全部查看权"、"本人查看权"、 "供应商查看权"
//            if (displayFunction.functionId == 500402 && hasSeeOption4 == NO) {
//                hasSeeOption4 = YES;
//            }
//            if (displayFunction.functionId == 500403 && hasSeeOption4 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption4 = YES;
//            }
////            if (displayFunction.functionId == 500403 && hasSeeOption4 == NO) {
////                //[muArr removeObject:displayFunction];
////                hasSeeOption4 = YES;
////            }
////            if (displayFunction.functionId == 500403 && hasSeeOption4 == YES) {
////                [muArr removeObject:displayFunction];
////                hasSeeOption4 = YES;
////            }
////            if (displayFunction.functionId == 500404 && hasSeeOption4 == YES) {
////                [muArr removeObject:displayFunction];
////                hasSeeOption4 = YES;
////            }
//            
//            //"发运单"
//            if (displayFunction.functionId == 500502 && hasSeeOption5 == NO) {
//                hasSeeOption5 = YES;
//            }
//            if (displayFunction.functionId == 500503 && hasSeeOption5 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption5 = NO;
//            }
//            
//            //"转运单"
//            if (displayFunction.functionId == 500602 && hasSeeOption6 == NO) {
//                hasSeeOption6 = YES;
//            }
//            if (displayFunction.functionId == 500603 && hasSeeOption6 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption6 = NO;
//            }
//            //"加工单"
//            if (displayFunction.functionId == 500702 && hasSeeOption7 == NO) {
//                hasSeeOption7 = YES;
//            }
//            if (displayFunction.functionId == 500703 && hasSeeOption7 == YES) {
//                [muArr removeObject:displayFunction];
//                hasSeeOption7 = NO;
//            }
//
//        }
//    }
//    
//    return muArr;
//    
//}
freecui's avatar
freecui committed
436 437 438
//默认配置显示功能  初始配置为
- (NSArray *)defaultdisplayFunctions {
    NSMutableArray *arr = [NSMutableArray arrayWithArray:[self displayFunctionsHasPermission]];
freecui's avatar
freecui committed
439
  
freecui's avatar
freecui committed
440 441 442 443 444 445
    for (int count = 0; count < arr.count; count ++) {
        if ((count % 2) || (count == 0)) {
            GXFDisplayFunction *displayFunction = (GXFDisplayFunction *)arr[count];
            displayFunction.isSelected = YES;
            [self updateDisplayFunctionIsSelectedWithId:displayFunction];
            [arr replaceObjectAtIndex:count withObject:displayFunction];
freecui's avatar
freecui committed
446 447
            
            
freecui's avatar
freecui committed
448 449 450 451 452
        }
    }
    
    return arr;
}
453

freecui's avatar
freecui committed
454 455
//返回全部原始数据的function
- (NSArray *)originDisplayFunctions {
AvatarC's avatar
AvatarC committed
456 457 458
//    NSMutableArray *muArr = [NSMutableArray array];
//    FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM displayFunction"];
    NSMutableArray *muArr = [NSMutableArray arrayWithArray:[self displayFunctionsHasPermission]];
freecui's avatar
freecui committed
459 460 461 462 463 464 465
    BOOL hasSeeOption1 = NO;
   
    BOOL hasSeeOption3 = NO;
    BOOL hasSeeOption4 = NO;
    BOOL hasSeeOption5 = NO;
    BOOL hasSeeOption6 = NO;
    BOOL hasSeeOption7 = NO;
freecui's avatar
freecui committed
466
    BOOL hasSeeOption8 = NO;
AvatarC's avatar
AvatarC committed
467 468 469 470 471
    for(GXFDisplayFunction *displayFunction in muArr){
//    while ([rs next]) {
//        GXFDisplayFunction *displayFunction = [self p_resultSetDisplayFunction:rs];
//        [muArr addObject:displayFunction];
    
freecui's avatar
freecui committed
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
        
        //"行情反馈",
        if (displayFunction.functionId == 500102 && hasSeeOption1 == NO) {
            hasSeeOption1 = YES;
        }
        if (displayFunction.functionId == 500103 && hasSeeOption1 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption1 = NO;
        }
        
        //"采购通知"
        if (displayFunction.functionId == 500302 && hasSeeOption3 == NO) {
            hasSeeOption3 = YES;
        }
        if (displayFunction.functionId == 500303 && hasSeeOption3 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption3 = NO;
        }
        
        //采购单???? 有三个:"全部查看权"、"本人查看权"、 "供应商查看权"
        if (displayFunction.functionId == 500402 && hasSeeOption4 == NO) {
            hasSeeOption4 = YES;
        }
        if (displayFunction.functionId == 500403 && hasSeeOption4 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption4 = YES;
        }
        
        //"发运单"
        if (displayFunction.functionId == 500502 && hasSeeOption5 == NO) {
            hasSeeOption5 = YES;
        }
        if (displayFunction.functionId == 500503 && hasSeeOption5 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption5 = NO;
        }

        //"转运单"
        if (displayFunction.functionId == 500602 && hasSeeOption6 == NO) {
            hasSeeOption6 = YES;
        }
        if (displayFunction.functionId == 500603 && hasSeeOption6 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption6 = NO;
        }
        //"加工单"
        if (displayFunction.functionId == 500702 && hasSeeOption7 == NO) {
            hasSeeOption7 = YES;
        }
        if (displayFunction.functionId == 500703 && hasSeeOption7 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption7 = NO;
        }
freecui's avatar
freecui committed
525 526 527 528 529 530 531 532 533 534
        
        //"收货单"
        if (displayFunction.functionId == 500802 && hasSeeOption8 == NO) {
            hasSeeOption8 = YES;
        }
        if (displayFunction.functionId == 500803 && hasSeeOption8 == YES) {
            [muArr removeObject:displayFunction];
            hasSeeOption8 = NO;
        }

freecui's avatar
freecui committed
535

536
    }
freecui's avatar
freecui committed
537
    
538 539 540
    return muArr;
}

freecui's avatar
freecui committed
541 542 543 544 545 546 547
- (GXFDisplayFunction *)p_resultSetDisplayFunction: (FMResultSet *)rs {
    GXFDisplayFunction *displayFunction = [[GXFDisplayFunction  alloc]init];
    displayFunction.functionId = [rs intForColumn:@"functionId"];
    displayFunction.functionName = [rs stringForColumn:@"functionName"];
    displayFunction.functionImgName = [rs stringForColumn:@"functionImgName"];
    displayFunction.functionSmallImgName = [rs stringForColumn:@"functionSmallImgName"];
    displayFunction.isSelected = [rs intForColumn:@"isSelected"];
freecui's avatar
freecui committed
548
    displayFunction.hasPermission = [rs intForColumn:@"hasPermission"];
freecui's avatar
freecui committed
549
    displayFunction.functionItemTag = [rs intForColumn:@"functionItemTag"];
freecui's avatar
freecui committed
550 551 552 553 554 555 556 557 558 559 560 561 562
    return displayFunction;
}
//返回被选中的
- (NSArray *)isSelectedDisplayFunctions {
    NSMutableArray *muArr = [NSMutableArray array];
    FMResultSet *rs = [_dataBase executeQuery: @"SELECT * FROM displayFunction WHERE isSelected = ?",@(1)];
    while ([rs next]) {
        GXFDisplayFunction *displayFunction = [self p_resultSetDisplayFunction:rs];
        [muArr addObject:displayFunction];
    }
    
    return muArr;
}
563
@end