Add html files
This commit is contained in:
139
modules/Accounts/Popup_picker.html
Normal file
139
modules/Accounts/Popup_picker.html
Normal file
@@ -0,0 +1,139 @@
|
||||
<!--
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
-->
|
||||
|
||||
<!-- BEGIN: main -->
|
||||
<!-- BEGIN: SearchHeader -->
|
||||
<script type="text/javascript" src="include/JSON.js?s={SUGAR_VERSION}&c={JS_CUSTOM_VERSION}"></script>
|
||||
<script type="text/javascript" src="include/javascript/popup_helper.js?s={SUGAR_VERSION}&c={JS_CUSTOM_VERSION}"></script>
|
||||
|
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="edit view">
|
||||
<tr>
|
||||
<td>
|
||||
<form action="index.php" method="post" name="popup_query_form" id="popup_query_form">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td scope="row" nowrap="nowrap">{MOD.LBL_ACCOUNT_NAME}</td>
|
||||
<td nowrap="nowrap"><input type="text" size="20" name="name" value="{NAME}" /></td>
|
||||
<td scope="row" nowrap="nowrap">{MOD.LBL_CITY}</td>
|
||||
<td nowrap="nowrap"><input type="text" size="20" name="billing_address_city" value="{BILLING_ADDRESS_CITY}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td scope="row" nowrap="nowrap">{MOD.LBL_PHONE_OFFICE}</td>
|
||||
<td nowrap="nowrap"><input type="text" size="20" name="phone_office" value="{PHONE_OFFICE}" /></td>
|
||||
<td>
|
||||
</td>
|
||||
<td width="20%" align="right">
|
||||
<input type="hidden" name="module" value="{MODULE_NAME}" />
|
||||
<input type="hidden" name="action" value="Popup" />
|
||||
<input type="hidden" name="query" value="true" />
|
||||
<input type="hidden" name="func_name" value="" />
|
||||
<input type="hidden" name="request_data" value="{request_data}" />
|
||||
<input type="hidden" name="populate_parent" value="false" />
|
||||
<input type="hidden" name="hide_clear_button" value="true" />
|
||||
<input type="hidden" name="record_id" value="" />
|
||||
<input type="submit" name="button" class="button"
|
||||
title="{APP.LBL_SEARCH_BUTTON_TITLE}"
|
||||
accessKey="{APP.LBL_SEARCH_BUTTON_KEY}"
|
||||
value="{APP.LBL_SEARCH_BUTTON_LABEL}" />
|
||||
<input type="hidden" name="mode" value="{MULTI_SELECT}" />
|
||||
<input type="hidden" name="create" value="{CREATE}">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
/* initialize the popup request from the parent */
|
||||
|
||||
if(window.document.forms['popup_query_form'].request_data.value == "")
|
||||
{
|
||||
window.document.forms['popup_query_form'].request_data.value
|
||||
= JSON.stringify(window.opener.get_popup_request_data());
|
||||
}
|
||||
-->
|
||||
</script>
|
||||
|
||||
<p>
|
||||
<div id='addformlink'>{CREATEBUTTON}</div>
|
||||
<div id='addform' style='display:none;position:relative;z-index:2;left:0px;top:0px;'>
|
||||
<form name="AccountSave" onsubmit="return check_form('AccountSave');" method="post" action="index.php">
|
||||
{ADDFORMHEADER}
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="edit view">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<input type="hidden" name="module" value="{MODULE_NAME}" />
|
||||
<input type="hidden" name="action" value="Popup" />
|
||||
<input type="hidden" name="doAction" value="save" />
|
||||
<input type="hidden" name="query" value="true" />
|
||||
{ADDFORM}
|
||||
</td></tr>
|
||||
</table></td></tr></table>
|
||||
</form>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
<!-- END: SearchHeader -->
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list view">
|
||||
<!-- BEGIN: list_nav_row -->
|
||||
{PAGINATION}
|
||||
<!-- END: list_nav_row -->
|
||||
<tr height="20">
|
||||
<th scope="col" nowrap="nowrap">{CHECKALL}</th>
|
||||
<th scope="col" width="45%"><a href="{ORDER_BY}name">{MOD.LBL_LIST_ACCOUNT_NAME}{arrow_start}{name_arrow}{arrow_end}</a></th>
|
||||
<th scope="col" width="35%"><a href="{ORDER_BY}BILLING_ADDRESS_CITY">{MOD.LBL_LIST_CITY}{arrow_start}{BILLING_ADDRESS_CITY_arrow}{arrow_end}</a></th>
|
||||
<th scope="col" width="30%"><a href="{ORDER_BY}PHONE_OFFICE">{MOD.LBL_PHONE_OFFICE}{arrow_start}{PHONE_OFFICE_arrow}{arrow_end}</a></th>
|
||||
</tr>
|
||||
<!-- BEGIN: row -->
|
||||
<tr height="20" class="{ROW_COLOR}S1">
|
||||
<td valign='top'>{PREROW}</td>
|
||||
<td scope='row' valign="top"><{TAG_TYPE} href="#" onclick="send_back('Accounts','{ACCOUNT.ID}');" >{ACCOUNT.NAME}</{TAG_TYPE}></td>
|
||||
<td valign="top">{ACCOUNT.CITY}</td>
|
||||
<td valign="top">{ACCOUNT.PHONE_OFFICE}</td>
|
||||
</tr>
|
||||
|
||||
<!-- END: row -->
|
||||
{PAGINATION}
|
||||
</table>
|
||||
{ASSOCIATED_JAVASCRIPT_DATA}
|
||||
<!-- END: main -->
|
||||
72
modules/Accounts/ShowDuplicates.html
Normal file
72
modules/Accounts/ShowDuplicates.html
Normal file
@@ -0,0 +1,72 @@
|
||||
<!--
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
/*********************************************************************************
|
||||
* {APP.LBL_CURRENCY_SYM}Header: /cvsroot/sugarcrm/sugarcrm/modules/Contacts/EditView.html,v 1.22 2004/07/16 04:04:42 sugarclint Exp {APP.LBL_CURRENCY_SYM}
|
||||
********************************************************************************/
|
||||
-->
|
||||
<!-- BEGIN: main -->
|
||||
<!-- BEGIN: error -->
|
||||
<span class="color">{ERROR}</span>
|
||||
<!-- END: error -->
|
||||
|
||||
<form action='index.php' method='post' name='Save'>
|
||||
<input type="hidden" name="module" value="Accounts">
|
||||
<input type="hidden" name="return_module" value="{RETURN_MODULE}">
|
||||
<input type="hidden" name="return_action" value="{RETURN_ACTION}">
|
||||
<input type="hidden" name="return_id" value="{RETURN_ID}">
|
||||
<input type="hidden" name="dup_checked" value="true">
|
||||
<input type="hidden" name="action" value="">
|
||||
{INPUT_FIELDS}
|
||||
<p>
|
||||
<table class='{TABLECLASS}' cellpadding="0" cellspacing="0" width="100%" border="0" >
|
||||
<tr><td>
|
||||
<table cellpadding="0" cellspacing="0" width="100%" border="0">
|
||||
<tr>
|
||||
<td valign='top' align='left' border='0' class="{CLASS}">
|
||||
<h4 class="{CLASS}">{FORMHEADER}</h4>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign='top' align='left'>
|
||||
{FORMBODY}{FORMFOOTER}{POSTFORM}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<!-- END: main -->
|
||||
47
modules/Accounts/language/pl_pl.help.DetailView.html
Normal file
47
modules/Accounts/language/pl_pl.help.DetailView.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!--
|
||||
|
||||
/*********************************************************************************
|
||||
* The contents of this file are subject to the SugarCRM Enterprise Subscription
|
||||
* Agreement ("License") which can be viewed at
|
||||
* http://www.sugarcrm.com/crm/products/sugar-enterprise-eula.html
|
||||
* By installing or using this file, You have unconditionally agreed to the
|
||||
* terms and conditions of the License, and You may not use this file except in
|
||||
* compliance with the License. Under the terms of the license, You shall not,
|
||||
* among other things: 1) sublicense, resell, rent, lease, redistribute, assign
|
||||
* or otherwise transfer Your rights to the Software, and 2) use the Software
|
||||
* for timesharing or service bureau purposes such as hosting the Software for
|
||||
* commercial gain and/or for the benefit of a third party. Use of the Software
|
||||
* may be subject to applicable fees and any use of the Software without first
|
||||
* paying applicable fees is strictly prohibited. You do not have the right to
|
||||
* remove SugarCRM copyrights from the source code or user interface.
|
||||
*
|
||||
* All copies of the Covered Code must include on each user interface screen:
|
||||
* (i) the "Powered by SugarCRM" logo and
|
||||
* (ii) the SugarCRM copyright notice
|
||||
* in the same form as they appear in the distribution. See full license for
|
||||
* requirements.
|
||||
*
|
||||
* Your Warranty, Limitations of liability and Indemnity are expressly stated
|
||||
* in the License. Please refer to the License for the specific language
|
||||
* governing these rights and limitations under the License. Portions created
|
||||
* by SugarCRM are Copyright (C) 2004-2007 SugarCRM, Inc.; All Rights Reserved.
|
||||
********************************************************************************/
|
||||
|
||||
/*********************************************************************************
|
||||
|
||||
********************************************************************************/
|
||||
|
||||
-->
|
||||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
|
||||
<h1>Strona szczegółów konta klienta</h1>
|
||||
|
||||
<p>Zobacz szczegoły dotyczące konta klienta, takie jak adres, powiązane działania, historia i temtay. Możesz tworzyć i zarządzać dowolnymi informacjami, z właściwego dla nich panelu.</p>
|
||||
<ul>
|
||||
<li>Aby edytować informacje o kliencie, kliknij<span class="helpButton">Edytuj</span>, wprowadź niezbędne dane i kliknij <span class="helpButton">Zachowaj</span>. </li>
|
||||
<li>Aby skopiować dane do innego klienta, kliknij <span class="helpButton">Duplikuj</span>. Możesz także modyfikować rekordy i zapisywać je jako inne. System wyświetla nowe rekordy w liście klientów na stronie głównej modułu.</li>
|
||||
<li>To delete an account, click <span class="helpButton">Delete</span>.</li>
|
||||
<li>Aby wyszukać i połączyć zduplikowane rekordy klientów, kliknij <span class="helpButton">Znajdź duplikaty</span>.</li>
|
||||
<li>Aby śledzić zmiany dotyczące konta klienta w czasie, kliknij link<span class="helpButton">Zobacz dziennik zmian</span>.</li>
|
||||
82
modules/Accounts/language/pl_pl.help.EditView.html
Normal file
82
modules/Accounts/language/pl_pl.help.EditView.html
Normal file
@@ -0,0 +1,82 @@
|
||||
<!--
|
||||
|
||||
/*********************************************************************************
|
||||
* The contents of this file are subject to the SugarCRM Enterprise Subscription
|
||||
* Agreement ("License") which can be viewed at
|
||||
* http://www.sugarcrm.com/crm/products/sugar-enterprise-eula.html
|
||||
* By installing or using this file, You have unconditionally agreed to the
|
||||
* terms and conditions of the License, and You may not use this file except in
|
||||
* compliance with the License. Under the terms of the license, You shall not,
|
||||
* among other things: 1) sublicense, resell, rent, lease, redistribute, assign
|
||||
* or otherwise transfer Your rights to the Software, and 2) use the Software
|
||||
* for timesharing or service bureau purposes such as hosting the Software for
|
||||
* commercial gain and/or for the benefit of a third party. Use of the Software
|
||||
* may be subject to applicable fees and any use of the Software without first
|
||||
* paying applicable fees is strictly prohibited. You do not have the right to
|
||||
* remove SugarCRM copyrights from the source code or user interface.
|
||||
*
|
||||
* All copies of the Covered Code must include on each user interface screen:
|
||||
* (i) the "Powered by SugarCRM" logo and
|
||||
* (ii) the SugarCRM copyright notice
|
||||
* in the same form as they appear in the distribution. See full license for
|
||||
* requirements.
|
||||
*
|
||||
* Your Warranty, Limitations of liability and Indemnity are expressly stated
|
||||
* in the License. Please refer to the License for the specific language
|
||||
* governing these rights and limitations under the License. Portions created
|
||||
* by SugarCRM are Copyright (C) 2004-2007 SugarCRM, Inc.; All Rights Reserved.
|
||||
********************************************************************************/
|
||||
|
||||
/*********************************************************************************
|
||||
|
||||
********************************************************************************/
|
||||
|
||||
-->
|
||||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
|
||||
<h1>Klienci</h1>
|
||||
<p>Aby utworzyć nowe konto klienta, wprowadź następujące informacje:</p>
|
||||
|
||||
<span class="helpButton">Informacje o kliencie:</span>
|
||||
<ul>
|
||||
<li><span class="helpButton">Nazwa:</span>. Wprowadź nazwę dla nowego konta klienta.</li>
|
||||
<li><span class="helpButton">Telefon.</span> Wpisz numer telefonu organizacji.</li>
|
||||
<li><span class="helpButton">Fax</span>. Wpisz numer faxu organizacji.</li>
|
||||
<li><span class="helpButton">Inny telefon</span>. Wprowadź dodatkowy numer telefonu klienta, jeśli istnieje.</li>
|
||||
<li><span class="helpButton">Email</span>. Wprowadź adres poczty elektronicznej dla organizacji.</li>
|
||||
<li><span class="helpButton">Inny Email</span>. Wprowadź dodatkowy adres poczty elektronicznej dla organizacji.</li>
|
||||
<li><span class="helpButton">WWW</span>. Wpisz adres strony internetowej klienta.</li>
|
||||
<li><span class="helpButton">Symbol unikalny:</span>. Nadaj unikalny numer konta klientowi.</li>
|
||||
<li><span class="helpButton">Jest własnością (członkiem)</span>. Wprowadź nazwy kont organizacji powiązanej z tworzonym kontem.</li>
|
||||
<li><span class="helpButton">Pracownicy</span>. Podaj liczbę pracowników organizacji.</li>
|
||||
<li><span class="helpButton">Właściciel</span>. Określ informacje o właścicielu.</li>
|
||||
<li><span class="helpButton">Rating</span>. Określ rating organizacji w brażny.</li>
|
||||
<li><span class="helpButton">Branża</span>. Wybierz z listy rozwijalnej sektor przemysłu do którego zalicza się klient.</li>
|
||||
<li><span class="helpButton">Typ</span>. Określ kategorię klienta, taką jak Klient lub Partner.</li>
|
||||
<li><span class="helpButton">Rocznye przychody</span>. Określ roczne przychody dla organizacji.</li>
|
||||
|
||||
<li><span class="helpButton">Zespół</span>. Wprowadź nazwę zespołu, który ma prawo do wglądu do konta. Aby wybrać istniejący zespół, kliknij <span class="helpButton">wybierz</span>, I wybierz odpowiedni zespół z listy.</li>
|
||||
|
||||
<li><span class="helpButton">Przydzielone do </span>. Wprowadź nazwę użytkownika, który jest odpowiedzialny za kontakty z tym klientem. Aby wybrać istniejącego użytkownika, naciśnij przycisk <span class="helpButton">Wybierz</span>, i wybierz osobę z listy użytkowników. Domyślnie, rekord jest przydzielony do Ciebie.<li>
|
||||
</ul>
|
||||
|
||||
<p><span class="helpButton">Informacje adresowe:</span></p>
|
||||
<ul>
|
||||
<li><span class="helpButton">Adres faktur./span>. Adres główny siedziby klineta (adres do fakturowania).</li>
|
||||
<li><span class="helpButton">Miasto</span>. Nazwa miasta.</li>
|
||||
<li><span class="helpButton">Województwo</span>. Województwo, w którym jest miasto z siedzibą klienta.</li>
|
||||
<li><span class="helpButton">Kod pocztowy</span>. Kod pocztowy adresu klienta.</li>
|
||||
<li><span class="helpButton">Kraj</span>. Kraj, w którym mieści się siedziba klienta.</li>
|
||||
<li><span class="helpButton">Adres dostawy</span>. Adres dostawy do klienta. Użyj strzałek >> aby skopiować dane z pól adresu fakturowania.</li> Aby skopiować dane z jednej sekcji do drugiej, wystarczy wprowadzić dane tylko w jednej sekcji.
|
||||
</ul>
|
||||
<p><span class="helpButton">Adres(y) email:</span>
|
||||
<br>Wprowadź jedne lub więcej adresów poczty elektronicznej dla organizjacji i Twoich kontaktów i grup docelowych kampanii. Jeżeli któryś z nich jest niewłaściwy, zaznacz pole <span class="helpButton">Niepoprawny</span>, aby to uwidocznić. If you sent out campaign emails this contact and the individual chose to opt-out of receiving them, select <span class="helpButton">Opted Out</span>.
|
||||
|
||||
<p><span class="helpButton">Opis</span>.
|
||||
<br>Napisz krótką informację o kliencie.</p>
|
||||
|
||||
<p>Kliknij <span class="helpButton">Zapisz</span> aby zachować dane o nowym kliencie; kliknij <span class="helpButton">Skasuj</span> aby oupścić formularz, bez zapisywania danych.</p>
|
||||
|
||||
|
||||
68
modules/Accounts/language/pl_pl.help.index.html
Normal file
68
modules/Accounts/language/pl_pl.help.index.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<!--
|
||||
|
||||
/*********************************************************************************
|
||||
* The contents of this file are subject to the SugarCRM Enterprise Subscription
|
||||
* Agreement ("License") which can be viewed at
|
||||
* http://www.sugarcrm.com/crm/products/sugar-enterprise-eula.html
|
||||
* By installing or using this file, You have unconditionally agreed to the
|
||||
* terms and conditions of the License, and You may not use this file except in
|
||||
* compliance with the License. Under the terms of the license, You shall not,
|
||||
* among other things: 1) sublicense, resell, rent, lease, redistribute, assign
|
||||
* or otherwise transfer Your rights to the Software, and 2) use the Software
|
||||
* for timesharing or service bureau purposes such as hosting the Software for
|
||||
* commercial gain and/or for the benefit of a third party. Use of the Software
|
||||
* may be subject to applicable fees and any use of the Software without first
|
||||
* paying applicable fees is strictly prohibited. You do not have the right to
|
||||
* remove SugarCRM copyrights from the source code or user interface.
|
||||
*
|
||||
* All copies of the Covered Code must include on each user interface screen:
|
||||
* (i) the "Powered by SugarCRM" logo and
|
||||
* (ii) the SugarCRM copyright notice
|
||||
* in the same form as they appear in the distribution. See full license for
|
||||
* requirements.
|
||||
*
|
||||
* Your Warranty, Limitations of liability and Indemnity are expressly stated
|
||||
* in the License. Please refer to the License for the specific language
|
||||
* governing these rights and limitations under the License. Portions created
|
||||
* by SugarCRM are Copyright (C) 2004-2008 SugarCRM, Inc.; All Rights Reserved.
|
||||
********************************************************************************/
|
||||
|
||||
/*********************************************************************************
|
||||
|
||||
********************************************************************************/
|
||||
|
||||
-->
|
||||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
|
||||
|
||||
<h1>Klienci</h1>
|
||||
|
||||
<p>
|
||||
Modułu Klienci używa się podczas tworzenia i zarządzania kontami Klientów dla Twojej organizacji.</p>
|
||||
<p>Strona główna modułu wyświetla następujące informacje:</p>
|
||||
<ul>
|
||||
<li>Subpanel wyszukiwania, gdzie możesz wprowadzić nazwę klienta, aby wyszukać konkretne konto,</li>
|
||||
<ul>
|
||||
<li>Aby wyszukać tylko konta przydzielone do Ciebie, wybierz <span class="helpButton">Tylko moje elementy</span>.</li>
|
||||
<li>Aby przeprowadzić zaawansowane wyszukiwanie, użyj dodatkowych pól, klikając na zakładce <span class="helpButton">Wyszukiwanie zaawansowane</span>.</li>
|
||||
<li>Aby stworzyć i zapisać własne wyglądy wyszukiwania i wyniki, kliknij na link <span class="helpButton">Zapisz wyniki wyszukiwania i wygląd</span> na zakładce Wyszukiwanie zaawansowane.
|
||||
Aby obejrzeć kolumnę w wynikach wyszukiwania, przenieś ją do listy <b>Wyświetl kolumny</b>, używająć lewej strzałki. Możesz również zmienić sposób, wyświetlania się rezultatów od rosnącej na malejącą. Wprowadź nazwę dla wyników wyszukiwania w polu <b>Zapisz wynik wyszukiawania jako </b> and click <span class="helpButton">Zapisz</span>.</li>
|
||||
<p>
|
||||
</ul>
|
||||
<li>Lista aktualnych kont klientów, wraz z połączonymi informacjami, takimi jak nazwy i numery telefonow.</li>
|
||||
<li>Aby zobaczyć szczegóły konta klienta, kliknij na nazwę lub ikonę <span class="helpButton">Edytuj</span> znajdującą się na panelu, obok nazwy użytkownika.</li>
|
||||
<li>Aby edytować szczegóły konta klienta, kliknij na nazwę lub ikonę Edytuj, znajdującą się na panelu, obok nazwy użytkownika; lub kliknij <span class="helpButton">Edit</span> na stronie widoku szczegółów.</li>
|
||||
<li>Aby zmienić właściwości, lub usunąć więcej niż jedno konto, wybierz je z listy, a następnie użyj funkcji Masowa aktualizacja, znajdującej się na subpanelu poniżej.</li>
|
||||
<li>W celu wyeksportowania jednego lub więcej kont klienta, kliknij klawisz<span class="helpButton">Wyeksportuj</span>, umieszczony ponad nazwami klientów.
|
||||
<li>W celu połączenia duplikatów w jeden rekord, wybierz rekordy i kliknij przycisk <span class="helpButton">Połącz duplikaty</span>.
|
||||
<li>Sekcja skrótów umożliwia wywołanie następujących funkcji:
|
||||
<ul>
|
||||
<li><span class="helpShortcut">Utwórz klienta</span>. Kliknij, w celu utworzenia nowego konta klienta.</li>
|
||||
<li><span class="helpShortcut">Klienci</span>. Kliknij, aby powrócić z widoku szczegółowego konta klienta do strony głównej modułu.</li>
|
||||
<li><span class="helpShortcut">Raporty klientów</span>. Użyj tej opcji, aby zobaczyć istniejące raporty wykonane na bazie kont Twoich klientów, lub w celu utworzenia nowego raportu.</li>
|
||||
<li><span class="helpShortcut">Import</span>. Użyj tej opcji, aby zaimportować informacje o klientach z zewnętrznej aplikacji, lub pliku.
|
||||
</ul>
|
||||
<li>Formatka szybkiego tworzenia - Dodaj klienta jest wykorzystywana w celu szybkiego utworzenia konta klienta, zawierającego wyłącznie niezbędne (wymagane) informacjie. Po zapisaniu możesz później wprowadzić dodatkowe dane.</p>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user