新しい提出確認書に合わせて用途の「その他」の扱いを変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@435 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-12-01 01:32:39 +00:00
parent 2cabd6f2bd
commit 9982ad8445
6 changed files with 17 additions and 7 deletions

View File

@ -105,6 +105,7 @@ void Form1::setDeliverableProperties(void)
this->rPurposeNandDSCentre,
this->rPurposeNandShop,
this->rPurposeZone,
this->rPurposeOther,
};
for each( System::Windows::Forms::RadioButton ^r in rbuts )
{
@ -115,7 +116,11 @@ void Form1::setDeliverableProperties(void)
}
if( this->rPurposeOther->Checked )
{
this->hDeliv->hUsage = this->rPurposeOther->Text + "(" + this->tboxPurposeOther->Text + ")";
this->hDeliv->hUsageDetail = this->tboxPurposeOther->Text;
}
else
{
this->hDeliv->hUsageDetail = "";
}
// ‰ïŽÐ<C5BD>î•ñ

View File

@ -242,6 +242,10 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
{
node->FirstChild->Value = this->hUsage;
}
if( node->FirstChild->Value->Equals( "TagUsageDetail" ) )
{
node->FirstChild->Value = this->hUsageDetail;
}
if( node->FirstChild->Value->Equals( "TagRomVersion" ) )
{
node->FirstChild->Value = hSrl->RomVersion.ToString("X2");

View File

@ -42,19 +42,20 @@ namespace MasterEditorTWL
// field
public:
// 提出情報
property System::String ^hProductName; // 製品名
property System::String ^hProductCode1; // 製品コード
property System::String ^hProductCode2; // 製品コード
property System::String ^hProductName; // 製品名
property System::String ^hProductCode1; // 製品コード
property System::String ^hProductCode2; // 製品コード
property System::Int32 ReleaseYear; // 発売予定日
property System::Int32 ReleaseMonth;
property System::Int32 ReleaseDay;
property System::Int32 SubmitYear; // 提出日
property System::Int32 SubmitMonth;
property System::Int32 SubmitDay;
property System::String ^hSubmitWay; // 提出方法
property System::String ^hUsage; // 用途
property System::String ^hSubmitWay; // 提出方法
property System::String ^hUsage; // 用途
property System::String ^hUsageDetail;
property System::Int32 SubmitVersion; // 提出バージョン
property System::String ^hSDK; // SDKバージョン
property System::String ^hSDK; // SDKバージョン
property System::Boolean IsReleaseForeign; // 海外版の予定
property System::String ^hProductNameForeign;
property System::String ^hProductCode1Foreign;