This file contains hidden or 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
Pentru a compara venitul brut și net între un SRL cu impozit pe profit, o microîntreprindere și un angajat cu carte de muncă la un venit brut de 20.000 RON, trebuie să luăm în considerare următoarele aspecte: | |
SRL cu impozit pe profit: | |
Impozit pe profit: 16% din profit. | |
Dividende: după ce SRL-ul plătește impozitul pe profit, profitul rămas poate fi distribuit acționarilor sub formă de dividende, care sunt supuse unui impozit pe dividende de 8% (începând cu 2023). | |
Contribuția la sănătate (CASS): dacă veniturile din dividende depășesc plafonul anual de 36.000 RON, se plătește CASS de 10% din veniturile din dividende care depășesc acest plafon. | |
Microîntreprindere: | |
Impozit pe veniturile microîntreprinderii: 1% din veniturile firmei (dacă are cel puțin un angajat) sau 3% (dacă nu are angajați). |
This file contains hidden or 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 * as when from 'when'; | |
/** @license MIT License (c) 2011-2013 Copyright Tavendo GmbH. */ | |
/** | |
* AutobahnJS - http://autobahn.ws | |
* | |
* A lightweight implementation of | |
* | |
* WAMP (The WebSocket Application Messaging Protocol) - http://wamp.ws |
This file contains hidden or 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
var requireTrans = require.context('../public/js/translations', true, /\.json$/); | |
requireTrans.keys().forEach(function(elem){ | |
Translator.fromJSON(requireTrans(elem)); | |
}); |
This file contains hidden or 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
{ | |
"name": "symfony/website-skeleton", | |
"type": "project", | |
"license": "MIT", | |
"description": "A skeleton to start a new Symfony website", | |
"require": { | |
"php": "^7.1.3", | |
"ext-ctype": "*", | |
"ext-iconv": "*", | |
"sensio/framework-extra-bundle": "^5.1", |
This file contains hidden or 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
<?php | |
/* | |
* Copyright 2013 Radoslaw Kamil Ejsmont <[email protected]> | |
* | |
* Original code by mailaneel is available at | |
* https://gist.github.com/mailaneel/1363377 | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. |