mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-02-14 14:48:40 +00:00
Unit test fixes and invoice impl. started
This commit is contained in:
parent
8b7775adca
commit
28144992d0
|
|
@ -47,7 +47,7 @@ class Installer extends InstallerAbstract
|
||||||
$dbPool->get('core')->con->prepare(
|
$dbPool->get('core')->con->prepare(
|
||||||
'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'projectmanagement_project` (
|
'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'projectmanagement_project` (
|
||||||
`projectmanagement_project_id` int(11) NOT NULL AUTO_INCREMENT,
|
`projectmanagement_project_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`projectmanagement_project_name` varchar(254) NOT NULL,
|
`projectmanagement_project_name` varchar(255) NOT NULL,
|
||||||
`projectmanagement_project_description` text NOT NULL,
|
`projectmanagement_project_description` text NOT NULL,
|
||||||
`projectmanagement_project_calendar` int(11) NOT NULL,
|
`projectmanagement_project_calendar` int(11) NOT NULL,
|
||||||
`projectmanagement_project_costs` int(11) NOT NULL,
|
`projectmanagement_project_costs` int(11) NOT NULL,
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $count = 0; foreach($list as $key => $value) : $count++;
|
<?php $count = 0; foreach($list as $key => $value) : $count++;
|
||||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/projectmanagement/profile?{?}&id=' . $value->getId());?>
|
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/projectmanagement/profile?{?}&id=' . $value->getId());?>
|
||||||
|
<tr>
|
||||||
<td><a href="<?= $url; ?>"><?= $value->getName(); ?></a>
|
<td><a href="<?= $url; ?>"><?= $value->getName(); ?></a>
|
||||||
<td><a href="<?= $url; ?>"><?= $value->getStart()->format('Y-m-d'); ?></a>
|
<td><a href="<?= $url; ?>"><?= $value->getStart()->format('Y-m-d'); ?></a>
|
||||||
<td><a href="<?= $url; ?>"><?= $value->getEnd()->format('Y-m-d'); ?></a>
|
<td><a href="<?= $url; ?>"><?= $value->getEnd()->format('Y-m-d'); ?></a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user