mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 11:58:42 +08:00
17 lines
828 B
Python
17 lines
828 B
Python
from django.db import transaction
|
|
from apps.data.models import *
|
|
from apps.goods.models import *
|
|
from apps.system.models import *
|
|
|
|
|
|
def run(*args):
|
|
team = Team.objects.all().first()
|
|
with transaction.atomic():
|
|
Account.objects.create(number='A001', name='默认账户', team=team)
|
|
Client.objects.create(number='C001', name='默认客户', team=team)
|
|
Supplier.objects.create(number='S001', name='默认供应商', team=team)
|
|
|
|
warehouse = Warehouse.objects.create(number='W001', name='默认仓库', team=team)
|
|
goods = Goods.objects.create(number='G001', name='商品A', purchase_price=10, retail_price=20,
|
|
level_price1=20, level_price2=20, level_price3=20, team=team)
|
|
Inventory.objects.create(warehouse=warehouse, goods=goods, team=team)
|