FIX: change AMS n3s ams_id & tray_id from 512 to 128

Jira: [STUDIO-13477]
Change-Id: I3844cb59df18220a22d8ff7524216b9fff2b6632
(cherry picked from commit 8c7b66d24b1e795c3070883f3f439cf160b38037)
This commit is contained in:
hemai
2025-07-21 09:24:19 +08:00
committed by Noisyfox
parent 1331e51dae
commit d2fc250e5f

View File

@@ -387,7 +387,8 @@ std::string PartSkipDialog::create_tmp_path()
buf << "/bamboo_task/";
buf << m_timestamp;
if (m_obj) {
buf << m_obj->dev_id << "_";
buf << m_obj->dev_id.substr(0, 3) << "_";
buf << m_obj->dev_id.substr(m_obj->dev_id.length() - 3, 3) << "_";
buf << m_obj->job_id_ << "/";
} else {
buf << 1 << "_" << 1 << "/";