Skip to content
View ernestoruiz89's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@wbapps
Block or Report

Block or report ernestoruiz89

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. sig_mineros sig_mineros Public

    Sistema de Información Gerencial para cooperativas de mineros artesanales

    Python

  2. Excel Excel
    1
    //Para sumar un rango dinamicamente tomando en cuenta la fecha de analisis con encabezados de fecha
    2
    
                  
    3
      =SUMA(INDIRECTO("F"&FILA()&"C2:F"&FILA()&"C"&COINCIDIR(BUSCARH($L$2,$4:$4,1,1),$4:$4,0),FALSO))
    4
      
    5
     
  3. Frappe - Add Keyboard Shorcut.js Frappe - Add Keyboard Shorcut.js
    1
    frappe.ui.keys.add_shortcut({
    2
    	shortcut: 'alt+p',
    3
    	action: (e) => {
    4
    		this.$item.find('.print-btn').trigger('click');
    5
    		e.preventDefault();
  4. Comfortably work with dialogs in Fra... Comfortably work with dialogs in Frappe Framework
    1
    function dialog_promise (title, fields, primary_action_label) {
    2
    	// Return a function that returns a promise
    3
    	// The promise resolves when the dialog is submitted and rejects when the dialog is closed
    4
    	// On resolve, the promise returns the values from the dialog.
    5
    	return () => new Promise((resolve, reject) => {