提出確認書チェッカ:提出確認書の項目が"○"のときとYesのときに両対応。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@231 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-03-10 00:43:55 +00:00
parent 2d41790872
commit 94294b312e
4 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ System::Boolean readSheet( System::String ^sheetfile, SheetItem ^item )
}
text = getXPathText( root, "/Sheet/IsUnnecessaryRating" );
if( !System::String::IsNullOrEmpty( text ) && text->Equals( "<EFBFBD>" ) )
if( !System::String::IsNullOrEmpty( text ) && (text->Equals( "<EFBFBD>" ) || text->Equals( "Yes" )) )
{
item->IsUnnecessaryRating = true;
}