Plugin Directory

Changeset 2407737


Ignore:
Timestamp:
10/27/2020 04:55:32 PM (5 years ago)
Author:
officegestpt
Message:

Fixed Bug For photos imported

Location:
officegest/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • officegest/trunk/officegest.php

    r2395291 r2407737  
    55 *   Plugin URI:   https://www.officegest.com/woocommerce
    66 *   Description:  A forma mais fácil de ligar a sua loja online com a sua faturação.
    7  *   Version:      1.0.28
     7 *   Version:      1.0.29
    88 *   Author:       OfficeGest
    99 *   Author URI:   https://www.officegest.com
     
    142142) ENGINE=InnoDB DEFAULT CHARSET=latin1;');
    143143    $wpdb->query('CREATE TABLE IF NOT EXISTS officegest_eco_cats( id INT NOT NULL PRIMARY KEY, description varchar(200),woo_id int(11)) ENGINE=MyISAM  DEFAULT CHARSET=utf8');
     144    $wpdb->query("CREATE TABLE IF NOT EXISTS `officegest_eco_photos` (
     145  `component_id` int(11) NOT NULL,
     146  `attach_num` int(11) NOT NULL,
     147  `main` int(11) DEFAULT NULL,
     148  `photo` varchar(255) DEFAULT NULL,
     149  `woo_attach_id` bigint(20) NOT NULL DEFAULT '0',
     150  PRIMARY KEY (`component_id`,`attach_num`),
     151  KEY `photo` (`photo`)
     152) ENGINE=MyISAM DEFAULT CHARSET=utf8;");
     153
    144154    $wpdb->query('CREATE TABLE IF NOT EXISTS officegest_eco_comps( id INT NOT NULL PRIMARY KEY, category_id int(11),description varchar(200),value float,article_id VARCHAR(200),active TINYINT(1),woo_id bigint) ENGINE=MyISAM  DEFAULT CHARSET=utf8;');
    145155    $wpdb->query('CREATE TABLE IF NOT EXISTS officegest_eco_parts (
  • officegest/trunk/readme.txt

    r2395291 r2407737  
    55Tested up to: 5.5
    66Requires PHP: 5.6
    7 Stable tag: 1.0.28
     7Stable tag: 1.0.29
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3434== Changelog ==
    3535
     36= 1.0.29 =
     37Fixed Bug For photos imported
     38
    3639= 1.0.28 =
    3740Fixed Bug for nif validation for portugal
     41Added Limit for Syncronizing Parts
    3842
    3943= 1.0.27 =
Note: See TracChangeset for help on using the changeset viewer.