Commit 838cb5e402bb1478216a9c78a403402f826ca8b6

Authored by 房远帅
1 parent b0ee2140

楚江ERP:bug修改

... ... @@ -252,7 +252,7 @@ public class GetPurchaseOrderInfoBo extends BaseBo<PurchaseOrderInfo> {
252 252 * 包装费
253 253 */
254 254 @ApiModelProperty("包装费")
255   - private BigDecimal packagingFee;
  255 + private String packagingFee;
256 256
257 257 /**
258 258 * 是否为合同创建人
... ...
... ... @@ -216,7 +216,7 @@ public class OrderChangeRecordBo extends BaseBo<OrderInfoChangeRecord> {
216 216 * 包装费
217 217 */
218 218 @ApiModelProperty("包装费")
219   - private BigDecimal packagingFee;
  219 + private String packagingFee;
220 220
221 221 /**
222 222 * 制单日期
... ...
... ... @@ -316,7 +316,6 @@ public class CustomerCreditController extends DefaultBaseController {
316 316 * @return
317 317 */
318 318 @ApiOperation("导出")
319   - @HasPermission({"customer-dev-manage:customer-dev-plan:export"})
320 319 @GetMapping("/export")
321 320 public void export(@NotBlank(message = "ID不能为空") String id, HttpServletResponse response) {
322 321 try {
... ...
... ... @@ -153,7 +153,7 @@ public class PurchaseOrderInfoController extends DefaultBaseController {
153 153 if (CollectionUtil.isNotEmpty(purchaseOrderLineList)) {
154 154 //生产人员不展示价格,根据部门判断(生产管理科、精轧一车间、精轧车间、品质管理科),需要生产的控制价格
155 155 List<SysUserDept> userDeptList = sysUserDeptService.getByUserId(SecurityUtil.getCurrentUser().getId());
156   - if (CollectionUtils.isNotEmpty(userDeptList) && "PRODUCTION".equals(result.getType())) {
  156 + if (CollectionUtils.isNotEmpty(userDeptList)) {
157 157 boolean b = false;
158 158 for (SysUserDept sysUserDept : userDeptList) {
159 159 String deptId = sysUserDept.getDeptId();
... ...
... ... @@ -184,7 +184,7 @@ public class OrderInfoChangeRecord extends BaseEntity implements BaseDto {
184 184 /**
185 185 * 包装费
186 186 */
187   - private BigDecimal packagingFee;
  187 + private String packagingFee;
188 188
189 189 /**
190 190 * 订货单ID
... ...
... ... @@ -228,7 +228,7 @@ public class PurchaseOrderInfo extends BaseEntity implements BaseDto {
228 228 /**
229 229 * 包装费
230 230 */
231   - private BigDecimal packagingFee;
  231 + private String packagingFee;
232 232
233 233 /**
234 234 * 合同创建人ID
... ...
... ... @@ -217,7 +217,7 @@ public class CreatePurchaseOrderInfoVo implements BaseVo, Serializable {
217 217 * 包装费
218 218 */
219 219 @ApiModelProperty("包装费")
220   - private BigDecimal packagingFee;
  220 + private String packagingFee;
221 221
222 222 /**
223 223 * 合同创建人ID
... ...
... ... @@ -212,6 +212,6 @@ public class UpdatePurchaseOrderInfoVo implements BaseVo, Serializable {
212 212 * 包装费
213 213 */
214 214 @ApiModelProperty("包装费")
215   - private BigDecimal packagingFee;
  215 + private String packagingFee;
216 216
217 217 }
... ...
... ... @@ -187,7 +187,7 @@ public class CreateOrderChangeRecordVo implements BaseVo, Serializable {
187 187 * 包装费
188 188 */
189 189 @ApiModelProperty("包装费")
190   - private BigDecimal packagingFee;
  190 + private String packagingFee;
191 191
192 192 /**
193 193 * 规格变更记录
... ...
... ... @@ -193,7 +193,7 @@ public class UpdateOrderChangeRecordVo implements BaseVo, Serializable {
193 193 * 包装费
194 194 */
195 195 @ApiModelProperty("包装费")
196   - private BigDecimal packagingFee;
  196 + private String packagingFee;
197 197
198 198 /**
199 199 * 规格变更记录
... ...