]> git.mxchange.org Git - mailer.git/commitdiff
We require FAILED, sorry folks
authorRoland Häder <roland@mxchange.org>
Fri, 15 Jul 2011 20:33:00 +0000 (20:33 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 15 Jul 2011 20:33:00 +0000 (20:33 +0000)
inc/extensions/ext-funcoins.php
inc/extensions/ext-primera.php
inc/extensions/ext-wernis.php
inc/language/wernis_de.php
inc/libs/wernis_functions.php

index 13f20a0dae9865d974641b57007c583fab36cd06..638a5b161e35b7652ffeda67d084cbbfefe1da6b 100644 (file)
@@ -63,7 +63,7 @@ switch (getExtensionMode()) {
 `funcoins_account` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'FunCoins account',
 `funcoins_amount` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000 COMMENT 'Transfered amount',
 `funcoins_timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Booking timestamp',
-`funcoins_type` ENUM('WITHDRAW','PAYOUT') NOT NULL DEFAULT 'PAYOUT' COMMENT 'Transaction type',
+`funcoins_type` ENUM('WITHDRAW','PAYOUT','FAILED') NOT NULL DEFAULT 'FAILED' COMMENT 'Transaction type',
 `fucoins_tan` VARCHAR(255) NULL DEFAULT NULL COMMENT 'TAN from API',
 `funcoins_api_response` TINYTEXT COMMENT 'Clear text API response (only for debugging)',
 `funcoins_api_status` INT(4) NULL DEFAULT NULL COMMENT 'Status code from API',
index 9d7373da88558fcacc7211f59d90c4a830ed2104..6b0f8b1aa24f925a489b7005b06d3d62c8791425 100644 (file)
@@ -61,7 +61,7 @@ switch (getExtensionMode()) {
 `primera_account` VARCHAR(255) NOT NULL DEFAULT '',
 `primera_amount` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000,
 `primera_timestamp` VARCHAR(10) NOT NULL DEFAULT 0,
-`primera_type` ENUM('IN','OUT','FAILED') NOT NULL DEFAULT 'FAILED',
+`primera_type` ENUM('WITHDRAW','PAYOUT','FAILED') NOT NULL DEFAULT 'FAILED',
 `primera_api_message` TINYTEXT,
 `primera_api_status` VARCHAR(255) NULL DEFAULT NULL,
 PRIMARY KEY (`id`),
index 47e8c7d84baac9e3bf60039c23aa641323164248..c0cde98b9a4751ba1cf03842f7895b7dd342a0c8 100644 (file)
@@ -41,10 +41,10 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Version of this extension
-setThisExtensionVersion('0.0.4');
+setThisExtensionVersion('0.0.5');
 
 // Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4'));
+setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5'));
 
 switch (getExtensionMode()) {
        case 'register': // Do stuff when installation is running
@@ -56,7 +56,7 @@ switch (getExtensionMode()) {
 `wernis_account` VARCHAR(255) NOT NULL DEFAULT '',
 `wernis_amount` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000,
 `wernis_timestamp` VARCHAR(10) NOT NULL DEFAULT 0,
-`wernis_type` ENUM('IN','OUT') NOT NULL DEFAULT 'OUT',
+`wernis_type` ENUM('WITHDRAW','PAYOUT','FAILED') NOT NULL DEFAULT 'FAILED',
 `wernis_api_message` TINYTEXT,
 `wernis_api_status` VARCHAR(255) NULL DEFAULT NULL,
 PRIMARY KEY (`id`),
@@ -144,6 +144,13 @@ INDEX (`userid`)",
                                // Update notes
                                setExtensionUpdateNotes("&Uuml;berweisungen vom Portal werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
                                break;
+
+                       case '0.0.5': // SQL queries for v0.0.5
+                               addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_wernis` CHANGE `wernis_type` `wernis_type` ENUM('WITHDRAW','PAYOUT','FAILED') NOT NULL DEFAULT 'FAILED'");
+
+                               // Update notes
+                               setExtensionUpdateNotes("IN/OUT ersetzt mit WITHDRAW/PAYOUT.");
+                               break;
                } // END - switch
                break;
 
index a0dc069860cb1616d4aa7dcb21a845087f79bcf3..f48aa00677584cf62bccd86e2c71067a7d808145 100644 (file)
@@ -45,6 +45,7 @@ addMessages(array(
        'WERNIS_STATUS_UNKNWOWN' => "Wernis-Typ <span class=\"data\">%s</span> unbekannt.",
        'WERNIS_STATUS_WITHDRAW' => "Einzahlung von WDS66",
        'WERNIS_STATUS_PAYOUT' => "Auszahlung an WDS66",
+       'WERNIS_STATUS_FAILED' => "Fehlgeschlagen",
        'WERNIS_TIMESTAMP' => "Buchungszeitmarke",
        'WERNIS_ACCOUNT' => "WDS66-Hauptaccount",
        'WERNIS_TOTAL_WERNIS' => "Gesamt &uuml;berwiesen",
index 24969366a6f04a13378acec742f6d70ba70daafe..b28bc9ee2d8efdb18c77445b69e2e2b3dae5830a 100644 (file)
@@ -264,7 +264,7 @@ function WERNIS_EXECUTE_WITHDRAW ($wdsId, $userMd5, $amount) {
                $result = true;
 
                // Log the transfer
-               WERNIS_LOG_TRANSFER($wdsId, $amount, 'IN');
+               WERNIS_LOG_TRANSFER($wdsId, $amount, 'WITHDRAW');
        } else {
                // Status failure text
                WERNIS_STATUS_MESSAGE($return['message'], $return['status']);
@@ -301,7 +301,7 @@ function WERNIS_EXECUTE_PAYOUT ($wdsId, $amount) {
                $result = true;
 
                // Log the transfer
-               WERNIS_LOG_TRANSFER($wdsId, $amount, 'OUT');
+               WERNIS_LOG_TRANSFER($wdsId, $amount, 'PAYOUT');
        } else {
                // Status failure text
                WERNIS_STATUS_MESSAGE($return['message'], $return['status']);
@@ -316,19 +316,17 @@ function WERNIS_EXECUTE_PAYOUT ($wdsId, $amount) {
 
 // Translate the status IN/OUT
 function translateWernisTransferStatus ($status) {
-       // Default status
+       // Default status is unknown
        $return = '{%message,WERNIS_STATUS_UNKNWOWN=' . $status . '%}';
 
-       // Which status?
-       switch ($status) {
-               case 'IN': // Withdraw
-                       $return = '{--WERNIS_STATUS_WITHDRAW--}';
-                       break;
+       // Construct message id
+       $messageId = 'WERNIS_STATUS_' . $status;
 
-               case 'OUT': // Payout
-                       $return = '{--WERNIS_STATUS_PAYOUT--}';
-                       break;
-       } // END - switch
+       // Is it there?
+       if (isMessageIdValid($messageId)) {
+               // Then use it as message string
+               $return = '{--' . $messageId . '--}';
+       } // END - if
 
        // Return the status
        return $return;