<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=461658</guid>
        <pubDate>Sat, 18 Sep 2004 17:08:52 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=461658</link>
        <description><![CDATA[Colin_McRae: привет]]></description>
        <author>Colin_McRae</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459479</guid>
        <pubDate>Thu, 16 Sep 2004 08:08:21 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459479</link>
        <description><![CDATA[Outlander: Ну да это и имелось ввиду ;)]]></description>
        <author>Outlander</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459475</guid>
        <pubDate>Thu, 16 Sep 2004 08:05:37 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459475</link>
        <description><![CDATA[Guest: точнее AbstractDoc.РеквизитШапки(j).Представление() &lt;&gt; AbstractDoc.РеквизитШапки(j).Идентификатор<br> ;)]]></description>
        <author>Guest</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459473</guid>
        <pubDate>Thu, 16 Sep 2004 08:03:46 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=459473</link>
        <description><![CDATA[Dert&#39;Es: Спасибо :yes: <br>AbstractDoc.РеквизитШапки(j).Представление(); &lt;&gt; AbstractDoc.РеквизитТабличнойЧасти(j).Идентификатор  :whistle:]]></description>
        <author>Dert&#39;Es</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=458995</guid>
        <pubDate>Wed, 15 Sep 2004 15:32:33 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=458995</link>
        <description><![CDATA[Outlander: Идея примерно такая<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&nbsp;&nbsp; &nbsp; StartDate = &#39;01.01.00&#39;;</div><div class="code_line">&nbsp;&nbsp; &nbsp;EndDate = &#39;31.12.04&#39;;</div><div class="code_line">&nbsp;&nbsp; &nbsp;//Обход всех видов документов</div><div class="code_line">&nbsp;&nbsp; &nbsp;for i = 1 По Метаданные.Документ() Цикл</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;AbstractDoc = Метаданные.Документ(i);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;message(Метаданные.Документ(i).Представление());</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;ADoc=createObject(Метаданные.Документ(i).ПолныйИдентификатор()); </div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;ADoc.SelectDocuments(StartDate,EndDate);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;//Обход всех документов данного вида</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;While ADoc.GetDocument()&#62;0 do</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message(&quot; &nbsp;&quot;+ADoc);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Обход всех реквизитов шапки документа данного вида</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for j = 1 to AbstractDoc.РеквизитШапки() do</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ParameterName = AbstractDoc.РеквизитШапки(j).Представление(); </div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message (&quot; &nbsp; &quot; + ParameterName + &quot; = &quot; +</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Template(&quot;[ADoc.&quot;+ParameterName+&quot;]&quot;)</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;enddo;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ADoc.SelectLines();</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Обход по каждой строке документа</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;While ADoc.getline()&#62;0 do</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Обход всех реквизитов ТЧ документа данного вида</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for j = 1 to AbstractDoc.РеквизитТабличнойЧасти() do</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ParameterName = AbstractDoc.РеквизитТабличнойЧасти(j).Представление();</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;message (&quot; &nbsp; &quot; + ParameterName + &quot; = &quot; +</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Template(&quot;[ADoc.&quot;+ParameterName+&quot;]&quot;)</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;enddo; //Обход всех реквизитов ТЧ документа данного вида</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;enddo; //Обход по каждой строке документа</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;enddo;</div><div class="code_line">&nbsp;&nbsp; &nbsp;enddo;</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script><br>
этот кусок кода распечатывае данные всех документов. это жутко медленно и жутко неэффективно, но иногда необходимо]]></description>
        <author>Outlander</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=457356</guid>
        <pubDate>Tue, 14 Sep 2004 04:41:27 +0000</pubDate>
        <title>Поиск в документах</title>
        <link>https://forum.sources.ru/index.php?showtopic=65922&amp;view=findpost&amp;p=457356</link>
        <description><![CDATA[Dert&#39;Es: Необходимо найти значение в документах. Например нужно отыскать значение &quot;КонецПериода&quot; в документах таких как больничный лист и БухучетНачислений. :wacko:  Поиск должен быть как в табличной части так и в шапке. Кто нибудь с этим сталкивался? :wall:]]></description>
        <author>Dert&#39;Es</author>
        <category>1С: Проблемы и решения</category>
      </item>
	
      </channel>
      </rss>
	