- 매수하지 않아도 중복 종목에 추가

This commit is contained in:
2016-12-27 11:16:13 +09:00
parent a93d3a8f45
commit eb796e8df2
2 changed files with 12 additions and 3 deletions

View File

@@ -126,8 +126,13 @@ namespace NewsCrawler
public void AddDuplicatedList(string strCode, string strName)
{
CODE_VALUE Result = m_CodeList.Find(s => s.m_strCode == strCode);
if(Result != null)
Result.m_enType |= CODE_TYPE.DUPLICATED;
if(Result == null)
return;
if((Result.m_enType & CODE_TYPE.DUPLICATED) == CODE_TYPE.DUPLICATED)
return;
Result.m_enType |= CODE_TYPE.DUPLICATED;
string strPath = Util.GetConfigPath()+"/code-duplicated.txt";
File.AppendAllText(strPath, strName+Environment.NewLine);