PP
This commit is contained in:
@@ -64,7 +64,7 @@ else {
|
||||
SELECT name, code, unit_id, product_category_id
|
||||
FROM ecmproducts WHERE id='".$row['product_id']."'"));
|
||||
|
||||
$row['name'] = $res['name'];
|
||||
$row['name'] = str_replace('"', "'", $res['name']);
|
||||
$row['product_code'] = $res['code'];
|
||||
$row['ecmproductcategory_id'] = $res['product_category_id'];
|
||||
$row['unit_id'] = $res['unit_id'];
|
||||
@@ -87,7 +87,7 @@ else {
|
||||
SELECT name, code, unit_id, product_category_id
|
||||
FROM ecmproducts WHERE id='".$row['product_id']."'"));
|
||||
|
||||
$row['name'] = $res['name'];
|
||||
$row['name'] = str_replace('"', "", $res['name']);
|
||||
$row['product_code'] = $res['code'];
|
||||
$row['ecmproductcategory_id'] = $res['product_category_id'];
|
||||
$row['unit_id'] = $res['unit_id'];
|
||||
|
||||
@@ -98,9 +98,9 @@ if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
|
||||
global $mod_strings, $current_user;
|
||||
|
||||
if(ACLController::checkAccess('EcmInsideOrders', "edit", true)) $module_menu [] = Array("index.php?module=".'EcmInsideOrders'."&action=EditView&return_module=".'EcmInsideOrders'."&return_action=DetailView", translate('LNK_NEW_'.'ECMNEWINSIDEORDERS', 'EcmInsideOrders'),"CreateEcmInsideOrders", 'EcmInsideOrders');
|
||||
$module_menu [] = Array("index.php?module=".'EcmInsideOrders'."&action=EditView&return_module=".'EcmInsideOrders'."&return_action=DetailView", translate('LNK_NEW_'.'ECMNEWINSIDEORDERS', 'EcmInsideOrders'),"CreateEcmInsideOrders", 'EcmInsideOrders');
|
||||
|
||||
if(ACLController::checkAccess('EcmInsideOrders', "list", true)) $module_menu [] = Array("index.php?module=EcmInsideOrders&action=index&return_module=EcmInsideOrders&return_action=DetailView", translate('LNK_ECMNEWINSIDEORDERS_LIST','EcmInsideOrders'),"EcmInsideOrders", 'EcmInsideOrders');
|
||||
$module_menu [] = Array("index.php?module=EcmInsideOrders&action=index&return_module=EcmInsideOrders&return_action=DetailView", translate('LNK_ECMNEWINSIDEORDERS_LIST','EcmInsideOrders'),"EcmInsideOrders", 'EcmInsideOrders');
|
||||
|
||||
?>
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ $content = '
|
||||
<table style="width: 100%; font-size: 8pt;">
|
||||
<tr>
|
||||
<td style="width: ' . $w . '%">
|
||||
<b><h1>Zamówienie wewnętrzne</h1></b>
|
||||
<b><h1>Przyjęcie produkcyjne</h1></b>
|
||||
</td>
|
||||
<td style="width: ' . $w2 . '%">
|
||||
Numer:
|
||||
|
||||
@@ -153,11 +153,11 @@ $mod_strings = array (
|
||||
|
||||
'LBL_SEARCH_FORM_TITLE' => 'Wyszukiwanie',
|
||||
|
||||
'LBL_LIST_FORM_TITLE' => 'Lista Ofert',
|
||||
'LBL_LIST_FORM_TITLE' => 'Lista ',
|
||||
|
||||
'LBL_NEW_FORM_TITLE' => 'Nowa Oferta',
|
||||
'LBL_NEW_FORM_TITLE' => 'Nowa dokument PP',
|
||||
|
||||
'LBL_DETAILS' => 'Szczególy Oferty',
|
||||
'LBL_DETAILS' => 'Szczególy',
|
||||
|
||||
'LBL_ITEMS' => 'Zalaczone Produkty:',
|
||||
|
||||
@@ -182,8 +182,8 @@ $mod_strings = array (
|
||||
'LBL_ID' => 'Id',
|
||||
|
||||
'LBL_NAME' => 'Nazwa',
|
||||
'LNK_ECMNEWINSIDEORDERS_LIST'=> 'Lista zamówień towaru',
|
||||
'LNK_NEW_ECMNEWINSIDEORDERS'=>'Utwórz zamówienie towaru',
|
||||
'LNK_ECMNEWINSIDEORDERS_LIST'=> 'Lista dokumentów PP',
|
||||
'LNK_NEW_ECMNEWINSIDEORDERS'=>'Utwórz dokument PP',
|
||||
|
||||
'LBL_DESCRIPTION' => 'Opis',
|
||||
|
||||
|
||||
Reference in New Issue
Block a user