Daniel 2 лет назад
Родитель
Сommit
cdc5763d35
10 измененных файлов: 20 добавлений и 10 удалений
  1. +2
    -1
      src/client/app/js/app/state/StatsExport.js
  2. +2
    -1
      src/client/manager/js/app/views/appointments/AppointmentCalendar.js
  3. +2
    -1
      src/client/manager/js/app/views/appointments/AppointmentList.js
  4. +2
    -1
      src/client/manager/js/app/views/contract/ContractCharging.js
  5. +2
    -1
      src/client/manager/js/app/views/contract/ContractCreate.js
  6. +2
    -1
      src/client/manager/js/app/views/corona/CoronaSpecial.js
  7. +2
    -1
      src/client/manager/js/app/views/kkspecial/EmployeeList.js
  8. +3
    -1
      src/client/manager/js/app/views/members/MemberList.js
  9. +2
    -1
      src/client/manager/js/app/views/settings/SettingsAccess.js
  10. +1
    -1
      src/server/server/config/boot_local.php

+ 2
- 1
src/client/app/js/app/state/StatsExport.js Просмотреть файл

@@ -104,7 +104,8 @@ app.state.StatsExport = function()
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res2 )
{


+ 2
- 1
src/client/manager/js/app/views/appointments/AppointmentCalendar.js Просмотреть файл

@@ -23,7 +23,8 @@ const AppointmentCalendar = {
'Team',
'getDetails',
{
teamId : p.groupId
teamId : p.groupId,
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/appointments/AppointmentList.js Просмотреть файл

@@ -25,7 +25,8 @@ const AppointmentList = {
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/contract/ContractCharging.js Просмотреть файл

@@ -40,7 +40,8 @@ const ContractCharging = {
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/contract/ContractCreate.js Просмотреть файл

@@ -25,7 +25,8 @@ const ContractCreate = {
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/corona/CoronaSpecial.js Просмотреть файл

@@ -27,7 +27,8 @@ const CoronaSpecial = {
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/kkspecial/EmployeeList.js Просмотреть файл

@@ -44,7 +44,8 @@ const EmployeeList = {
'Team',
'getDetails',
{
teamId : p.get( 'groupId' )
teamId : p.get( 'groupId' ),
includeMembers: true
},
function( res )
{


+ 3
- 1
src/client/manager/js/app/views/members/MemberList.js Просмотреть файл

@@ -22,7 +22,9 @@ const MemberList = {
'Team',
'getDetails',
{
teamId : p.get( 'groupId' )
teamId : p.get( 'groupId' ),
includeMembers: true
},
function( res )
{


+ 2
- 1
src/client/manager/js/app/views/settings/SettingsAccess.js Просмотреть файл

@@ -26,7 +26,8 @@ const SettingsAccess = {
'Team',
'getDetails',
{
teamId : groupId
teamId : groupId,
includeMembers: true
},
function( res )
{


+ 1
- 1
src/server/server/config/boot_local.php Просмотреть файл

@@ -39,4 +39,4 @@ Francis_Utils_Config::set( 'slack.logWebhook', "https://hooks.slack.com/services
Francis_Utils_Config::set( 'analytics.trackingId', 'UA-139730172-1' );
// Manager console
Francis_Utils_Config::set( 'url.manager', 'https://manager.probuddy.de/' );
Francis_Utils_Config::set( 'url.manager', 'http://localhost:8097/client/manager' );

Загрузка…
Отмена
Сохранить