You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
338 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/** 查价货物硬限制PRD §4.2.8 */
export const CARGO_LIMITS = {
palletCount: { min: 1, max: 25 },
dimIn: { lengthMax: 999, widthMax: 99, heightMax: 99, min: 1 },
weightLbPerPallet: { min: 0.01, max: 9_999 },
/** 整票总重上限 = 单托重量上限 × 托盘数上限 */
totalWeightLbMax: 9_999 * 25,
} as const;