Go to file
曹鹏飞 24185b09e5 refactor(quotation): 优化价格计算逻辑并修复数据类型问题
- 修改AppRatioAgentConfigController中的价格计算逻辑,增加空值检查避免NPE
- 更新PlanSearchItemVO中salePrice的计算方法,统一使用NumberUtil.multiply
- 注释掉ProductModelMapper.xml中型号编号的查询条件
- 修正QuotationProductModelSearchVO中moduleName字段类型为String
- 在PlanSearchItemVO中添加NumberUtil导入声明
2026-03-13 19:05:48 +08:00
nflg-mobilebroken-admin Merge branch 'prod/20260313' into feature/quotation 2026-03-13 16:07:24 +08:00
nflg-mobilebroken-auth Merge branch 'feature/quotation-zhangke' into feature/quotation 2026-03-12 16:27:28 +08:00
nflg-mobilebroken-cfs-app Merge branch 'feature/bug-1286' into develop 2026-02-02 17:44:15 +08:00
nflg-mobilebroken-common refactor(quotation): 优化价格计算逻辑并修复数据类型问题 2026-03-13 19:05:48 +08:00
nflg-mobilebroken-gateway fix(service): 修正设备数据状态更新逻辑 2025-12-18 18:08:56 +08:00
nflg-mobilebroken-gongfu Merge branch 'prod/20260313' into feature/quotation 2026-03-13 16:07:24 +08:00
nflg-mobilebroken-product Merge branch 'feature/bug-1286' into develop 2026-02-02 17:44:15 +08:00
nflg-mobilebroken-push feat(gongfu): 修改设备批量操作功能 2026-02-02 17:43:57 +08:00
nflg-mobilebroken-quotation refactor(quotation): 优化价格计算逻辑并修复数据类型问题 2026-03-13 19:05:48 +08:00
nflg-mobilebroken-repository refactor(quotation): 优化价格计算逻辑并修复数据类型问题 2026-03-13 19:05:48 +08:00
nflg-mobilebroken-starter Merge branch 'develop' into feature/quotation 2026-02-25 17:28:57 +08:00
.gitignore feat: 聊天列表添加未读信息 2025-02-24 11:44:59 +08:00
pom.xml feat(quotation): 添加价格配置功能并优化模型配置管理 2026-02-24 18:04:42 +08:00
readme.md feat(bi): 新增工单及派工相关业务指标统计接口 2025-12-17 18:01:15 +08:00

readme.md

服务器需要安装的软件

  • ImageMagick

用于将苹果的HEIC图片格式转换为PNG图片格式必须源码编译否则不支持HEIC格式

yum install -y epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum install -y yum-utils
yum-config-manager --enable remi
wget https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
wget https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm
rpm -Uvh rpmfusion-free-release-7.noarch.rpm rpmfusion-nonfree-release-7.noarch.rpm
yum clean all
yum install -y libde265 libx265
yum install -y libheif-devel
yum install -y libtool-ltdl-devel
# 源码编译安装ImageMagick
yum groupinstall -y "Development Tools"
yum install -y libjpeg-turbo-devel libpng-devel freetype-devel libtiff-devel giflib-devel
yum install -y libheif-devel libde265-devel x265-devel
wget https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.2-11.tar.gz
tar xf 7.1.2-11.tar.gz
cd ImageMagick-7.1.2-11/
./configure --with-heif=yes --with-modules --enable-hdri
make -j$(nproc)
make install
which magick
ln -s /usr/local/bin/magick /usr/bin/magick
magick -version
magick -list format | grep HEIC