This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Instalar modulos de Odoo | |
>pip3 install - r requirement.txt | |
Resolver problema de la compilacion de estilos | |
>pip install libsass | |
ModuleNotFoundError: No module named 'win32service' | |
> pip install pypiwin32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from odoo import models, api, fields | |
import io | |
import base64 | |
import xlwt | |
class ControlAsistenciaWizard(models.TransientModel): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const getDateFormat = (format, date=null) => { | |
let today = date ? new Date(date) : new Date(); | |
if(date){ | |
today = today.setMinutes(today.getMinutes() + today.getTimezoneOffset()) | |
today = new Date(today); | |
} | |
let r = { | |
dd: today.getDate(), | |
mm: today.getMonth()+1, | |
yyyy: today.getFullYear(), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import PropTypes from 'prop-types'; | |
const Modal = ({title, children, handleCancelModal, handleOkModel, buttons, cancelText, okText, width}) => { | |
let widthSize = { maxWidth: width || 0 } | |
return ( | |
<div className="modal fade show" style={{paddingRight: '17px', display: 'block'}}> | |
<div className="modal-dialog" role="document" style={width ? widthSize : {}}> | |
<div className="modal-content"> | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import XLSX from 'xlsx'; | |
import { make_cols } from './MakeColumns'; | |
import { SheetJSFT } from './types'; | |
import PropTypes from 'prop-types'; | |
class ExcelReader extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const simpleText = (texto) => { | |
return (texto.normalize('NFD') | |
.replace(/[\u0300-\u036f]/g,"")) | |
.replace(/(\r\n|\n|\r)/gm, ' ') | |
.replace(/[\s]{2,}/gm, ' ').toString().toLowerCase(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from odoo import models, api, fields | |
class parentModel(models.TransientModel): | |
_name = 'parent.model' | |
name = fields.Integer(string="Name") | |
#. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from odoo import api, fields, models | |
class ResConfigSettings(models.TransientModel): | |
_inherit = 'res.config.settings' | |
essalud = fields.Char(string='Descuento EsSalud', default='') | |
eps = fields.Float(string='Descuento EPS') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dateutil import relativedelta as rdelta | |
from datetime import datetime | |
import dateutil.parser | |
import pytz | |
my_date = datetime.now(pytz.timezone('America/Lima')).strftime('%Y-%m-%d %H:%M:%S') | |
# DATETIME TO DATE | |
dateutil.parser.parse(my_date).date(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const model = new Model('model.name'); | |
model | |
.call_button('get_information_to_payroll', [{ | |
idEmployees | |
}]) | |
.then((res)=>{ | |
console.log(res) | |
}) | |
.catch((err) => { |
OlderNewer