* Finish task#58598.
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
#projectTableList > tr.drop-not-allowed {opacity: 0.1 !important;}
|
||||
#projectList .c-actions {overflow: visible;}
|
||||
#projectTableList > tr:last-child .c-actions .dropdown-menu {top: auto; bottom: 100%; margin-bottom: -5px;}
|
||||
#projectList .c-budget {width: 100px; padding-right: 20px;}
|
||||
#projectTableList .c-budget {width: 100px; padding-right: 20px;}
|
||||
|
||||
.c-date {width: 80px;}
|
||||
.c-budget {width: 80px;}
|
||||
.label-warning, .label-info {width: 60px !important;}
|
||||
.project-type-label.label-outline {width: 50px; min-width: 50px;}
|
||||
.c-date {width: 120px;}
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
<td class='text-left'><?php echo $project->begin;?></td>
|
||||
<td class='text-left'><?php echo $project->end == LONG_TIME ? $this->lang->project->longTime : $project->end;?></td>
|
||||
<?php $projectBudget = in_array($this->app->getClientLang(), array('zh-cn','zh-tw')) ? round((float)$project->budget / 10000, 2) . $this->lang->project->tenThousand : round((float)$project->budget, 2);?>
|
||||
<td class='text-right'><?php echo $project->budget != 0 ? zget($lang->project->currencySymbol, $project->budgetUnit) . ' ' . $projectBudget : $lang->project->future;?></td>
|
||||
<td class='text-right c-budget'><?php echo $project->budget != 0 ? zget($lang->project->currencySymbol, $project->budgetUnit) . ' ' . $projectBudget : $lang->project->future;?></td>
|
||||
<td>
|
||||
<?php $userID = isset($PMList[$project->PM]) ? $PMList[$project->PM]->id : ''?>
|
||||
<?php if(!empty($project->PM)) echo html::a($this->createLink('user', 'profile', "userID=$userID", '', true), zget($users, $project->PM), '', "data-toggle='modal' data-type='iframe' data-width='600'");?>
|
||||
|
||||
@@ -87,6 +87,8 @@ $lang->webhook->paramsList['comment'] = 'Kommentar';
|
||||
$lang->webhook->paramsList['text'] = 'Aktionsbeschreibung';
|
||||
|
||||
$lang->webhook->confirmDelete = 'Möchten Sie diesen Hook löschen?';
|
||||
$lang->webhook->friendlyTips = 'Friendly reminder: Click on a department to expand the sub-departments under the department.';
|
||||
$lang->webhook->loadPrompt = 'There is a lot of data and the loading is slow, please wait.';
|
||||
|
||||
$lang->webhook->trimWords = '';
|
||||
|
||||
@@ -104,6 +106,7 @@ $lang->webhook->note->typeList['dingding'] = 'Fügen Sie einen eigenen bot in d
|
||||
$lang->webhook->note->typeList['weixin'] = 'Add a customized bot in WeChat and get the webhook url.';
|
||||
$lang->webhook->note->typeList['default'] = 'Webhookadresse on anderen erhalten.';
|
||||
|
||||
$lang->webhook->error = new stdclass();
|
||||
$lang->webhook->error->curl = 'Laden Sie php-curl in der php.ini.';
|
||||
$lang->webhook->error->noDept = 'There is no department selected. Please choose department first.';
|
||||
$lang->webhook->error = new stdclass();
|
||||
$lang->webhook->error->curl = 'Laden Sie php-curl in der php.ini.';
|
||||
$lang->webhook->error->noDept = 'There is no department selected. Please choose department first.';
|
||||
$lang->webhook->error->requestError = 'Request error!';
|
||||
|
||||
@@ -87,6 +87,8 @@ $lang->webhook->paramsList['comment'] = 'Commentaire';
|
||||
$lang->webhook->paramsList['text'] = "Description de l'Action";
|
||||
|
||||
$lang->webhook->confirmDelete = 'Voulez-vous vraiment supprimer ce flux ?';
|
||||
$lang->webhook->friendlyTips = 'Friendly reminder: Click on a department to expand the sub-departments under the department.';
|
||||
$lang->webhook->loadPrompt = 'There is a lot of data and the loading is slow, please wait.';
|
||||
|
||||
$lang->webhook->trimWords = '';
|
||||
|
||||
@@ -104,6 +106,7 @@ $lang->webhook->note->typeList['dingding'] = "Ajout d'un bot personnalis
|
||||
$lang->webhook->note->typeList['weixin'] = "Ajoutez un bot personnalisé dans WeChat et obtenez l'url du webhook.";
|
||||
$lang->webhook->note->typeList['default'] = "Obtenir les url d'autres flux webhook.";
|
||||
|
||||
$lang->webhook->error = new stdclass();
|
||||
$lang->webhook->error->curl = 'Chargez php-curl dans php.ini.';
|
||||
$lang->webhook->error->noDept = 'There is no department selected. Please choose department first.';
|
||||
$lang->webhook->error = new stdclass();
|
||||
$lang->webhook->error->curl = 'Chargez php-curl dans php.ini.';
|
||||
$lang->webhook->error->noDept = 'There is no department selected. Please choose department first.';
|
||||
$lang->webhook->error->requestError = 'Request error!';
|
||||
|
||||
@@ -51,7 +51,7 @@ $(function()
|
||||
{
|
||||
enable: true,
|
||||
chkStyle: "checkbox",
|
||||
chkboxType: {"Y" : "s", "N" : "s"}
|
||||
chkboxType: {"Y" : "ps", "N" : "ps"}
|
||||
},
|
||||
data:
|
||||
{
|
||||
@@ -176,7 +176,7 @@ $(function()
|
||||
{
|
||||
enable: true,
|
||||
chkStyle: "checkbox",
|
||||
chkboxType: {"Y":"s", "N":"s"}
|
||||
chkboxType: {"Y" : "ps", "N" : "ps"}
|
||||
},
|
||||
data:
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user