Reworked Contract View to Vue.js

This commit is contained in:
Luca Haid
2024-11-13 13:51:49 +00:00
parent 899e5c88ff
commit 5690f08892
11 changed files with 835 additions and 764 deletions

View File

@@ -1,10 +1,8 @@
<?php
class ContractController extends mfBaseController
{
class ContractController extends mfBaseController {
protected function init()
{
protected function init() {
$this->needlogin = true;
$me = new User();
$me->loadMe();
@@ -17,9 +15,8 @@ class ContractController extends mfBaseController
}
protected function indexAction()
{
if(!$this->me->is(["Admin"])) {
protected function indexAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
@@ -59,8 +56,7 @@ class ContractController extends mfBaseController
$this->layout()->set("pagination", $pagination);
}
private function getPreparedFilter($filter)
{
private function getPreparedFilter($filter) {
$new_filter = [];
if (array_key_exists("show_canceled", $filter)) {
@@ -71,8 +67,8 @@ class ContractController extends mfBaseController
$new_filter['add-where'] = " AND (cancel_date IS NULL OR cancel_date > UNIX_TIMESTAMP())";
}
if(array_key_exists("cancel_date", $filter)) {
if($filter["cancel_date"]) {
if (array_key_exists("cancel_date", $filter)) {
if ($filter["cancel_date"]) {
$new_filter["cancel_date"] = true;
}
}
@@ -95,13 +91,49 @@ class ContractController extends mfBaseController
return $new_filter;
}
protected function viewAction()
{
if(!$this->me->is(["Admin"])) {
protected function viewAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$this->layout()->setTemplate("Contract/View");
$id = $this->request->contract_id;
if (!$id) {
$id = $this->request->id;
}
if (!is_numeric($id) || !$id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
$this->redirect("Contract");
}
$contract = new Contract($id);
if (!$contract->id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
$this->redirect("Contract");
}
$getUrlFunc = function($controller, $action, $params = []) {
return $this::getUrl($controller, $action, $params);
};
Helper::renderVue($this, "ContractView", "Contract", ["CONTRACT_DETAILS" => $contract->getContractDetails($getUrlFunc),
"CONTRACT_ID" => $contract->id,
"CONTRACT_ACTIONS" => $contract->getContractActions($getUrlFunc),
"CONTRACT_JOURNAL" => $contract->getContractJournal($getUrlFunc),
"CONTRACT_LINK_TABLE_URL" => self::getUrl("Contract", "contractLinkTableHTML", ["contract_id" => $contract->id]),
"CONTRACT_NEW_JOURNAL_URL" => self::getUrl("Contractjournal", "save"),
"BACK_URL" => isset($_SERVER['HTTP_REFERER']) && str_contains($_SERVER['HTTP_REFERER'], 'Address/View') ? $_SERVER['HTTP_REFERER'] : self::getUrl('Contract', 'Index'),
"EDIT_URL" => self::getUrl('Contract', 'Edit', ['contract_id' => $contract->id, 'f' => 'view']),
"HEADER" => str_contains(strtolower($contract->sla->name), "residential") ? "Privatprodukt" : "Businessprodukt",
"SUB_HEADER" => $contract->product_name . "[" . $contract->id . "]"
]);
}
protected function contractLinkTableHTMLAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$id = $this->request->contract_id;
if (!$id) {
@@ -119,18 +151,11 @@ class ContractController extends mfBaseController
}
$this->layout()->set("contract", $contract);
if ($this->request->filter) {
$this->layout()->set("filter", $this->request->filter);
}
if ($this->request->s) {
$this->layout()->set("filter", $this->request->s);
}
$this->layout()->setTemplate("Contract/LinkTable");
}
protected function cancelAction() {
if(!$this->me->is(["Admin"])) {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$this->layout()->setTemplate("Contract/CancelForm");
@@ -138,7 +163,7 @@ class ContractController extends mfBaseController
$id = $this->request->contract_id;
if (!$id) $id = $this->request->id;
if(!$id) {
if (!$id) {
$id = $this->request->id;
}
if (!is_numeric($id) || !$id) {
@@ -152,7 +177,7 @@ class ContractController extends mfBaseController
$this->redirect("Contract");
}
if(!$contract->billing_period) {
if (!$contract->billing_period) {
$this->layout()->setFlash("Kündigung nicht möglich, Produkt ist Einmalprodukt!", "error");
$this->redirect("Contract", "view", ["contract_id" => $contract->id]);
}
@@ -171,7 +196,7 @@ class ContractController extends mfBaseController
}
protected function saveCancel() {
if(!$this->me->is(["Admin"])) {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$r = $this->request;
@@ -190,23 +215,23 @@ class ContractController extends mfBaseController
try {
$cancel_date = DateTime::createFromFormat("d.m.Y", trim($r->cancel_date), new DateTimeZone("Europe/Vienna"));
$cancel_date->setTime(23,59,59);
} catch(Exception $e) {
$cancel_date->setTime(23, 59, 59);
} catch (Exception $e) {
$this->layout()->setFlash("Ungültiges Datumsformat");
$this->redirect("Contract", "cancel", ["contract_id" => $contract->id]);
}
$contract->cancel_date = $cancel_date->getTimestamp();
$contract->edit_by = $this->me->id;
if(!$contract->save()) {
if (!$contract->save()) {
$this->layout()->setFlash("Fehler beim Speichern", "error");
$this->redirect("Contract", "cancel", ["contract_id" => $contract->id]);
}
$linked_contracts = [];
if(is_array($r->links)) {
foreach($r->links as $link_id => $action) {
if($action == "cancel") {
if (is_array($r->links)) {
foreach ($r->links as $link_id => $action) {
if ($action == "cancel") {
$link_contract = new Contract($link_id);
if (!$link_contract->id) {
@@ -216,11 +241,11 @@ class ContractController extends mfBaseController
$link_contract->cancel_date = $cancel_date->getTimestamp();
$link_contract->edit_by = $this->me->id;
if(!$link_contract->save()) {
if (!$link_contract->save()) {
$this->layout()->setFlash("Fehler beim Speichern von verlinktem Vertrag", "warning");
}
if($link_contract->owner_id != $contract->owner_id) continue;
if ($link_contract->owner_id != $contract->owner_id) continue;
$linked_contracts[] = $link_contract;
}
}
@@ -234,20 +259,20 @@ class ContractController extends mfBaseController
}
protected function sendCancelNotification() {
if(!$this->me->is(["Admin"])) {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$contract_id = $this->request->contract_id;
$contract = new Contract($contract_id);
$linked_contracts = [];
foreach($contract->links as $link) {
if($link->origin_contract_id == $contract_id) {
foreach ($contract->links as $link) {
if ($link->origin_contract_id == $contract_id) {
$link_contract = $link->contract;
} else {
$link_contract = $link->origin;
}
if($link_contract->owner_id != $contract->owner_id) continue;
if ($link_contract->owner_id != $contract->owner_id) continue;
$linked_contracts[] = $link_contract;
}
@@ -259,12 +284,11 @@ class ContractController extends mfBaseController
}
protected function productchangeAction()
{
protected function productchangeAction() {
$this->layout()->setTemplate("Contract/ProductchangeForm");
$f = $this->request->f;
if(!$f) {
if (!$f) {
$f = "c"; // from Contract
}
$this->layout()->set("f", $f);
@@ -275,7 +299,7 @@ class ContractController extends mfBaseController
}
if (!is_numeric($id) || !$id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "addUpgrade");
} else {
$this->redirect("Contract");
@@ -286,28 +310,28 @@ class ContractController extends mfBaseController
$contract = new Contract($id);
if (!$contract->id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "addUpgrade");
} else {
$this->redirect("Contract");
}
}
if($this->me->isAdmin()) {
if ($this->me->isAdmin()) {
$this->layout()->set("terminations", TerminationModel::getAll());
} else {
// check permissions
// check if correct network
// check permissions
// check if correct network
$my_network_ids = [];
foreach($this->me->my_networks as $network) {
foreach ($this->me->my_networks as $network) {
$my_network_ids[] = $network->id;
}
if($contract->termination_id) {
if(!in_array($contract->termination->network_id, $my_network_ids)) {
if($f == "o") {
// from Order, redirect back to Order
if ($contract->termination_id) {
if (!in_array($contract->termination->network_id, $my_network_ids)) {
if ($f == "o") {
// from Order, redirect back to Order
$this->layout()->setFlash("Keine Berechtigung", "error");
$this->redirect("Order", "addUpgrade", ["owner_id" => $contract->owner_id]);
}
@@ -331,24 +355,23 @@ class ContractController extends mfBaseController
}
}
protected function saveProductchangeAction()
{
if(!$this->me->is(["Admin", "salespartner", "netowner"])) {
protected function saveProductchangeAction() {
if (!$this->me->is(["Admin", "salespartner", "netowner"])) {
$this->redirect("Dashboard");
}
$r = $this->request;
//var_dump($r->links);exit;
//var_dump($r->links);exit;
$f = $r->f;
if(!$f) {
if (!$f) {
$f = "c"; // from Contract
}
$id = $r->contract_id;
if (!is_numeric($id) || !$id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "addUpgrade");
} else {
$this->redirect("Contract");
@@ -358,7 +381,7 @@ class ContractController extends mfBaseController
$contract = new Contract($id);
if (!$contract->id) {
$this->layout()->setFlash("Vertrag nicht gefunden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "addUpgrade");
} else {
$this->redirect("Contract");
@@ -382,12 +405,12 @@ class ContractController extends mfBaseController
$contract_data['note'] = trim($r->note);
/*
* termination check
*/
* termination check
*/
$product = new Product($r->product_id);
if (!$product->id) {
$this->layout()->setFlash("Produkt nicht gefunden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "productchange", ["contract_id" => $id]);
} else {
$this->redirect("Contract", "productchange", ["contract_id" => $id]);
@@ -399,35 +422,35 @@ class ContractController extends mfBaseController
$contract_data['product_external_id'] = $product->external_id;
$contract_data['sla_id'] = $product->sla_id;
if($r->finish_date) {
if ($r->finish_date) {
try {
$finish_date = DateTime::createFromFormat("d.m.Y", $r->finish_date, new DateTimeZone("Europe/Vienna"));
} catch (Exception $e) {
$this->layout()->setFlash("Ungültiges Kündigungsdateum", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "productchange", ["contract_id" => $id]);
} else {
$this->redirect("Contract", "productchange", ["contract_id" => $id]);
}
}
$finish_date->setTime(0,0,0);
$finish_date->setTime(0, 0, 0);
$contract_data["finish_date"] = $finish_date->getTimestamp();
$contract_cancel_date = clone($finish_date);
$contract_cancel_date->modify("-1 day");
$contract_cancel_date->setTime(23,59,59);
$contract_cancel_date->setTime(23, 59, 59);
}
$require_term = false;
if (array_key_exists(TT_ATTRIB_TERMINATION_REQUIRED_NAME, $product->attributes) && $product->attributes[TT_ATTRIB_TERMINATION_REQUIRED_NAME]->value == 1) {
//var_dump($prod->attributes);
//var_dump($prod->attributes);
$require_term = true;
$termination = new Termination($contract_data['termination_id']);
if (!$contract_data['termination_id'] || !$termination->id) {
$this->layout()->setFlash("Produkt erfordert Anschluss.", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "productchange", ["contract_id" => $id]);
} else {
$this->redirect("Contract", "productchange", ["contract_id" => $id]);
@@ -437,12 +460,12 @@ class ContractController extends mfBaseController
$contract_data['termination_id'] = null;
}
//var_dump($r->links);
// lookup credit contract and if it's missing in $r->links
if(!$this->me->is("Admin")) {
//var_dump($r->links);
// lookup credit contract and if it's missing in $r->links
if (!$this->me->is("Admin")) {
$credit_link = ContractLinkModel::includesContractId($contract->id, ["type" => "credit"]);
if($credit_link) {
if(is_array($r->links) && !array_key_exists($credit_link->id, $r->links)) {
if ($credit_link) {
if (is_array($r->links) && !array_key_exists($credit_link->id, $r->links)) {
$r->links[$credit_link->id] = [];
}
$r->links[$credit_link->id]["action"] = "keep";
@@ -450,7 +473,7 @@ class ContractController extends mfBaseController
}
}
//var_dump($r->links);exit;
//var_dump($r->links);exit;
$new_contract->update($contract_data);
@@ -458,42 +481,39 @@ class ContractController extends mfBaseController
if (!$new_contract_id) {
$this->layout()->setFlash("Neuer Contract konnte nicht gespeichert werden", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "productchange", ["contract_id" => $id]);
} else {
$this->redirect("Contract", "productchange", ["contract_id" => $id]);
}
}
// TODO: Contractconfig übernehmen
// TODO: Contractconfig übernehmen
if($contract_cancel_date) {
if ($contract_cancel_date) {
$contract->cancel_date = $contract_cancel_date->getTimestamp();
$contract->edit_by = $this->me->id;
$contract->save();
}
$journal = ContractjournalModel::create([
'contract_id' => $new_contract->id,
'type' => "created_from",
'value' => "productchange",
'text' => "Produkt-/Standortwechsel von Contract ID ".$contract->id
]);
$journal = ContractjournalModel::create(['contract_id' => $new_contract->id,
'type' => "created_from",
'value' => "productchange",
'text' => "Produkt-/Standortwechsel von Contract ID " . $contract->id]);
$journal->save();
if (is_array($r->links) && count($r->links)) {
foreach ($r->links as $link_id => $link_data) {
$action = $link_data["action"];
$cancel_date = false;
if($link_data["cancel_date"]) {
if ($link_data["cancel_date"]) {
try {
$cancel_date = DateTime::createFromFormat("d.m.Y", $link_data["cancel_date"], new DateTimeZone("Europe/Vienna"));
} catch (Exception $e) {
$this->layout()->setFlash("Ungültiges Kündigungsdatum", "error");
if($f == "o") {
if ($f == "o") {
$this->redirect("Order", "productchange", ["contract_id" => $id]);
} else {
$this->redirect("Contract", "productchange", ["contract_id" => $id]);
@@ -505,7 +525,7 @@ class ContractController extends mfBaseController
$old_link = new ContractLink($link_id);
if (!$old_link->id) continue;
// check if link contains this contract
// check if link contains this contract
if ($old_link->contract_id == $contract->id) {
$origin_id = $old_link->origin_contract_id;
$link_contract_id = $old_link->contract_id;
@@ -522,25 +542,23 @@ class ContractController extends mfBaseController
continue;
}
if($action != "cancel" && $old_link->type != "credit") {
$new_link = ContractLinkModel::create([
'contract_id' => $new_link_contract_id,
'origin_contract_id' => $new_link_origin_id,
'type' => $old_link->type,
]);
if ($action != "cancel" && $old_link->type != "credit") {
$new_link = ContractLinkModel::create(['contract_id' => $new_link_contract_id,
'origin_contract_id' => $new_link_origin_id,
'type' => $old_link->type,]);
if (!$new_link->save()) {
$this->layout()->setFlash("Konnte neuen Link nicht speichern", "warn");
}
}
if ($action == "cancel") {
if($cancel_date && $contract_cancel_date) {
// insert cancel_date in old contract
if ($cancel_date && $contract_cancel_date) {
// insert cancel_date in old contract
$lc = new Contract($origin_id);
$lc->cancel_date = $cancel_date->getTimestamp();
$lc->save();
} else {
// leave cancellation for later (when finishing upgrade)
// leave cancellation for later (when finishing upgrade)
$old_link->change_action = "cancel";
if (!$old_link->save()) {
$this->layout()->setFlash("Konnte alten Link nicht speichern", "warn");
@@ -550,42 +568,36 @@ class ContractController extends mfBaseController
}
if ($old_link->type == "credit" && $action == "keep") {
// XXX - if we have finish date then recreate credit contract right now
if($contract_cancel_date) {
// XXX - if we have finish date then recreate credit contract right now
if ($contract_cancel_date) {
$new_credit = ContractModel::createCreditForContract($new_contract);
$new_credit->save();
// create journal for credit
$journal = ContractjournalModel::create([
'contract_id' => $new_credit->id,
'type' => "created_from",
'value' => "productchange",
'text' => "Produkt-/Standortwechsel von Contract ID ".$new_link_origin_id
]);
// create journal for credit
$journal = ContractjournalModel::create(['contract_id' => $new_credit->id,
'type' => "created_from",
'value' => "productchange",
'text' => "Produkt-/Standortwechsel von Contract ID " . $new_link_origin_id]);
$journal->save();
$this->log->debug(print_r($new_credit, true));
// set cancel date for old credit
// set cancel date for old credit
$old_credit = new Contract($origin_id);
$old_credit->cancel_date = $contract_cancel_date->getTimestamp();
$old_credit->save();
// create link to new credit contract
$link = ContractLinkModel::create([
"contract_id" => $new_credit->id,
"origin_contract_id" => $new_contract->id,
"type" => "credit"
]);
// create link to new credit contract
$link = ContractLinkModel::create(["contract_id" => $new_credit->id,
"origin_contract_id" => $new_contract->id,
"type" => "credit"]);
$link->save();
// create upgrade link from old to new credit contract
$link = ContractLinkModel::create([
"contract_id" => $new_credit->id,
"origin_contract_id" => $origin_id,
"type" => "upgrade"
]);
// create upgrade link from old to new credit contract
$link = ContractLinkModel::create(["contract_id" => $new_credit->id,
"origin_contract_id" => $origin_id,
"type" => "upgrade"]);
$link->save();
} else {
@@ -595,27 +607,25 @@ class ContractController extends mfBaseController
}
//var_dump($new_link);exit;
//var_dump($new_link);exit;
}
}
/*
* Upgrade Link erstellen
*/
* Upgrade Link erstellen
*/
$change_type = "upgrade";
/*if($contract->product_id != $new_contract->product_id) {
$change_type = "upgrade";
$change_type = "upgrade";
} elseif($contract->matchcode != $new_contract->matchcode) {
$change_type = "relocation";
$change_type = "relocation";
} else {
$change_type = "productchange";
$change_type = "productchange";
}*/
$link = ContractLinkModel::create([
'contract_id' => $new_contract_id,
'origin_contract_id' => $id,
'type' => $change_type
]);
$link = ContractLinkModel::create(['contract_id' => $new_contract_id,
'origin_contract_id' => $id,
'type' => $change_type]);
$link_id = $link->save();
if (!$link_id) {
@@ -625,19 +635,17 @@ class ContractController extends mfBaseController
$new_contract->sendProductchangeNotification($contract);
$this->layout()->setFlash("Produktwechsel erfolgreich erstellt", "success");
if($f == "o") {
$this->redirect("Order","Upgrades");
if ($f == "o") {
$this->redirect("Order", "Upgrades");
} else {
$this->redirect("Contract", "view", ["contract_id" => $new_contract_id]);
}
}
protected function finishContractAction()
{
if(!$this->me->is(["Admin"])) {
protected function finishContractAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$r = $this->request;
@@ -655,27 +663,25 @@ class ContractController extends mfBaseController
}
$now = new DateTime("now");
$now->setTime(0,0,0);
$now->setTime(0, 0, 0);
$contract->finish_date = $now->getTimestamp();
$contract->finish_date_by = $this->me->id;
try {
$saved = $contract->save();
} catch(Exception $e) {
} catch (Exception $e) {
$saved = false;
}
if(!$saved) {
if (!$saved) {
$this->layout()->setFlash("Contract konnte nicht gespeichert werden", "error");
$this->redirect("Contract", "view", ['contract_id' => $id]);
}
// create Journal
$journal = ContractjournalModel::create([
'contract_id' => $contract->id,
'type' => "contract_finished"
]);
// create Journal
$journal = ContractjournalModel::create(['contract_id' => $contract->id,
'type' => "contract_finished"]);
$journal_id = $journal->save();
$this->layout()->setFlash("Contract erfolgreich fertiggestellt", "success");
@@ -683,32 +689,8 @@ class ContractController extends mfBaseController
}
protected function addAction()
{
if(!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$this->layout()->setTemplate("Contract/Form");
$this->layout()->set("terminations", TerminationModel::getAll());
if ($this->request->origin_contract_id) {
$origin = new Contract($this->request->origin_contract_id);
if ($origin->id) {
$contract = new Contract();
$contract->owner_id = $origin->owner_id;
$contract->billingaddress_id = $origin->billingaddress_id;
$contract->matchcode = $origin->matchcode;
//var_dump($contract);exit;
$this->layout()->set("contract", $contract);
$this->layout()->set("origin_contract_id", $origin->id);
}
}
}
protected function editAction()
{
if(!$this->me->is(["Admin"])) {
protected function editAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$id = $this->request->contract_id;
@@ -727,7 +709,7 @@ class ContractController extends mfBaseController
}
$this->layout()->set("contract", $contract);
//var_dump($contract->owner);exit;
//var_dump($contract->owner);exit;
if ($this->request->f == "view") $this->layout()->set("f", "view");
if ($this->request->f != "view") $this->layout()->set("f", "index");
@@ -742,17 +724,37 @@ class ContractController extends mfBaseController
return $this->addAction();
}
protected function saveAction()
{
if(!$this->me->is(["Admin"])) {
protected function addAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$this->layout()->setTemplate("Contract/Form");
$this->layout()->set("terminations", TerminationModel::getAll());
if ($this->request->origin_contract_id) {
$origin = new Contract($this->request->origin_contract_id);
if ($origin->id) {
$contract = new Contract();
$contract->owner_id = $origin->owner_id;
$contract->billingaddress_id = $origin->billingaddress_id;
$contract->matchcode = $origin->matchcode;
//var_dump($contract);exit;
$this->layout()->set("contract", $contract);
$this->layout()->set("origin_contract_id", $origin->id);
}
}
}
protected function saveAction() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
$r = $this->request;
//var_dump($r);
//var_dump($r);
/*
* add or edit
*/
* add or edit
*/
$id = $r->id;
if (is_numeric($id) && $id > 0) {
$mode = "edit";
@@ -766,32 +768,32 @@ class ContractController extends mfBaseController
$mode = "add";
}
//var_dump($r->get());exit;
//var_dump($r->get());exit;
$contract_data = [];
$contract_data["owner_id"] = (int)$r->owner_id;
$contract_data["billingaddress_id"] = ($r->billingaddress_id) ? (int)$r->billingaddress_id : $r->owner_id;
$contract_data["product_id"] = (int)$r->product_id;
$contract_data["owner_id"] = (int) $r->owner_id;
$contract_data["billingaddress_id"] = ($r->billingaddress_id) ? (int) $r->billingaddress_id : $r->owner_id;
$contract_data["product_id"] = (int) $r->product_id;
$contract_data["matchcode"] = $r->matchcode;
$contract_data["product_name"] = $r->product_name;
$contract_data["product_info"] = $r->product_info;
$contract_data['amount'] = ($r->amount) ? (float)$r->amount : 1;
$contract_data['amount'] = ($r->amount) ? (float) $r->amount : 1;
$contract_data['vatgroup_id'] = $r->vatgroup_id;
$contract_data['sla_id'] = $r->sla_id;
$contract_data['price'] = (float)Layout::commaToDot($r->price);
$contract_data['price_setup'] = (float)Layout::commaToDot($r->price_setup);
$contract_data['price_nne'] = (float)Layout::commaToDot($r->price_nne);
$contract_data['price_nbe'] = (float)Layout::commaToDot($r->price_nbe);
$contract_data['billing_period'] = (int)$r->billing_period;
$contract_data['billing_delay'] = (int)$r->billing_delay;
$contract_data['price'] = (float) Layout::commaToDot($r->price);
$contract_data['price_setup'] = (float) Layout::commaToDot($r->price_setup);
$contract_data['price_nne'] = (float) Layout::commaToDot($r->price_nne);
$contract_data['price_nbe'] = (float) Layout::commaToDot($r->price_nbe);
$contract_data['billing_period'] = (int) $r->billing_period;
$contract_data['billing_delay'] = (int) $r->billing_delay;
$contract_data['note'] = $r->note;
if($r->termination_id) {
if ($r->termination_id) {
$contract_data["termination_id"] = $r->termination_id;
}
if($r->order_date) {
if ($r->order_date) {
$order_date = new DateTime("@" . $this->dateToTimestamp($r->order_date));
$order_date->setTimezone(new DateTimeZone("Europe/Vienna"));
$order_date->setTime(0, 0, 0);
@@ -800,40 +802,40 @@ class ContractController extends mfBaseController
$contract_data['order_date'] = null;
}
if($r->finish_date) {
if ($r->finish_date) {
$finish_date = new DateTime("@" . $this->dateToTimestamp($r->finish_date));
$finish_date->setTimezone(new DateTimeZone("Europe/Vienna"));
$finish_date->setTime(0, 0, 0);
$contract_data['finish_date'] = $finish_date->getTimestamp();
if($mode == "add") {
if ($mode == "add") {
$contract_data['finish_date_by'] = $this->me->id;
} else {
if($contract->finish_date) {
$contract_finish_date = new DateTime("@".$contract->finish_date);
if ($contract->finish_date) {
$contract_finish_date = new DateTime("@" . $contract->finish_date);
$contract_finish_date->setTimezone(new DateTimeZone("Europe/Vienna"));
if($contract_finish_date->format("Y-m-d") != $finish_date->format("Y-m-d")) {
if ($contract_finish_date->format("Y-m-d") != $finish_date->format("Y-m-d")) {
$contract_data['finish_date_by'] = $this->me->id;
}
} else {
$contract_data['finish_date_by'] = $this->me->id;
}
}
} else {
} else {
$contract_data['finish_date'] = null;
}
if($r->cancel_date) {
if ($r->cancel_date) {
$cancel_date = new DateTime("@" . $this->dateToTimestamp($r->cancel_date));
$cancel_date->setTimezone(new DateTimeZone("Europe/Vienna"));
$cancel_date->setTime(0, 0, 0);
$contract_data['cancel_date'] = $cancel_date->getTimestamp();
if($mode == "add") {
if ($mode == "add") {
$contract_data['cancel_date_by'] = $this->me->id;
} else {
if($contract->cancel_date) {
$contract_cancel_date = new DateTime("@".$contract->cancel_date);
if ($contract->cancel_date) {
$contract_cancel_date = new DateTime("@" . $contract->cancel_date);
$contract_cancel_date->setTimezone(new DateTimeZone("Europe/Vienna"));
if($contract_cancel_date->format("Y-m-d") != $cancel_date->format("Y-m-d")) {
if ($contract_cancel_date->format("Y-m-d") != $cancel_date->format("Y-m-d")) {
$contract_data['cancel_date_by'] = $this->me->id;
}
} else {
@@ -845,8 +847,7 @@ class ContractController extends mfBaseController
}
//var_dump($contract_data);exit;
//var_dump($contract_data);exit;
if ($mode == "add") {
$contract = ContractModel::create($contract_data);
@@ -865,7 +866,7 @@ class ContractController extends mfBaseController
$this->layout()->setFlash("Bitte Produkt auswählen.", "error");
return $this->addAction();
}
if (!in_array($contract_data['billing_period'], [0,1,12])) {
if (!in_array($contract_data['billing_period'], [0, 1, 12])) {
$this->layout()->setFlash("Bitte Rechnungsperiode auswählen.", "error");
return $this->addAction();
}
@@ -879,7 +880,7 @@ class ContractController extends mfBaseController
$contract->product_name = $product->name;
}
//var_dump($contract);exit;
//var_dump($contract);exit;
$contract_id = $contract->save();
@@ -889,43 +890,35 @@ class ContractController extends mfBaseController
return $this->addAction();
}
// create journal
// create journal
if ($mode == "add") {
$journal = ContractjournalModel::create([
'contract_id' => $contract_id,
'type' => "created_from",
'value' => "manual"
]);
$journal = ContractjournalModel::create(['contract_id' => $contract_id,
'type' => "created_from",
'value' => "manual"]);
$journal->save();
}
$this->layout()->setFlash("Vertrag erfolgreich gespeichert.", "success");
/*
* Create link to origin contract if set
*/
* Create link to origin contract if set
*/
if ($mode == "add" && $r->origin_contract_id) {
$origin = new Contract($r->origin_contract_id);
if ($origin->id) {
$link = ContractLinkModel::create([
'contract_id' => $contract_id,
'origin_contract_id' => $origin->id,
'type' => 'link'
]);
$link = ContractLinkModel::create(['contract_id' => $contract_id,
'origin_contract_id' => $origin->id,
'type' => 'link']);
$link_id = $link->save();
if ($link_id) {
$journal = ContractjournalModel::create([
'contract_id' => $contract_id,
'type' => "link",
'value' => $origin->id
]);
$journal = ContractjournalModel::create(['contract_id' => $contract_id,
'type' => "link",
'value' => $origin->id]);
$journal->save();
$ojournal = ContractjournalModel::create([
'contract_id' => $origin->id,
'type' => "link",
'value' => $contract_id
]);
$ojournal = ContractjournalModel::create(['contract_id' => $origin->id,
'type' => "link",
'value' => $contract_id]);
$ojournal->save();
}
}
@@ -956,8 +949,7 @@ class ContractController extends mfBaseController
}
protected function apiAction()
{
protected function apiAction() {
if (!$this->me->is(["Admin", "salespartner", "netowner"])) {
$this->redirect("Dashboard");
}
@@ -990,8 +982,7 @@ class ContractController extends mfBaseController
$this->returnJson($data);
}
private function getContractApi()
{
private function getContractApi() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
@@ -1018,32 +1009,32 @@ class ContractController extends mfBaseController
private function getContractsApi() {
$owner_id = $this->request->owner_id;
if(!$owner_id) return false;
if (!$owner_id) return false;
$return = [];
$contracts = ContractModel::search(["owner_id" => $owner_id]);
if(!$contracts) {
if (!$contracts) {
header("Content-type: application/json");
echo json_encode([]);
exit;
}
$is_valid_owner = false;
if(!$this->me->is("Admin")) {
foreach($contracts as $contract) {
foreach(ContractLinkModel::includesContractId($contract->id) as $link) {
if($link->type != "credit") continue;
if (!$this->me->is("Admin")) {
foreach ($contracts as $contract) {
foreach (ContractLinkModel::includesContractId($contract->id) as $link) {
if ($link->type != "credit") continue;
$link_contract = $link->contract;
if($link->contract_id == $contract->id) $link_contract = $link->origin;
if($link_contract->owner_id == $this->me->address_id) {
if ($link->contract_id == $contract->id) $link_contract = $link->origin;
if ($link_contract->owner_id == $this->me->address_id) {
$is_valid_owner = true;
break;
}
}
}
if(!$is_valid_owner) {
if (!$is_valid_owner) {
header("Content-type: application/json");
echo json_encode([]);
exit;
@@ -1051,8 +1042,7 @@ class ContractController extends mfBaseController
}
foreach($contracts as $contract) {
foreach ($contracts as $contract) {
$c = get_object_vars($contract->data);
$c["id"] = $contract->id;
$return[] = $c;
@@ -1063,8 +1053,7 @@ class ContractController extends mfBaseController
exit;
}
private function findContractApi()
{
private function findContractApi() {
if (!$this->me->is(["Admin"])) {
$this->redirect("Dashboard");
}
@@ -1104,14 +1093,16 @@ class ContractController extends mfBaseController
$results = [];
// return bootstrap-autocomplete format
// return bootstrap-autocomplete format
foreach ($contracts as $contract) {
//$result = ['value' => $contract->id, 'text' => str_replace("'", "\\'", str_replace(["\n", "\r"], " ",$contract->name))];
$result = ['value' => $contract->id, 'text' => $contract->id . ": " . $contract->product_name . " [" . $contract->matchcode . "] (" . $contract->owner->getCompanyOrName() . ", " . $contract->owner->street . ", " . $contract->owner->zip . " " . $contract->owner->city . ")"];
//$result = ['value' => $contract->id, 'text' => str_replace("'", "\\'", str_replace(["\n", "\r"], " ",$contract->name))];
$result = ['value' => $contract->id,
'text' => $contract->id . ": " . $contract->product_name . " [" . $contract->matchcode . "] (" . $contract->owner->getCompanyOrName() . ", " . $contract->owner->street . ", " . $contract->owner->zip . " " . $contract->owner->city . ")"];
$results[] = $result;
if (count($results) > 15) {
$results[] = ['value' => 0, 'text' => "&nbsp;&nbsp;--> &nbsp;&nbsp;Mehr Suchergebnisse vorhanden. Bitte Suchbegriff genauer definieren &nbsp;&nbsp;<--"];
$results[] = ['value' => 0,
'text' => "&nbsp;&nbsp;--> &nbsp;&nbsp;Mehr Suchergebnisse vorhanden. Bitte Suchbegriff genauer definieren &nbsp;&nbsp;<--"];
break;
}
}