chore: remove platformbiz module — replaced by product_management + supplychain

This commit is contained in:
yumoqing 2026-07-09 13:59:50 +08:00
parent 5dce6dd42c
commit 44d2a8c6c8
6 changed files with 0 additions and 13 deletions

View File

@ -25,7 +25,6 @@ from reallife_asset.init import load_reallife_asset
from discount.init import load_discount
from global_func import set_globalvariable
from unipay.init import load_unipay
from platformbiz.init import load_platformbiz
from product_management.init import load_product_management
from supplychain.init import load_supplychain
from accounting.init import load_accounting
@ -45,7 +44,6 @@ def init():
load_rbac()
load_accounting()
load_unipay()
load_platformbiz()
load_product_management()
load_supplychain()
load_filemgr()

View File

@ -26,7 +26,6 @@ do
cd $m
$cdir/py3/bin/pip install .
done
for m in appbase rbac accounting llmage platformbiz msp cpcc unipay filemgr dapi uapi rag charge pricing discount harnessed_agent harnessed_reasoning dashboard_for_sage product_management supplychain reallife_asset bugfix
do
echo "install $m module..."
cd $cdir/pkgs

View File

@ -1,6 +1,5 @@
#!/bin/sh
for m in appbase accounting rbac platformbiz basellm
do
echo $m
rm $m

View File

@ -1,5 +1,4 @@
for m in accounting appbase basellm filemgr msp pf_pay platformbiz rag rbac sage sqlor uapi
do
ln -s ~/py/$m/wwwroot $m
done

View File

@ -153,12 +153,10 @@
,{
"name": "prodtype",
"label": "产品类型管理",
"url": "{{entire_url('/platformbiz/prodtype')}}"
},
{
"name": "prodtypespec",
"label": "产品类型规格",
"url": "{{entire_url('/platformbiz/prodtypespec')}}"
}
{% endif %}
{% if 'provider.operator' in roles %}
@ -166,12 +164,10 @@
{
"name": "product",
"label": "产品管理",
"url": "{{entire_url('/platformbiz/product')}}"
}
,{
"name": "reseller",
"label": "分销协议",
"url": "{{entire_url('/platformbiz/retail_agree')}}"
}
{% endif %}
{% if 'reseller.operator' in roles or 'customer.operator' in roles %}
@ -184,19 +180,16 @@
{
"name": "providermgr",
"label": "供应协议",
"url": "{{entire_url('/platformbiz/provide_agree')}}"
},
{
"name": "product",
"label": "产品管理",
"url": "{{entire_url('/platformbiz/product')}}"
}
{% endif %}
{% if 'reseller.sale' in roles %}
,{
"name": "reseller",
"label": "分销协议",
"url": "{{entire_url('/platformbiz/retail_agree')}}"
}
{% endif %}
{% if 'custmer.admin' in roles or 'reseller.admin' in roles %}

View File

@ -22,7 +22,6 @@ from xls2ddl.xlsxData import xlsxFactory, CRUDData
# Sage 相关模块列表
SAGE_MODULES = [
'appbase', 'rbac', 'accounting', 'llmage', 'platformbiz',
'msp', 'cpcc', 'unipay', 'filemgr', 'dapi', 'uapi',
'rag', 'charge', 'pricing', 'discount', 'hermes-web-cli',
]