You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description' => __( 'Debe configurar método de pago y cuenta bancaria para cada gateway activo. Los gateways inactivos con mapeo guardado también se muestran para edición.' ),
92
+
'description' => __( 'Debe configurar método de pago, cuenta bancaria y tipo de pago para cada gateway activo. Los gateways inactivos con mapeo guardado también se muestran para edición.' ),
if (!$gateway_map['payment_method'] || !$gateway_map['account_id']) {
261
+
if (!$gateway_map['payment_method'] || !$gateway_map['account_id'] || !$gateway_map['payment_type']) {
247
262
WC_Admin_Settings::add_error(
248
263
sprintf(
249
-
__('Integration Alegra Woocommerce: Debe configurar método de pago y cuenta bancaria para el gateway activo "%s".', 'integration-alegra-woo'),
264
+
__('Integration Alegra Woocommerce: Debe configurar método de pago, cuenta bancaria y tipo de pago para el gateway activo "%s".', 'integration-alegra-woo'),
250
265
$gateway_title
251
266
)
252
267
);
@@ -273,7 +288,10 @@ public function validate_payment_mappings_table_field($key, $value): array
273
288
continue;
274
289
}
275
290
276
-
if (!isset(Integration_Alegra_WC::PAYMENTS_METHODS[$payment_method])) {
0 commit comments