Changeset 3096890
- Timestamp:
- 06/03/2024 05:06:11 PM (21 months ago)
- Location:
- perseo-software/trunk
- Files:
-
- 3 edited
-
PluginPerseo.php (modified) (1 diff)
-
README.md (modified) (2 diffs)
-
includes/PluginPerseo_cron.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perseo-software/trunk/PluginPerseo.php
r3096844 r3096890 4 4 Plugin URI: https://perseo.ec/ 5 5 Description: Este Plugins integra el Sistema Contable Perseo Web y PC con la tienda Woocommerce 6 Version: 2 6.06 Version: 28.0 7 7 Author: Perseo Soft S.A. - Ecuador 8 8 Author URI: https://perseo.ec -
perseo-software/trunk/README.md
r3096844 r3096890 5 5 Tags: auto publish, content marketing 6 6 Requires at least: 1.1 7 Tested up to: 2 7.07 Tested up to: 28.0 8 8 Requires PHP: 7.4 9 Stable tag: 2 7.09 Stable tag: 28.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 48 48 1. perseo-1.jpg 49 49 2. == Changelog == 50 = 28.0 = 51 * Actualizar campo fecha_sync 52 53 == Changelog == 50 54 = 27.0 = 51 55 * Actualizacion iva y parametros. -
perseo-software/trunk/includes/PluginPerseo_cron.php
r3096844 r3096890 796 796 array( 797 797 'post_author' => '1', 798 'post_date' => $producto['fecha modificacion'],798 'post_date' => $producto['fecha_sync'], 799 799 'post_date_gmt' => '0000-00-00 00:00:00', 800 800 'post_content' => $producto['fichatecnica'], … … 808 808 'to_ping' => '', 809 809 'pinged' => '', 810 'post_modified' => $producto['fecha modificacion'],811 'post_modified_gmt' => $producto['fecha modificacion'],810 'post_modified' => $producto['fecha_sync'], 811 'post_modified_gmt' => $producto['fecha_sync'], 812 812 'post_content_filtered' => '', 813 813 'post_parent' => '0', … … 1073 1073 array( 1074 1074 'post_author' => '1', 1075 'post_date' => $producto['fecha modificacion'],1075 'post_date' => $producto['fecha_sync'], 1076 1076 'post_date_gmt' => '0000-00-00 00:00:00', 1077 1077 'post_content' => '', … … 1085 1085 'to_ping' => '', 1086 1086 'pinged' => '', 1087 'post_modified' => $producto['fecha modificacion'],1088 'post_modified_gmt' => $producto['fecha modificacion'],1087 'post_modified' => $producto['fecha_sync'], 1088 'post_modified_gmt' => $producto['fecha_sync'], 1089 1089 'post_content_filtered' => '', 1090 1090 'post_parent' => $idPost, //dato del registro padre … … 1207 1207 ///Fecha de modificacion es igual a la fecha de ingreso 1208 1208 $ConsultaProductofecha = $wpdb->get_var("SELECT posts.post_modified FROM {$table_prefix}posts posts where posts.post_type='product' and posts.ID='" . $ConsultaProductoUpd . "'"); 1209 $perseo_fechaprod = date_format(date_create($producto['fecha modificacion']), 'Y-m-d H:i:s');1209 $perseo_fechaprod = date_format(date_create($producto['fecha_sync']), 'Y-m-d H:i:s'); 1210 1210 //echo $perseo_fechaprod ." > ".$ConsultaProductofecha; 1211 1211 //echo "<br>"; … … 1217 1217 'post_title' => $producto['descripcion'], 1218 1218 'post_excerpt' => $producto['descripcion'], 1219 'post_modified' => $producto['fecha modificacion'],1220 'post_modified_gmt' => $producto['fecha modificacion']1219 'post_modified' => $producto['fecha_sync'], 1220 'post_modified_gmt' => $producto['fecha_sync'] 1221 1221 ); 1222 1222 … … 1407 1407 array( 1408 1408 'post_author' => '1', 1409 'post_date' => $producto['fecha modificacion'],1409 'post_date' => $producto['fecha_sync'], 1410 1410 'post_date_gmt' => '0000-00-00 00:00:00', 1411 1411 'post_content' => '', … … 1419 1419 'to_ping' => '', 1420 1420 'pinged' => '', 1421 'post_modified' => $producto['fecha modificacion'],1421 'post_modified' => $producto['fecha_sync'], 1422 1422 'post_modified_gmt' => '0000-00-00 00:00:00', 1423 1423 'post_content_filtered' => '',
Note: See TracChangeset
for help on using the changeset viewer.