Plugin Directory

Changeset 2848357


Ignore:
Timestamp:
01/14/2023 10:46:26 AM (3 years ago)
Author:
primersoftware
Message:

Update

Location:
primer-mydata
Files:
2325 added
5 edited

Legend:

Unmodified
Added
Removed
  • primer-mydata/trunk/README.txt

    r2848352 r2848357  
    55Tested up to: 6.1.1
    66Requires PHP: 7.4
    7 Stable tag: 2.0.8
     7Stable tag: 2.0.9
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    132132* Now you can issue receipts/invcoices even if the products are deleted completely
    133133* From now on new receipts/invoices can also be filter by document type (Receipt, Invoice, Credit Receipt, Credit Invoice)
     134= 2.0.9 - 2022-11-23 =
     135* Minor Bug Fixes for php 8.0 version
     136* Now you can search with order Id or document Number in Receipts Page
     137* Now you can issue receipts/invcoices even if the products are deleted completely
     138* From now on new receipts/invoices can also be filter by document type (Receipt, Invoice, Credit Receipt, Credit Invoice)
  • primer-mydata/trunk/admin/includes/primer-admin-receipt-table.php

    r2848352 r2848357  
    295295                                $type_of_receipts = array(
    296296                                    '' => 'All',
    297                                     'receipt' => 'Receipt',
    298                                     'invoice' => 'Invoice',
     297                                    'greek_receipt' => 'Receipt',
     298                                    'english_receipt' => 'Receipt outside Greece',
     299                                    'greek_invoice' => 'Invoice',
     300                                    'english_invoice' => 'Invoice outside Greece',
    299301                                    'credit-receipt' => 'Credit Receipt',
    300302                                    'credit-invoice' => 'Credit Invoice'
  • primer-mydata/trunk/admin/includes/primer-admin-table.php

    r2848352 r2848357  
    32533253                    $('.submit_convert_orders').attr('disabled', true);*/
    32543254                }
    3255                  else if(stop_conversion === 'stop'){
     3255               /*  else if(stop_conversion === 'stop'){
    32563256                     valid = false;
    32573257                    alert('Cound not connect to AADE for more than 48 hours.Please convert the failed orders first to proceed with further conversion.');
    32583258                    $('.submit_convert_orders').attr('disabled', true);
    3259                 }
    3260 
    3261                 else {
     3259                } */ else {
    32623260                    valid = true;
    32633261                }
  • primer-mydata/trunk/includes/class-primer-cron.php

    r2848352 r2848357  
    22032203                $check_timeout = get_post_meta($id_of_order, 'failed_48',true);
    22042204                $check_transmission_failure_48 = get_post_meta($id_of_order, 'transmission_failure_check',true);
    2205                 if(($mydata_options['timeout_check_48'] == 1 && $check_timeout != 'yes') || ($mydata_options['timeout_check_48'] == 1 && $check_transmission_failure_48 != 1 && $check_timeout != 'yes')){
    2206                     $receipt_log_value .= __('Could not connect to aade for 48 hours. Please check your settings or contact primer software.', 'primer');
    2207                     $response_data .= '<div class="notice notice-error"><p>'.__('Could not connect to aade for 48 hours. Please check your settings or contact primer software.', 'primer').'</p></div>';
    2208                     $receipt_log_value_array[] = __('Could not connect to aade for 48 hours. Please check your settings or contact primer software.','primer');
    2209                     break;
    2210                 }
    2211 
    22122205                $issued_order = get_post_meta($id_of_order, 'receipt_status', true);
    22132206                $transmission_failure = get_post_meta($id_of_order, 'transmission_failure_check', true);
     
    35723565                    $check_timeout = get_post_meta($id_of_order, 'failed_48', true);
    35733566                    $check_transmission_failure_48 = get_post_meta($id_of_order, 'transmission_failure_check', true);
    3574                     if (($mydata_options['timeout_check_48'] == 1 && $check_timeout != 'yes') || ($mydata_options['timeout_check_48'] == 1 && $check_transmission_failure_48 != 1)) {
     3567                  /*  if (($mydata_options['timeout_check_48'] == 1 && $check_timeout != 'yes') || ($mydata_options['timeout_check_48'] == 1 && $check_transmission_failure_48 != 1)) {
    35753568                        $receipt_log_value .= __('Could not connect to aade for 48 hours. Please check your settings or contact primer software.', 'primer');
    35763569                        $response_data .= '<div class="notice notice-error"><p>' . __('Could not connect to aade for 48 hours. Please check your settings or contact primer software.', 'primer') . '</p></div>';
    35773570                        $receipt_log_value_array[] = __('Could not connect to aade for 48 hours. Please check your settings or contact primer software.', 'primer');
    35783571                        break;
    3579                     }
     3572                    } */
    35803573
    35813574                    $order_ids[] = $id_of_order;
  • primer-mydata/trunk/primer.php

    r2848352 r2848357  
    1818 * Plugin URI:        primer.gr/plugin/
    1919 * Description:      Issue receipts and invoices with woocommerce.
    20  * Version:           2.0.8
     20 * Version:           2.0.9
    2121 * Author:            Primer Software
    2222 * Author URI:        primer.gr
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'PRIMER_VERSION', '2.0.8' );
     38define( 'PRIMER_VERSION', '2.0.9' );
    3939define( 'PRIMER_NAME', 'Primer MyData' );
    4040
Note: See TracChangeset for help on using the changeset viewer.