1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378:
<?php
namespace FlexiPeeHP\Bricks;
class Upominac extends \FlexiPeeHP\FlexiBeeRW
{
public $customer = null;
public $invoicer = null;
public function __construct($init = null, $options = array())
{
parent::__construct($init, $options);
$this->customer = new Customer();
$this->invoicer = new \FlexiPeeHP\FakturaVydana();
}
public function getDebths($skipLabels = [])
{
$allDebts = [];
$this->addStatusMessage(_('Getting clients'), 'debug');
$clients = $this->customer->getCustomerList();
$debtCount = 0;
$this->addStatusMessage(sprintf(_('%s Clients Found'), count($clients)));
$this->addStatusMessage(_('Getting debts'), 'debug');
foreach ($clients as $cid => $clientIDs) {
$stitky = \FlexiPeeHP\Stitek::listToArray($clientIDs['stitky']);
if (count($skipLabels) && array_intersect($skipLabels, $stitky)) {
continue;
}
$debts = $this->customer->getCustomerDebts((int) $clientIDs['id']);
if (!empty($debts) && count($debts)) {
foreach ($debts as $did => $debtInfo) {
$allDebts[$cid][$did] = $debtInfo;
$debtCount++;
}
} else {
$this->everythingPaidOff($cid, $stitky);
}
}
$this->addStatusMessage(sprintf(_('%s Debts Found'), $debtCount));
return $allDebts;
}
public function everythingPaidOff($clientID, $stitky)
{
return $this->enableCustomer(implode(',', $stitky), $clientID);
}
function enableCustomer($stitky, $cid)
{
$result = true;
if (strstr($stitky, 'UPOMINKA') || strstr($stitky, 'NEPLATIC')) {
$newStitky = array_combine(explode(',',
str_replace(' ', '', $stitky)), explode(',', $stitky));
unset($newStitky['UPOMINKA1']);
unset($newStitky['UPOMINKA2']);
unset($newStitky['UPOMINKA3']);
unset($newStitky['NEPLATIC']);
if ($this->customer->adresar->insertToFlexiBee(['id' => $cid, 'stitky@removeAll' => 'true',
'stitky' => $newStitky])) {
$this->addStatusMessage(sprintf(_('Clear %s Remind labels'),
$cid), 'success');
} else {
$this->addStatusMessage(sprintf(_('Clear %s Remind labels'),
$cid), 'error');
$result = false;
}
}
return $result;
}
public function processAllDebts($skipLabels = [])
{
$allDebths = $this->getDebths($skipLabels);
$this->addStatusMessage(sprintf(_('%d clients to remind process'),
count($allDebths)));
$counter = 0;
foreach ($allDebths as $cid => $debts) {
$counter++;
$this->customer->adresar->loadFromFlexiBee($cid);
$this->addStatusMessage(sprintf(_('(%d / %d) #%s code: %s %s '),
$counter, count($allDebths),
$this->customer->adresar->getDataValue('id'),
$this->customer->adresar->getDataValue('kod'),
$this->customer->adresar->getDataValue('nazev')), 'debug');
$this->processUserDebts($cid, $debts);
}
return $counter;
}
public function processUserDebts($cid, $clientDebts)
{
$zewlScore = 0;
$stitky = $this->customer->adresar->getDataValue('stitky');
$ddifs = [];
$invoicesToSave = [];
$invoicesToLock = [];
foreach ($clientDebts as $did => $debt) {
switch ($debt['zamekK']) {
case 'zamek.zamceno':
$this->invoicer->dataReset();
$this->invoicer->setMyKey($did);
$unlock = $this->invoicer->performAction('unlock', 'int');
if ($unlock['success'] == 'false') {
$this->addStatusMessage(_('Invoice locked: skipping process'),
'warning');
break;
}
$invoicesToLock[$debt['id']] = ['id' => $did];
case 'zamek.otevreno':
default:
$invoicesToSave[$debt['id']] = ['id' => $did];
$ddiff = self::poSplatnosti($debt['datSplat']);
$ddifs[$debt['id']] = $ddiff;
if (($ddiff <= 7) && ($ddiff >= 1)) {
$zewlScore = self::maxScore($zewlScore, 1);
} else {
if (($ddiff > 7 ) && ($ddiff <= 14)) {
$zewlScore = self::maxScore($zewlScore, 2);
} else {
if ($ddiff > 14) {
$zewlScore = self::maxScore($zewlScore, 3);
}
}
}
break;
}
}
if ($zewlScore == 3 && !strstr($stitky, 'UPOMINKA2')) {
$zewlScore = 2;
}
if (!strstr($stitky, 'UPOMINKA1')) {
$zewlScore = 1;
}
if ($zewlScore > 0 && (array_sum($ddifs) > 0) && count($invoicesToSave)) {
if (!strstr($stitky, 'UPOMINKA'.$zewlScore)) {
if (!strstr($stitky, 'NEUPOMINKOVAT')) {
if ($this->posliUpominku($zewlScore, $cid, $clientDebts)) {
foreach ($invoicesToSave as $invoiceID => $invoiceData) {
switch ($zewlScore) {
case 1:
$colname = 'datUp1';
break;
case 2:
$colname = 'datUp2';
break;
case 3:
$colname = 'datSmir';
break;
}
$invoiceData[$colname] = self::timestampToFlexiDate(time());
if ($this->invoicer->insertToFlexiBee($invoiceData)) {
$this->addStatusMessage(sprintf(_('Invoice %s remind %s date saved'),
$invoiceID, $colname), 'info');
} else {
$this->addStatusMessage(sprintf(_('Invoice %s remind %s date save failed'),
$invoiceID, $colname), 'error');
}
}
}
} else {
$this->addStatusMessage(_('Remind send disbled'));
}
} else {
$this->addStatusMessage(sprintf(_('Remind %d already sent'),
$zewlScore));
}
} else {
$this->addStatusMessage(_('No debts to remind'), 'debug');
}
if (count($invoicesToLock)) {
foreach ($invoicesToLock as $invoiceID => $invoiceData) {
$this->invoicer->dataReset();
$this->invoicer->setMyKey($did);
$lock = $this->invoicer->performAction('lock', 'int');
if ($lock['success'] == 'true') {
$this->addStatusMessage(sprintf(_('Invoice %s locked again'),
$invoiceID), 'info');
} else {
$this->addStatusMessage(sprintf(_('Invoice %s locking failed'),
$invoiceID), 'error');
}
}
}
return $zewlScore;
}
public function getCustomerScore($addressID)
{
$score = 0;
$debts = $this->customer->getCustomerDebts($addressID);
$stitkyRaw = $this->customer->adresar->getColumnsFromFlexiBee(['stitky'],
['id' => $addressID]);
$stitky = $stitkyRaw[0]['stitky'];
if (!empty($debts)) {
foreach ($debts as $did => $debt) {
$ddiff = self::poSplatnosti($debt['datSplat']);
if (($ddiff <= 7) && ($ddiff >= 1)) {
$score = self::maxScore($score, 1);
} else {
if (($ddiff > 7 ) && ($ddiff <= 14)) {
$score = self::maxScore($score, 2);
} else {
if ($ddiff > 14) {
$score = self::maxScore($score, 3);
}
}
}
}
}
if ($score == 3 && !strstr($stitky, 'UPOMINKA2')) {
$score = 2;
}
if (!strstr($stitky, 'UPOMINKA1') && !empty($debts)) {
$score = 1;
}
return $score;
}
public function posliUpominku($score, $cid, $clientDebts)
{
$result = false;
$upominka = new Upominka();
switch ($score) {
case 1:
$upominka->loadTemplate('prvniUpominka');
break;
case 2:
$upominka->loadTemplate('druhaUpominka');
break;
case 3:
$upominka->loadTemplate('pokusOSmir');
break;
}
if ($upominka->compile($cid, $clientDebts)) {
$result = $upominka->send();
} else {
$this->addStatusMessage(_('Remind was not sent'), 'warning');
}
$this->customer->adresar->insertToFlexiBee(['id' => $cid, 'stitky' => 'UPOMINKA'.$score]);
$this->customer->adresar->loadFromFlexiBee($cid);
$this->addStatusMessage(sprintf(_('Set Label %s '), 'UPOMINKA'.$score));
return $result;
}
static private function maxScore($score, $level)
{
if ($level > $score) {
$score = $level;
}
return $score;
}
static public function poSplatnosti($dueDate)
{
$dateDiff = date_diff(\FlexiPeeHP\FlexiBeeRO::flexiDateToDateTime($dueDate),
new \DateTime());
if ($dateDiff->invert == 1) {
$ddif = $dateDiff->days * -1;
} else {
$ddif = $dateDiff->days;
}
return $ddif;
}
}