[remicon_cost_app.html] 생산단가 계산 시 단위 불일치 자재의 단위중량 관리 필요 #4
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
관련 파일: remicon_cost_app.html
remicon_cost_app.html에서 생산단가 계산 시, 배합(kg)과 단가(m3)의 단위가 맞지 않는 재료들에 대해 정확한 계산을 위해 단위중량(Density) 정보가 필요합니다.관련 코드 위치:
대상 자재:
현재 코드(
calcMaterialCosts함수)에서는 다음과 같이 단위중량을 사용하여 kg을 m3로 변환하고 있습니다:(mat.washedSand / wsDensity) * prices.washedSand(mat.crushedSand / csDensity) * prices.crushedSand(mat.mm20 / mm20Density) * prices.mm20(mat.mm25 / mm25Density) * prices.mm25따라서 생산단가의 정확성을 확보하기 위해 각 자재별 단위중량 데이터 관리가 필수적입니다.
[레미콘 배합/단가] 생산단가 계산 시 단위 불일치 자재의 단위중량 관리 필요to [remicon_cost_app.html] 생산단가 계산 시 단위 불일치 자재의 단위중량 관리 필요