【果断收藏】我不允许你不知道这些财税小知识
一、没有实缴会怎么样?
新公司法规定:股东虚假出资、未交付或未按期交付出资的,处以5W以上20W以下的罚款
二、没有能力实缴怎么办?
如果注册资本过高,可以提前办理减资
三、实缴要一次性还是分批缴纳?
在规定的年限内缴清即可,可以一次性也可以分批缴纳
四、实缴的流程是怎样的?
公司股东卡转到公司账户,转账是备注“投资",并计提缴纳印花税
五、注册资金必须在账上趴着吗?
注册资金用于公司运营,可以用来付租金、发工资、交社保、公积金、搞研发、还款等
六、2024年7月后还能减资吗?
可以:7月份前后的区别在于8年还是5年
2024年7月1日之后注册的公司,为新公司,新公司=注册日之后5年内实缴,24年7月1日之前注册的公司,为老公司,老公司=3年缓冲+5年实缴=8年,3年缓冲:用来调整出资时限,最晚出资时间为32年6月30日;老公司有8年的时间来实缴注册资金。
(如果想注册新公司,可以在7月份之前注册,可以享受8年实缴)
There is no comment, let's add the first one.
弦圈热门内容
Django change an existing field to foreign key
I have a Django model that used to look like this:class Car(models.Model): manufacturer_id = models.IntegerField()There is another model called Manufacturer that the id field refers to. However, I realized that it would be useful to use Django's built-in foreign key functionality, so I changed the model to this:class Car(models.Model): manufacturer = models.ForeignKey(Manufacturer)This change appears to work fine immediately, queries work without errors, but when I try to run migrations, Django outputs the following:- Remove field manufacturer_id from car - Add field manufacturer to carDoing this migration would clear all the existing relationships in the database, so I don't want to do that. I don't really want any migrations at all, since queries like Car.objects.get(manufacturer__name="Toyota") work fine. I would like a proper database foreign key constraint, but it's not a high priority.So my question is this: Is there a way to make a migration or something else that allows me to convert an existing field to a foreign key? I cannot use --fake since I need to reliably work across dev, prod, and my coworkers' computers.内容来源于 Stack Overflow, 遵循 CCBY-SA 4.0 许可协议进行翻译与使用。原文链接:Django change an existing field to foreign key