Automatically generated REST interface in 1C:Enterprise 8 platform

Now the platform can automatically generate REST interface for entire application solution. You publish it in the usual way on the web-server and after that the third-party systems may access your application using HTTP requests.

REST interface allows reading the data of 1С:Enterprise, change them, create new objects and delete the existing ones.

You can use REST interface for such tasks as:

  • Integration of application solution with web sites and online shops;
  • Implementation of additional functionality for application solution using third-party tools without changing its configuration;
  • Loading data in the application solution and uploading data from it;
  • integration of application solution with corporate systems, probably even without additional programming.

typical operations performed using REST interface are as follows:

  • Obtaining the list of documents, catalogs, information register records, etc., possibly with filter;
  • obtaining data of the items of catalog, document (by reference), record data of independent information register (by key), record set data of subordinate register (by recorder);
  • Data editing of a single item of catalog, document and another reference object;
  • Creating new item of catalog, document, record set;
  • Conducting a single document, running business-process.

As an access protocol the platform uses the protocol OData release 3.0. This is an opened web-protocol to request and update data. It allows manipulating with data using the HTTP-commands as the requests. It is possible to get the responds in various formats, but we support as yet only the work with data in Atom/XML format.

We have implemented in the platform only the server part of REST services. That is, the application solution can automatically deliver its functionality using REST services. To interact with the third-party REST services from 1С:Enterprise (to organize the client part), it is possible to use the tools existing in the platform to work with HTTP: objects HTTPConnection, HTTPRequest and HTTPRespond.

Publications: Automatically generated REST interface of 1C:Enterprise 8 application solutions

However, the main task of REST interface for application solutions we see in the integration with third-party systems. And here there is no problem, because the OData clients exist almost for all major platforms:

Mobile: iOS, Windows Phone, Android;
Server/desktop: .NET, Java, PHP, Objective-C, Ruby, JavaScript;
Support in the content management systems (CMS): Drupal, Joomla.

It is easy to use OData interface of application solution:

  • In the Designer you publish REST interface - the flag Publish standard interface OData;
  • After that, the objects of application solution become available through this interface;
  • The authentication methods of OData clients are identical to the methods use for web-services;
  • OData clients may request via HTTP the metadata document which describes available application solution objects;
  • OData clients performs the operations to create, read, modify and delete data of application solution.

Almost all the major configuration objects are available in the REST interface: catalogs, documents, constants, enumerations, exchange plans, accumulation registers, calculation, accounting and information registers, virtual tables of periodical information register, accounting and accumulation registers, charts of accounts, characteristic types and calculation types, business-processes, tasks and document journals.

Unavailable at the moment are the reports and data processors, commands, selection filters, scheduled jobs, external data sources and users.

In the REST interface the attributes of configuration objects, operations to create, read, modify and delete data are available, as well as some script methods. For example:

  • For document - Post() and Unpost();
  • For task - ExecuteTask();
  • For business-process - Start();
  • For information register - SliceLast() and SliceFirst();
  • For accumulation and accounting register - Balance(), Turnovers() and BalanceAndTurnovers();
  • For calculation register - ScheduleData(), ActualActionPeriod(), <RecalculationName>() and Base<Name of base calculation register>().

Data reading is performed using GET-request. For example, reading the catalog list Goods (hereinafter only the request headers are listed for short):

GET /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods

For example, data reading of a single item of catalog Goods by GUID:

GET /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods(guid'7f4b5034-0331-11e3-b914-5404a6a68c42')

Creation of a new data item is performed using POST-request. As a value of reference a null GUID is passed. When creating and modifying the objects, the values of properties are passed in the request body in XML format (here the request text is listed in full):

POST  /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods HTTP/1.1
Content-Type: application/atom+xml
DataServiceVersion: 3.0;NetFx
MaxDataServiceVersion: 3.0;NetFx
Accept: application/atom+xml,application/xml
Accept-Charset: UTF-8
User-Agent: 1C-Enterprise
Host: test-host:8090
Content-Length: 1610




   
   
   
   <updated>2013-08-12T11:48:25Z</updated>
   <author>
      <name />
   </author>
   <content type="application/xml">
      <m:properties>
         <d:Code>157</d:Code>
         <d:DeletionMark>false</d:DeletionMark>
         <d:Description>T-shirt blue</d:Description>
         <d:IsFolder>false</d:IsFolder>
         <d:Parent_Key m:null="true" />
         <d:Ref_Key m:type="Edm.Guid">00000000-0000-0000-0000-000000000000</d:Ref_Key>
         <d:Article m:null="true" />
         <d:Vendor_Key>F400322D-7AE8-4803-A7BE-0D80E525E8C2</d:Vendor_Key>
      </m:properties>
   </content>
</entry>
</pre>
<p>Modification of existing data is performed using PATCH-request. For example, data modification of a single item of catalog Goods by GUID:</p>
<pre>PATCH /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods(guid'7f4b5034-0331-11e3-b914-5404a6a68c42')</pre>
<p>To delete data, DELETE-request is used (mark for deletion will be implemented in future in a separated ODATA-operation):</p>
<pre>DELETE /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods(guid'7f4b5034-0331-11e3-b914-5404a6a68c42')	</pre>
<p>Methods of script objects are executed using POST-requests. For example, document conduction:</p>
<pre>POST /OData_Tests_Infobase/odata/standard.odata/Document_Invoice(guid'17ed2041-0345-11e3-b914-5404a6a68c42')/Post()	</pre>
<p>In case of an error situation, 1С:Enterprise returns a response with HTTP-status 4XX or 5XX. 4XX status tells about incorrect client actions, 5XX status – about an error on the server. in case of 4XX status, 1С:Enterprise tries to help the client to understand the reason of an error and can send an additional internal error code and information message. </p>
<p>When reading and writing data using REST interface, the platform performs all the usual security checks and call the event handlers, except the filling check.</p>
<p>When working through the REST interface, an optimistic data lock is supported. When requesting data (of a single object or a list) together with them the platform returns the values of field (fields) DataVersion. In the subsequent requests PUT, PATCH и DELETE with the same data it is possible to send to 1С:Enterprise the version of read data. If the version of data existing in the information base did not change by this moment, the requested action is performed.</p>
<p>When receiving the data lists, it is possible to use the standard conditions for filtering ODATA requests. For example, receive the goods whose price is lower or equal to 3,5 or more than 200:</p>
<pre>GET /OData_Tests_Infobase/odata/standard.odata/Catalog_Goods?$filter=Price le 3.5 or Price gt 200</pre>
<p>Thanks to the versatility and cross-platform property, we position the automatically generated REST interface as a basic tool for integration with third-party systems.</p>
<div style='text-align:left' class='yasr-auto-insert-visitor'><!--Yasr Visitor Votes Shortcode--><div id='yasr_visitor_votes_26b70c6b75d02' class='yasr-visitor-votes'><div class="yasr-custom-text-vv-before yasr-custom-text-vv-before-1833">Click to rate this post!</div><div id='yasr-vv-second-row-container-26b70c6b75d02'
                                        class='yasr-vv-second-row-container'><div id='yasr-visitor-votes-rater-26b70c6b75d02'
                                      class='yasr-rater-stars-vv'
                                      data-rater-postid='1833'
                                      data-rating='0'
                                      data-rater-starsize='24'
                                      data-rater-readonly='false'
                                      data-rater-nonce='5534142405'
                                      data-issingular='true'
                                    ></div><div class="yasr-vv-stats-text-container" id="yasr-vv-stats-text-container-26b70c6b75d02"><svg xmlns="https://www.w3.org/2000/svg" width="20" height="20"
                                   class="yasr-dashicons-visitor-stats"
                                   data-postid="1833"
                                   id="yasr-stats-dashicon-26b70c6b75d02">
                                   <path d="M18 18v-16h-4v16h4zM12 18v-11h-4v11h4zM6 18v-8h-4v8h4z"></path>
                               </svg><span id="yasr-vv-text-container-26b70c6b75d02" class="yasr-vv-text-container">[Total: <span id="yasr-vv-votes-number-container-26b70c6b75d02">0</span>  Average: <span id="yasr-vv-average-container-26b70c6b75d02">0</span>]</span></div><div id='yasr-vv-loader-26b70c6b75d02' class='yasr-vv-container-loader'></div></div><div id='yasr-vv-bottom-container-26b70c6b75d02' class='yasr-vv-bottom-container'></div></div><!--End Yasr Visitor Votes Shortcode--></div>	</div><!-- .entry-content -->
	
	<footer class="entry-meta"><span class="tag-links"><a href="https://yellow-erp.com/tag/rest/" rel="tag">REST</a></span></footer></article><!-- #post-## -->
	<nav class="navigation post-navigation" role="navigation">
		<h1 class="screen-reader-text">Post navigation</h1>
		<div class="nav-links">
			<a href="https://yellow-erp.com/2013/12/add-button-find-in-list-to-all-catalogs-and-documents/" rel="prev"><span class="meta-nav">Previous Post</span>Add button “Find in list” to all catalogs and documents</a><a href="https://yellow-erp.com/2013/12/scheme-to-improve-the-quality-of-work-with-clients-part-2-development/" rel="next"><span class="meta-nav">Next Post</span>Scheme to improve the quality of work with clients. Part 2 – Development</a>		</div><!-- .nav-links -->
	</nav><!-- .navigation -->
	
<div id="comments" class="comments-area">

	
		<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2013/12/automatically-generated-rest-interface-in-1centerprise-8-platform/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://yellow-erp.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='1833' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="923dd1e3cb" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="163"/><script>document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	
</div><!-- #comments -->
		</div><!-- #content -->
	</div><!-- #primary -->

<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
	<aside id="search-2" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://yellow-erp.com/">
				<label>
					<span class="screen-reader-text">Search for:</span>
					<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Search" />
			</form></aside><aside id="tag_cloud-2" class="widget widget_tag_cloud"><h1 class="widget-title">Tags</h1><div class="tagcloud"><a href="https://yellow-erp.com/tag/1c-platform/" class="tag-cloud-link tag-link-12 tag-link-position-1" style="font-size: 17.871794871795pt;" aria-label="1C Platform (6 items)">1C Platform</a>
<a href="https://yellow-erp.com/tag/8-3/" class="tag-cloud-link tag-link-14 tag-link-position-2" style="font-size: 11.230769230769pt;" aria-label="8.3 (2 items)">8.3</a>
<a href="https://yellow-erp.com/tag/8-3-5/" class="tag-cloud-link tag-link-38 tag-link-position-3" style="font-size: 15.179487179487pt;" aria-label="8.3.5 (4 items)">8.3.5</a>
<a href="https://yellow-erp.com/tag/8-3-6/" class="tag-cloud-link tag-link-6 tag-link-position-4" style="font-size: 16.615384615385pt;" aria-label="8.3.6 (5 items)">8.3.6</a>
<a href="https://yellow-erp.com/tag/8-3-8/" class="tag-cloud-link tag-link-129 tag-link-position-5" style="font-size: 8pt;" aria-label="8.3.8 (1 item)">8.3.8</a>
<a href="https://yellow-erp.com/tag/8-3-10/" class="tag-cloud-link tag-link-130 tag-link-position-6" style="font-size: 8pt;" aria-label="8.3.10 (1 item)">8.3.10</a>
<a href="https://yellow-erp.com/tag/accounting-suite/" class="tag-cloud-link tag-link-17 tag-link-position-7" style="font-size: 15.179487179487pt;" aria-label="Accounting Suite (4 items)">Accounting Suite</a>
<a href="https://yellow-erp.com/tag/android/" class="tag-cloud-link tag-link-69 tag-link-position-8" style="font-size: 11.230769230769pt;" aria-label="Android (2 items)">Android</a>
<a href="https://yellow-erp.com/tag/azure/" class="tag-cloud-link tag-link-84 tag-link-position-9" style="font-size: 8pt;" aria-label="Azure (1 item)">Azure</a>
<a href="https://yellow-erp.com/tag/barcode/" class="tag-cloud-link tag-link-76 tag-link-position-10" style="font-size: 8pt;" aria-label="Barcode (1 item)">Barcode</a>
<a href="https://yellow-erp.com/tag/command-line/" class="tag-cloud-link tag-link-89 tag-link-position-11" style="font-size: 8pt;" aria-label="Command line (1 item)">Command line</a>
<a href="https://yellow-erp.com/tag/configuration-extensions/" class="tag-cloud-link tag-link-132 tag-link-position-12" style="font-size: 8pt;" aria-label="Configuration extensions (1 item)">Configuration extensions</a>
<a href="https://yellow-erp.com/tag/designer/" class="tag-cloud-link tag-link-15 tag-link-position-13" style="font-size: 11.230769230769pt;" aria-label="Designer (2 items)">Designer</a>
<a href="https://yellow-erp.com/tag/development/" class="tag-cloud-link tag-link-64 tag-link-position-14" style="font-size: 15.179487179487pt;" aria-label="Development (4 items)">Development</a>
<a href="https://yellow-erp.com/tag/dsc/" class="tag-cloud-link tag-link-7 tag-link-position-15" style="font-size: 11.230769230769pt;" aria-label="DSC (2 items)">DSC</a>
<a href="https://yellow-erp.com/tag/dynamic-list/" class="tag-cloud-link tag-link-22 tag-link-position-16" style="font-size: 11.230769230769pt;" aria-label="Dynamic list (2 items)">Dynamic list</a>
<a href="https://yellow-erp.com/tag/ean13/" class="tag-cloud-link tag-link-77 tag-link-position-17" style="font-size: 8pt;" aria-label="EAN13 (1 item)">EAN13</a>
<a href="https://yellow-erp.com/tag/erp/" class="tag-cloud-link tag-link-34 tag-link-position-18" style="font-size: 13.384615384615pt;" aria-label="ERP (3 items)">ERP</a>
<a href="https://yellow-erp.com/tag/excel/" class="tag-cloud-link tag-link-90 tag-link-position-19" style="font-size: 11.230769230769pt;" aria-label="Excel (2 items)">Excel</a>
<a href="https://yellow-erp.com/tag/graphite/" class="tag-cloud-link tag-link-16 tag-link-position-20" style="font-size: 11.230769230769pt;" aria-label="Graphite (2 items)">Graphite</a>
<a href="https://yellow-erp.com/tag/image/" class="tag-cloud-link tag-link-81 tag-link-position-21" style="font-size: 8pt;" aria-label="Image (1 item)">Image</a>
<a href="https://yellow-erp.com/tag/in-house-software/" class="tag-cloud-link tag-link-33 tag-link-position-22" style="font-size: 11.230769230769pt;" aria-label="In-House Software (2 items)">In-House Software</a>
<a href="https://yellow-erp.com/tag/lessons/" class="tag-cloud-link tag-link-25 tag-link-position-23" style="font-size: 11.230769230769pt;" aria-label="Lessons (2 items)">Lessons</a>
<a href="https://yellow-erp.com/tag/maintenance/" class="tag-cloud-link tag-link-78 tag-link-position-24" style="font-size: 13.384615384615pt;" aria-label="Maintenance (3 items)">Maintenance</a>
<a href="https://yellow-erp.com/tag/managed-forms/" class="tag-cloud-link tag-link-75 tag-link-position-25" style="font-size: 15.179487179487pt;" aria-label="Managed forms (4 items)">Managed forms</a>
<a href="https://yellow-erp.com/tag/mobile-application/" class="tag-cloud-link tag-link-80 tag-link-position-26" style="font-size: 8pt;" aria-label="Mobile application (1 item)">Mobile application</a>
<a href="https://yellow-erp.com/tag/mssql/" class="tag-cloud-link tag-link-36 tag-link-position-27" style="font-size: 13.384615384615pt;" aria-label="MSSQL (3 items)">MSSQL</a>
<a href="https://yellow-erp.com/tag/musthave/" class="tag-cloud-link tag-link-79 tag-link-position-28" style="font-size: 8pt;" aria-label="MustHave (1 item)">MustHave</a>
<a href="https://yellow-erp.com/tag/mustread/" class="tag-cloud-link tag-link-61 tag-link-position-29" style="font-size: 13.384615384615pt;" aria-label="MustRead (3 items)">MustRead</a>
<a href="https://yellow-erp.com/tag/partners/" class="tag-cloud-link tag-link-88 tag-link-position-30" style="font-size: 8pt;" aria-label="Partners (1 item)">Partners</a>
<a href="https://yellow-erp.com/tag/password/" class="tag-cloud-link tag-link-86 tag-link-position-31" style="font-size: 8pt;" aria-label="Password (1 item)">Password</a>
<a href="https://yellow-erp.com/tag/performance/" class="tag-cloud-link tag-link-29 tag-link-position-32" style="font-size: 18.769230769231pt;" aria-label="performance (7 items)">performance</a>
<a href="https://yellow-erp.com/tag/price/" class="tag-cloud-link tag-link-87 tag-link-position-33" style="font-size: 11.230769230769pt;" aria-label="Price (2 items)">Price</a>
<a href="https://yellow-erp.com/tag/project-management/" class="tag-cloud-link tag-link-57 tag-link-position-34" style="font-size: 22pt;" aria-label="Project management (11 items)">Project management</a>
<a href="https://yellow-erp.com/tag/protection/" class="tag-cloud-link tag-link-54 tag-link-position-35" style="font-size: 11.230769230769pt;" aria-label="Protection (2 items)">Protection</a>
<a href="https://yellow-erp.com/tag/query/" class="tag-cloud-link tag-link-66 tag-link-position-36" style="font-size: 11.230769230769pt;" aria-label="Query (2 items)">Query</a>
<a href="https://yellow-erp.com/tag/query-builder/" class="tag-cloud-link tag-link-43 tag-link-position-37" style="font-size: 11.230769230769pt;" aria-label="Query builder (2 items)">Query builder</a>
<a href="https://yellow-erp.com/tag/sales/" class="tag-cloud-link tag-link-58 tag-link-position-38" style="font-size: 11.230769230769pt;" aria-label="sales (2 items)">sales</a>
<a href="https://yellow-erp.com/tag/small-business/" class="tag-cloud-link tag-link-10 tag-link-position-39" style="font-size: 11.230769230769pt;" aria-label="Small business (2 items)">Small business</a>
<a href="https://yellow-erp.com/tag/sql/" class="tag-cloud-link tag-link-85 tag-link-position-40" style="font-size: 11.230769230769pt;" aria-label="SQL (2 items)">SQL</a>
<a href="https://yellow-erp.com/tag/story/" class="tag-cloud-link tag-link-35 tag-link-position-41" style="font-size: 11.230769230769pt;" aria-label="story (2 items)">story</a>
<a href="https://yellow-erp.com/tag/tabs/" class="tag-cloud-link tag-link-131 tag-link-position-42" style="font-size: 8pt;" aria-label="tabs (1 item)">tabs</a>
<a href="https://yellow-erp.com/tag/twitter/" class="tag-cloud-link tag-link-83 tag-link-position-43" style="font-size: 8pt;" aria-label="Twitter (1 item)">Twitter</a>
<a href="https://yellow-erp.com/tag/valuestorage/" class="tag-cloud-link tag-link-82 tag-link-position-44" style="font-size: 8pt;" aria-label="ValueStorage (1 item)">ValueStorage</a>
<a href="https://yellow-erp.com/tag/valuetable/" class="tag-cloud-link tag-link-99 tag-link-position-45" style="font-size: 8pt;" aria-label="ValueTable (1 item)">ValueTable</a></div>
</aside><aside id="text-9" class="widget widget_text"><h1 class="widget-title">Social networks</h1>			<div class="textwidget"><div class="fb-page" data-href="https://www.facebook.com/yellow.erp/" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/yellow.erp/"><a href="https://www.facebook.com/yellow.erp/">Yellow-ERP</a></blockquote></div></div></div>
		</aside>
		<aside id="recent-posts-2" class="widget widget_recent_entries">
		<h1 class="widget-title">Recent Posts</h1>
		<ul>
											<li>
					<a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/">Customizing 1C:Enterprise applications</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2017/02/improvements-for-the-opened-items-panel/">Improvements for the opened items panel</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2017/01/the-most-popular-programming-languages-in-russia-in-2016/">The most popular programming languages in Russia in 2016</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2016/11/how-to-debug-solution-on-mobile-1centerprise-platform/">How to debug a solution on mobile 1C:Enterprise platform</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2016/10/interface-usability-in-platform-versions-8-3-8-and-8-3-9/">Interface usability in 1C Enterprise platform 8.3.8 and 8.3.9</a>
									</li>
					</ul>

		</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h1 class="widget-title">Recent Comments</h1><ul id="recentcomments"><li class="recentcomments"><span class="comment-author-link">Vishwas Mokashi</span> on <a href="https://yellow-erp.com/page/guides/dev/accounting/#comment-34318">1C:Enterprise 8.3. Developer Guide. Chapter 11. Accounting</a></li><li class="recentcomments"><span class="comment-author-link">Ricardo Enriquez</span> on <a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/#comment-22954">Customizing 1C:Enterprise applications</a></li><li class="recentcomments"><span class="comment-author-link">Nguyễn long</span> on <a href="https://yellow-erp.com/2014/06/http-services/#comment-21182">HTTP-services</a></li><li class="recentcomments"><span class="comment-author-link">Alex</span> on <a href="https://yellow-erp.com/page/about/#comment-17217">About US</a></li><li class="recentcomments"><span class="comment-author-link">Eden</span> on <a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/#comment-16805">Customizing 1C:Enterprise applications</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h1 class="widget-title">Archives</h1>
			<ul>
					<li><a href='https://yellow-erp.com/2017/02/'>February 2017</a></li>
	<li><a href='https://yellow-erp.com/2017/01/'>January 2017</a></li>
	<li><a href='https://yellow-erp.com/2016/11/'>November 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/10/'>October 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/09/'>September 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/05/'>May 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/04/'>April 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/02/'>February 2016</a></li>
	<li><a href='https://yellow-erp.com/2015/11/'>November 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/10/'>October 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/07/'>July 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/04/'>April 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/03/'>March 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/02/'>February 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/01/'>January 2015</a></li>
	<li><a href='https://yellow-erp.com/2014/12/'>December 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/11/'>November 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/10/'>October 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/08/'>August 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/07/'>July 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/06/'>June 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/05/'>May 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/04/'>April 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/03/'>March 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/02/'>February 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/01/'>January 2014</a></li>
	<li><a href='https://yellow-erp.com/2013/12/'>December 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/11/'>November 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/10/'>October 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/09/'>September 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/08/'>August 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/07/'>July 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/06/'>June 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/05/'>May 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/04/'>April 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/03/'>March 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/02/'>February 2013</a></li>
	<li><a href='https://yellow-erp.com/2012/12/'>December 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/11/'>November 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/09/'>September 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/01/'>January 2012</a></li>
	<li><a href='https://yellow-erp.com/2011/04/'>April 2011</a></li>
	<li><a href='https://yellow-erp.com/2009/05/'>May 2009</a></li>
			</ul>

			</aside><aside id="categories-2" class="widget widget_categories"><h1 class="widget-title">Categories</h1>
			<ul>
					<li class="cat-item cat-item-11"><a href="https://yellow-erp.com/category/1c-company-news/">1C Company news</a>
</li>
	<li class="cat-item cat-item-27"><a href="https://yellow-erp.com/category/common-publications/">Common publications</a>
</li>
	<li class="cat-item cat-item-3"><a href="https://yellow-erp.com/category/news/">news</a>
</li>
	<li class="cat-item cat-item-62"><a href="https://yellow-erp.com/category/offtop/">Offtop</a>
</li>
	<li class="cat-item cat-item-18"><a href="https://yellow-erp.com/category/platform-features/">Platform Features</a>
</li>
			</ul>

			</aside><aside id="meta-2" class="widget widget_meta"><h1 class="widget-title">Meta</h1>
		<ul>
						<li><a href="https://yellow-erp.com/wp-login.php">Log in</a></li>
			<li><a href="https://yellow-erp.com/feed/">Entries feed</a></li>
			<li><a href="https://yellow-erp.com/comments/feed/">Comments feed</a></li>

			<li><a href="https://wordpress.org/">WordPress.org</a></li>
		</ul>

		</aside></div><!-- #content-sidebar -->
<div id="secondary">
		<h2 class="site-description">1C:Enterprise Developer's Community</h2>
	
		<nav role="navigation" class="navigation site-navigation secondary-navigation">
		<div class="menu-mainmenu-container"><ul id="menu-mainmenu" class="menu"><li id="menu-item-1883" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1883"><a href="/">HOME</a></li>
<li id="menu-item-1891" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1891"><a href="https://yellow-erp.com/page/1c/platform/">1C:Enterprise 8 platform</a>
<ul class="sub-menu">
	<li id="menu-item-1897" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1897"><a href="https://yellow-erp.com/page/1c/ssl/">1C:Standard subsystems library</a></li>
	<li id="menu-item-1898" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1898"><a href="https://yellow-erp.com/page/1c/licences-issue/">Answers to the typical questions for licensing of “1C:Enterprise 8”</a></li>
	<li id="menu-item-1899" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1899"><a href="https://yellow-erp.com/page/1c/distr/">Current versions platform and configurations</a>
	<ul class="sub-menu">
		<li id="menu-item-2923" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2923"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-24-new-functionality-and-changes/">1C:Enterprise 8.3.24. New functionality and changes.</a></li>
		<li id="menu-item-2924" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2924"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-23-new-functionality-and-changes/">1C:Enterprise 8.3.23. New functionality and changes.</a></li>
		<li id="menu-item-2925" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2925"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-22-new-functionality-and-changes/">1C:Enterprise 8.3.22. New functionality and changes.</a></li>
		<li id="menu-item-2926" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2926"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-21-new-functionality-and-changes/">1C:Enterprise 8.3.21. New functionality and changes.</a></li>
		<li id="menu-item-2887" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2887"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-20-new-functionality-and-changes/">1C:Enterprise 8.3.20. New functionality and changes.</a></li>
		<li id="menu-item-2888" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2888"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-19-new-functionality-and-changes/">1C:Enterprise 8.3.19. New functionality and changes.</a></li>
		<li id="menu-item-2889" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2889"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-18-new-functionality-and-changes/">1C:Enterprise 8.3.18. New functionality and changes.</a></li>
		<li id="menu-item-2864" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2864"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-17-new-functionality-and-changes/">1C:Enterprise 8.3.17. New functionality and changes.</a></li>
		<li id="menu-item-2863" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2863"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-16-new-functionality-and-changes/">1C:Enterprise 8.3.16. New functionality and changes.</a></li>
		<li id="menu-item-2845" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2845"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-15-new-functionality-and-changes/">1C:Enterprise 8.3.15. New functionality and changes.</a></li>
		<li id="menu-item-2842" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2842"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-14-new-functionality-and-changes/">1C:Enterprise 8.3.14. New functionality and changes.</a></li>
		<li id="menu-item-2828" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2828"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-13-new-functionality-and-changes/">1C:Enterprise 8.3.13. New functionality and changes.</a></li>
		<li id="menu-item-2823" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2823"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-12-new-functionality-and-changes/">1C:Enterprise 8.3.12. New functionality and changes.</a></li>
		<li id="menu-item-2810" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2810"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-11-new-functionality-and-changes/">1C:Enterprise 8.3.11. New functionality and changes.</a></li>
		<li id="menu-item-2752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2752"><a href="https://yellow-erp.com/page/1c/distr/1centerprise-8-3-10-new-functionality-and-changes/">1C:Enterprise 8.3.10. New functionality and changes.</a></li>
		<li id="menu-item-2679" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2679"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-3-9/">1C:Enterprise 8.3.9. New functionality and changes.</a></li>
		<li id="menu-item-2219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2219"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-3-8/">1C:Enterprise 8.3.8. New functionality and changes.</a></li>
		<li id="menu-item-2222" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2222"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-3-7/">1C:Enterprise 8.3.7. New functionality and changes.</a></li>
		<li id="menu-item-2602" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2602"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-3-6/">1C:Enterprise 8.3.6. New functionality and changes.</a></li>
		<li id="menu-item-2601" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2601"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-3-5/">1C:Enterprise 8.3.5. New functionality and changes.</a></li>
		<li id="menu-item-2680" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2680"><a href="https://yellow-erp.com/page/1c/distr/new-functionality-and-changes-version-8-4-1/">1C:Enterprise 8.4.1. New functionality and changes.</a></li>
	</ul>
</li>
	<li id="menu-item-1902" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1902"><a href="https://yellow-erp.com/page/1c/system-requirements/">System requirements of “1C:Enterprise 8”</a></li>
	<li id="menu-item-1903" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1903"><a href="https://yellow-erp.com/page/buy1c/">Buy “1C:Enterprise 8” licences</a></li>
	<li id="menu-item-1904" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1904"><a href="https://yellow-erp.com/page/downloads/">Downloads</a></li>
</ul>
</li>
<li id="menu-item-1885" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1885"><a href="https://yellow-erp.com/page/guides/">Developer’s Guides</a>
<ul class="sub-menu">
	<li id="menu-item-1907" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1907"><a href="https://yellow-erp.com/page/guides/dev/">1C:Enterprise 8.3. Developer Guide.</a></li>
	<li id="menu-item-1906" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1906"><a href="https://yellow-erp.com/page/guides/core-development-techniques/">1C:Enterprise 8.3. Core Development Techniques Tutorial.</a></li>
	<li id="menu-item-1905" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1905"><a href="https://yellow-erp.com/page/guides/adm/">1C:Enterprise 8.3. Administrator Guide.</a></li>
	<li id="menu-item-1886" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1886"><a href="https://yellow-erp.com/page/guides/clientserveradm/">1C:Enterprise 8.3. Client/Server mode. Administrator Guide.</a></li>
	<li id="menu-item-2118" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2118"><a href="https://yellow-erp.com/page/guides/usrt/">1C:Enterprise 8.3. User Manual. Taxi interface.</a></li>
</ul>
</li>
<li id="menu-item-1916" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1916"><a href="https://yellow-erp.com/page/study-books/">Study Books</a>
<ul class="sub-menu">
	<li id="menu-item-2562" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2562"><a href="https://yellow-erp.com/page/guides/1cprofessional-training-course/">1C:Professional training course</a></li>
	<li id="menu-item-1908" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1908"><a href="https://yellow-erp.com/page/guides/practical-dev-guide83/">1C:Enterprise 8.3. Practical Developer’s Guide. Overview</a></li>
	<li id="menu-item-1892" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1892"><a href="https://yellow-erp.com/page/guides/introduction-short-course/">1C:Enterprise 8. Introduction. Short course.</a></li>
	<li id="menu-item-1894" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1894"><a href="https://yellow-erp.com/page/guides/mobile/">1C:Enterprise 8.3. 1C Mobile Application. Rapid application development tutorial.</a></li>
	<li id="menu-item-1893" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1893"><a href="https://yellow-erp.com/page/guides/practical-dev-guide/">1C:Enterprise 8.2. Practical Developer’s Guide. Examples and Standard Techniques.</a></li>
</ul>
</li>
<li id="menu-item-1884" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1884"><a href="/help/1cv8/Overview1CEnterpriseSystem/">Help system</a></li>
<li id="menu-item-1900" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1900"><a href="https://yellow-erp.com/page/1c/demo/">Demo applications</a>
<ul class="sub-menu">
	<li id="menu-item-2671" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2671"><a href="https://yellow-erp.com/page/1c/demo/document-management/">DEMO: Document Management</a></li>
	<li id="menu-item-2580" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2580"><a href="https://yellow-erp.com/page/1c/demo/1c-erp/">DEMO: 1C:ERP</a></li>
	<li id="menu-item-2579" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2579"><a href="https://yellow-erp.com/page/1c/demo/small-business/">DEMO: 1C:Drive</a></li>
</ul>
</li>
<li id="menu-item-2565" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2565"><a href="https://yellow-erp.com/contact-us/">Contact Us</a></li>
</ul></div>	</nav>
	
		<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
		<aside id="search-2" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://yellow-erp.com/">
				<label>
					<span class="screen-reader-text">Search for:</span>
					<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Search" />
			</form></aside><aside id="meta-2" class="widget widget_meta"><h1 class="widget-title">Meta</h1>
		<ul>
						<li><a href="https://yellow-erp.com/wp-login.php">Log in</a></li>
			<li><a href="https://yellow-erp.com/feed/">Entries feed</a></li>
			<li><a href="https://yellow-erp.com/comments/feed/">Comments feed</a></li>

			<li><a href="https://wordpress.org/">WordPress.org</a></li>
		</ul>

		</aside>
		<aside id="recent-posts-2" class="widget widget_recent_entries">
		<h1 class="widget-title">Recent Posts</h1>
		<ul>
											<li>
					<a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/">Customizing 1C:Enterprise applications</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2017/02/improvements-for-the-opened-items-panel/">Improvements for the opened items panel</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2017/01/the-most-popular-programming-languages-in-russia-in-2016/">The most popular programming languages in Russia in 2016</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2016/11/how-to-debug-solution-on-mobile-1centerprise-platform/">How to debug a solution on mobile 1C:Enterprise platform</a>
									</li>
											<li>
					<a href="https://yellow-erp.com/2016/10/interface-usability-in-platform-versions-8-3-8-and-8-3-9/">Interface usability in 1C Enterprise platform 8.3.8 and 8.3.9</a>
									</li>
					</ul>

		</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h1 class="widget-title">Recent Comments</h1><ul id="recentcomments-2"><li class="recentcomments"><span class="comment-author-link">Vishwas Mokashi</span> on <a href="https://yellow-erp.com/page/guides/dev/accounting/#comment-34318">1C:Enterprise 8.3. Developer Guide. Chapter 11. Accounting</a></li><li class="recentcomments"><span class="comment-author-link">Ricardo Enriquez</span> on <a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/#comment-22954">Customizing 1C:Enterprise applications</a></li><li class="recentcomments"><span class="comment-author-link">Nguyễn long</span> on <a href="https://yellow-erp.com/2014/06/http-services/#comment-21182">HTTP-services</a></li><li class="recentcomments"><span class="comment-author-link">Alex</span> on <a href="https://yellow-erp.com/page/about/#comment-17217">About US</a></li><li class="recentcomments"><span class="comment-author-link">Eden</span> on <a href="https://yellow-erp.com/2017/02/customizing-1centerprise-applications/#comment-16805">Customizing 1C:Enterprise applications</a></li></ul></aside><aside id="archives-2" class="widget widget_archive"><h1 class="widget-title">Archives</h1>
			<ul>
					<li><a href='https://yellow-erp.com/2017/02/'>February 2017</a></li>
	<li><a href='https://yellow-erp.com/2017/01/'>January 2017</a></li>
	<li><a href='https://yellow-erp.com/2016/11/'>November 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/10/'>October 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/09/'>September 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/05/'>May 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/04/'>April 2016</a></li>
	<li><a href='https://yellow-erp.com/2016/02/'>February 2016</a></li>
	<li><a href='https://yellow-erp.com/2015/11/'>November 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/10/'>October 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/07/'>July 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/04/'>April 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/03/'>March 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/02/'>February 2015</a></li>
	<li><a href='https://yellow-erp.com/2015/01/'>January 2015</a></li>
	<li><a href='https://yellow-erp.com/2014/12/'>December 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/11/'>November 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/10/'>October 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/08/'>August 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/07/'>July 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/06/'>June 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/05/'>May 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/04/'>April 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/03/'>March 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/02/'>February 2014</a></li>
	<li><a href='https://yellow-erp.com/2014/01/'>January 2014</a></li>
	<li><a href='https://yellow-erp.com/2013/12/'>December 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/11/'>November 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/10/'>October 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/09/'>September 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/08/'>August 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/07/'>July 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/06/'>June 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/05/'>May 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/04/'>April 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/03/'>March 2013</a></li>
	<li><a href='https://yellow-erp.com/2013/02/'>February 2013</a></li>
	<li><a href='https://yellow-erp.com/2012/12/'>December 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/11/'>November 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/09/'>September 2012</a></li>
	<li><a href='https://yellow-erp.com/2012/01/'>January 2012</a></li>
	<li><a href='https://yellow-erp.com/2011/04/'>April 2011</a></li>
	<li><a href='https://yellow-erp.com/2009/05/'>May 2009</a></li>
			</ul>

			</aside><aside id="categories-2" class="widget widget_categories"><h1 class="widget-title">Categories</h1>
			<ul>
					<li class="cat-item cat-item-11"><a href="https://yellow-erp.com/category/1c-company-news/">1C Company news</a>
</li>
	<li class="cat-item cat-item-27"><a href="https://yellow-erp.com/category/common-publications/">Common publications</a>
</li>
	<li class="cat-item cat-item-3"><a href="https://yellow-erp.com/category/news/">news</a>
</li>
	<li class="cat-item cat-item-62"><a href="https://yellow-erp.com/category/offtop/">Offtop</a>
</li>
	<li class="cat-item cat-item-18"><a href="https://yellow-erp.com/category/platform-features/">Platform Features</a>
</li>
			</ul>

			</aside>	</div><!-- #primary-sidebar -->
	</div><!-- #secondary -->

		</div><!-- #main -->

		<footer id="colophon" class="site-footer" role="contentinfo">

			
			<div class="site-info">
				<!--				<a href="https://wordpress.org/">Proudly powered by WordPress</a>
				-->
				<div>Copyright © 2013-2023 Yellow ERP Inc. All rights reserved. Reproduction in whole or in part in any form or medium without express written permission of Yellow ERP Inc. is prohibited.<br/> Some names and products listed are the registered trademarks of their respective owners.</div>
				
			</div><!-- .site-info -->
		</footer><!-- #colophon -->
	</div><!-- #page -->

	<link rel='stylesheet' id='yasrcss-css' href='https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/css/yasr.css?ver=3.4.7' type='text/css' media='all' />
<style id='yasrcss-inline-css' type='text/css'>

            .yasr-star-rating {
                background-image: url('https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/img/star_2.svg');
            }
            .yasr-star-rating .yasr-star-value {
                background: url('https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/img/star_3.svg') ;
            }
</style>
<script type='text/javascript' src='https://yellow-erp.com/wp-includes/js/comment-reply.min.js?ver=6.3.3' id='comment-reply-js'></script>
<script type='text/javascript' src='https://yellow-erp.com/wp-content/themes/twentyfourteen19/js/functions.js?ver=20150315' id='twentyfourteen-script-js'></script>
<script type='text/javascript' id='yasr-window-var-js-extra'>
/* <![CDATA[ */
var yasrWindowVar = {"siteUrl":"https:\/\/yellow-erp.com","adminUrl":"https:\/\/yellow-erp.com\/wp-admin\/","ajaxurl":"https:\/\/yellow-erp.com\/wp-admin\/admin-ajax.php","visitorStatsEnabled":"yes","ajaxEnabled":"no","loaderHtml":"<div id=\"yasr-loader\" style=\"display: inline-block\">\u00a0 <img src=\"https:\/\/yellow-erp.com\/wp-content\/plugins\/yet-another-stars-rating\/includes\/img\/loader.gif\" \r\n                 title=\"yasr-loader\" alt=\"yasr-loader\" height=\"16\" width=\"16\"><\/div>","loaderUrl":"https:\/\/yellow-erp.com\/wp-content\/plugins\/yet-another-stars-rating\/includes\/img\/loader.gif","isUserLoggedIn":"false","isRtl":"false","starSingleForm":"\"star\"","starsPluralForm":"\"stars\"","textAfterVr":"\"[Total: %total_count%  Average: %average%]\"","textRating":"\"Rating\"","textLoadRanking":"\"Loading, please wait\"","textVvStats":"\"out of 5 stars\"","textOrderBy":"\"Order by\"","textMostRated":"\"Most Rated\"","textHighestRated":"\"Highest Rated\"","textLeftColumnHeader":"\"Post\""};
/* ]]> */
</script>
<script type='text/javascript' src='https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/js/yasr-globals.js?ver=3.4.7' id='yasr-global-functions-js'></script>
<script type='text/javascript' src='https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/js/tippy.all.min.js?ver=3.6.0' id='tippy-js'></script>
<script type='text/javascript' src='https://yellow-erp.com/wp-content/plugins/yet-another-stars-rating/includes/js/shortcodes/visitorVotes.js?ver=3.4.7' id='yasr-front-vv-js'></script>
<script defer type='text/javascript' src='https://yellow-erp.com/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1706756151' id='akismet-frontend-js'></script>
	

<script type="text/javascript">
			var _lsIsLoadGA=(typeof(window._gaq)=='undefined') ? false : true ;

			  var _gaq = _gaq || [];
			  _gaq.push(['lscounter._setAccount', 'UA-28922093-1']);
			  _gaq.push(['lscounter._trackPageview']);

			if (!_lsIsLoadGA) {
			  (function() {
				var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
				ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
				var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
			  })();
			}
</script>

</body>
</html>