diff --git a/app/sage.py b/app/sage.py index 19469d06..0ea29374 100644 --- a/app/sage.py +++ b/app/sage.py @@ -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() diff --git a/build.sh b/build.sh index 1d16e6f2..8c41bdca 100755 --- a/build.sh +++ b/build.sh @@ -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 diff --git a/wwwroot/lnmodules.sh b/wwwroot/lnmodules.sh index d9038574..6e5c8d44 100755 --- a/wwwroot/lnmodules.sh +++ b/wwwroot/lnmodules.sh @@ -1,6 +1,5 @@ #!/bin/sh -for m in appbase accounting rbac platformbiz basellm do echo $m rm $m diff --git a/wwwroot/lnwww.sh b/wwwroot/lnwww.sh index 040dd47e..7ad581ee 100644 --- a/wwwroot/lnwww.sh +++ b/wwwroot/lnwww.sh @@ -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 diff --git a/wwwroot/menu.ui b/wwwroot/menu.ui index 895e6130..71237fc6 100644 --- a/wwwroot/menu.ui +++ b/wwwroot/menu.ui @@ -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 %} diff --git a/xlsx2json_models.py b/xlsx2json_models.py index 085f0c96..a15ece8d 100644 --- a/xlsx2json_models.py +++ b/xlsx2json_models.py @@ -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', ]