Go to file
曹鹏飞 08fa8e8084 feat(quotation): 新增下属报价单及下属列表接口功能
- 新增SubordinateQuotationSearchRequest请求类定义下属报价查询参数
- 在QuotationShoppingOrderMapper及xml中增加getQuotationOfSubordinate方法及对应SQL查询
- 在QuotationShoppingOrderService及实现类中添加获取下属报价单接口逻辑
- 修改ShoppingController,新增获取下属列表和下属报价单两个接口
- 调整购物车模块中目标名称展示,使用固定企业名称常量替代原有逻辑
- 修改AdminUserService接口中getByDepartmentIds方法参数为集合类型以支持多部门查询
- 在Constant中新增企业名称和工夫工单类型常量定义
- Optimized 部分查询中对代理商和内部用户的处理逻辑验证和权限控制
2026-05-14 15:14:08 +08:00
nflg-mobilebroken-admin feat(adminUser): 支持直销人员区域信息及报价编码生成 2026-05-13 15:54:25 +08:00
nflg-mobilebroken-auth Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-cfs-app feat(interceptor): 添加多语言拦截器实现 2026-04-08 09:21:26 +08:00
nflg-mobilebroken-common feat(quotation): 新增下属报价单及下属列表接口功能 2026-05-14 15:14:08 +08:00
nflg-mobilebroken-gateway fix(service): 修正设备数据状态更新逻辑 2025-12-18 18:08:56 +08:00
nflg-mobilebroken-gongfu Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-product Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-push feat(gongfu): 修改设备批量操作功能 2026-02-02 17:43:57 +08:00
nflg-mobilebroken-quotation feat(quotation): 新增下属报价单及下属列表接口功能 2026-05-14 15:14:08 +08:00
nflg-mobilebroken-repository feat(quotation): 新增下属报价单及下属列表接口功能 2026-05-14 15:14:08 +08:00
nflg-mobilebroken-starter feat(serial-number): 添加乐观锁支持及初始化报价代码接口 2026-05-13 10:07:34 +08:00
.apifox-helper.properties feat(admin): 更新购物控制器以支持调价功能 2026-03-25 18:40:15 +08:00
.gitignore feat: 聊天列表添加未读信息 2025-02-24 11:44:59 +08:00
pom.xml Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +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