mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
新しい提出確認書に合わせて用途の「その他」の扱いを変更。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@435 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
2cabd6f2bd
commit
9982ad8445
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -105,6 +105,7 @@ void Form1::setDeliverableProperties(void)
|
|||||||
this->rPurposeNandDSCentre,
|
this->rPurposeNandDSCentre,
|
||||||
this->rPurposeNandShop,
|
this->rPurposeNandShop,
|
||||||
this->rPurposeZone,
|
this->rPurposeZone,
|
||||||
|
this->rPurposeOther,
|
||||||
};
|
};
|
||||||
for each( System::Windows::Forms::RadioButton ^r in rbuts )
|
for each( System::Windows::Forms::RadioButton ^r in rbuts )
|
||||||
{
|
{
|
||||||
@ -115,7 +116,11 @@ void Form1::setDeliverableProperties(void)
|
|||||||
}
|
}
|
||||||
if( this->rPurposeOther->Checked )
|
if( this->rPurposeOther->Checked )
|
||||||
{
|
{
|
||||||
this->hDeliv->hUsage = this->rPurposeOther->Text + "(" + this->tboxPurposeOther->Text + ")";
|
this->hDeliv->hUsageDetail = this->tboxPurposeOther->Text;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this->hDeliv->hUsageDetail = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
// ‰ïŽÐ<C5BD>î•ñ
|
// ‰ïŽÐ<C5BD>î•ñ
|
||||||
|
|||||||
@ -242,6 +242,10 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
|||||||
{
|
{
|
||||||
node->FirstChild->Value = this->hUsage;
|
node->FirstChild->Value = this->hUsage;
|
||||||
}
|
}
|
||||||
|
if( node->FirstChild->Value->Equals( "TagUsageDetail" ) )
|
||||||
|
{
|
||||||
|
node->FirstChild->Value = this->hUsageDetail;
|
||||||
|
}
|
||||||
if( node->FirstChild->Value->Equals( "TagRomVersion" ) )
|
if( node->FirstChild->Value->Equals( "TagRomVersion" ) )
|
||||||
{
|
{
|
||||||
node->FirstChild->Value = hSrl->RomVersion.ToString("X2");
|
node->FirstChild->Value = hSrl->RomVersion.ToString("X2");
|
||||||
|
|||||||
@ -42,19 +42,20 @@ namespace MasterEditorTWL
|
|||||||
// field
|
// field
|
||||||
public:
|
public:
|
||||||
// 提出情報
|
// 提出情報
|
||||||
property System::String ^hProductName; // 製品名
|
property System::String ^hProductName; // 製品名
|
||||||
property System::String ^hProductCode1; // 製品コード
|
property System::String ^hProductCode1; // 製品コード
|
||||||
property System::String ^hProductCode2; // 製品コード
|
property System::String ^hProductCode2; // 製品コード
|
||||||
property System::Int32 ReleaseYear; // 発売予定日
|
property System::Int32 ReleaseYear; // 発売予定日
|
||||||
property System::Int32 ReleaseMonth;
|
property System::Int32 ReleaseMonth;
|
||||||
property System::Int32 ReleaseDay;
|
property System::Int32 ReleaseDay;
|
||||||
property System::Int32 SubmitYear; // 提出日
|
property System::Int32 SubmitYear; // 提出日
|
||||||
property System::Int32 SubmitMonth;
|
property System::Int32 SubmitMonth;
|
||||||
property System::Int32 SubmitDay;
|
property System::Int32 SubmitDay;
|
||||||
property System::String ^hSubmitWay; // 提出方法
|
property System::String ^hSubmitWay; // 提出方法
|
||||||
property System::String ^hUsage; // 用途
|
property System::String ^hUsage; // 用途
|
||||||
|
property System::String ^hUsageDetail;
|
||||||
property System::Int32 SubmitVersion; // 提出バージョン
|
property System::Int32 SubmitVersion; // 提出バージョン
|
||||||
property System::String ^hSDK; // SDKバージョン
|
property System::String ^hSDK; // SDKバージョン
|
||||||
property System::Boolean IsReleaseForeign; // 海外版の予定
|
property System::Boolean IsReleaseForeign; // 海外版の予定
|
||||||
property System::String ^hProductNameForeign;
|
property System::String ^hProductNameForeign;
|
||||||
property System::String ^hProductCode1Foreign;
|
property System::String ^hProductCode1Foreign;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user