| | |
| | | public static Agency_Hospital_Link__c agency_hospital_link = new Agency_Hospital_Link__c(); |
| | | |
| | | static testMethod void testMethod1() { |
| | | User thisUser = [SELECT Id FROM User WHERE Id = :UserInfo.getUserId()]; |
| | | User thisUser = [ select Id from User where Id = :UserInfo.getUserId()]; |
| | | System.runAs(thisUser) { |
| | | List<Account> accList = new List<Account>(); |
| | | // 取引先 |
| | | account1.Name = 'test1医院'; |
| | | account1.RecordTypeId = '01210000000QemG'; |
| | | // account1.Is_Active__c = '草案中'; |
| | | insert account1; |
| | | accList.add(account1); |
| | | |
| | | account2.Name = 'test2医院'; |
| | | account2.RecordTypeId = '01210000000QemG'; |
| | | // account2.Is_Active__c = '有効'; |
| | | insert account2; |
| | | accList.add(account2); |
| | | |
| | | account3.Name = 'test3医院'; |
| | | account3.RecordTypeId = '01210000000QemG'; |
| | | // account3.Is_Active__c = '申请中'; |
| | | insert account3; |
| | | accList.add(account3); |
| | | insert accList; |
| | | |
| | | consumable.Name = 'test1经销商'; |
| | | consumable.RecordTypeId = '01210000000Qem1'; |
| | |
| | | insert contact1; |
| | | |
| | | // ユーザー |
| | | Profile p = [ |
| | | SELECT Id |
| | | FROM Profile |
| | | WHERE Name = '901_经销商社区普通权限' |
| | | ]; |
| | | Profile p = [select Id from Profile where Name = '901_经销商社区普通权限']; |
| | | user.ProfileId = p.Id; |
| | | user.ContactId = contact1.Id; |
| | | user.FirstName = 'ユーザー'; |
| | |
| | | agency_hospital_link.Agency__c = consumable.Id; |
| | | agency_hospital_link.OwnerId = user.Id; |
| | | insert agency_hospital_link; |
| | | |
| | | |
| | | |
| | | } |
| | | System.runAs(user) { |
| | | //订单 |
| | |
| | | Order1.Order_ForHospital__c = account1.Id; |
| | | insert Order1; |
| | | |
| | | |
| | | |
| | | Consumable_Orderdetails__c con = new Consumable_Orderdetails__c(); |
| | | con.Consumable_order__c = Order1.Id; |
| | | insert con; |
| | | |
| | | |
| | | LexConsumableAccountController.init(2, 1, 'thisYear'); |
| | | LexConsumableAccountController.init(2, 1, 'lastYear'); |
| | |
| | | LexConsumableAccountController.changeFiscalYearView('lastYear'); |
| | | // LexConsumableAccountController.changelistView('62. 医院_Hospital申请中的医院',consumable.Id,'ET',1,0,'Is_Active__c','ASC'); |
| | | // LexConsumableAccountController.changelistView('63. 医院_Hospital上周创建的医院',consumable.Id,'ET',1,0,'Is_Active__c','ASC'); |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | | static testMethod void testMethod2() { |
| | | User thisUser = [SELECT Id FROM User WHERE Id = :UserInfo.getUserId()]; |
| | | User thisUser = [ select Id from User where Id = :UserInfo.getUserId()]; |
| | | System.runAs(thisUser) { |
| | | // 取引先 |
| | | account1.Name = 'test1医院'; |
| | |
| | | insert contact1; |
| | | |
| | | // ユーザー |
| | | Profile p = [ |
| | | SELECT Id |
| | | FROM Profile |
| | | WHERE Name = '901_经销商社区普通权限' |
| | | ]; |
| | | Profile p = [select Id from Profile where Name = '901_经销商社区普通权限']; |
| | | user.ProfileId = p.Id; |
| | | user.ContactId = contact1.Id; |
| | | user.FirstName = 'ユーザー'; |
| | |
| | | ca.accsort(); |
| | | |
| | | ca.sortKey = '1'; |
| | | LexConsumableAccountController.changelistView( |
| | | '62. 医院_Hospital申请中的医院', |
| | | consumable.Id, |
| | | 'ET', |
| | | 1, |
| | | 0, |
| | | 'Is_Active__c', |
| | | 'ASC' |
| | | ); |
| | | LexConsumableAccountController.changelistView( |
| | | '63. 医院_Hospital上周创建的医院', |
| | | consumable.Id, |
| | | 'ET', |
| | | 1, |
| | | 0, |
| | | 'Is_Active__c', |
| | | 'ASC' |
| | | ); |
| | | LexConsumableAccountController.changelistView('62. 医院_Hospital申请中的医院',consumable.Id,'ET',1,0,'Is_Active__c','ASC'); |
| | | LexConsumableAccountController.changelistView('63. 医院_Hospital上周创建的医院',consumable.Id,'ET',1,0,'Is_Active__c','ASC'); |
| | | |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |