|
@@ -518,13 +518,18 @@ namespace JLHHJSvr.Helper
|
|
|
}
|
|
|
// 刺绣
|
|
|
var cixiuList = jianmianList.Where(t => t.formulakind == 6).ToList();
|
|
|
+ var ls_temp_cnt = 0;
|
|
|
for (int i = 0; i < cixiuList.Count; i++)
|
|
|
{
|
|
|
var mx = cixiuList[i];
|
|
|
if (string.IsNullOrEmpty(mx.chastr) && mx.mtrlid > 0)
|
|
|
{
|
|
|
- interfaceList.Add(InserMattressInterfacePz("拉手刺绣及其他工艺", $"侧刺绣{i + 1}做法", 1, new string[] { "" }));
|
|
|
- interfaceList.Add(InserMattressInterfacePz("拉手刺绣及其他工艺", $"侧刺绣{i + 1}位置", 0, new string[] { "" }));
|
|
|
+ for (int k = 0; k < mx.qty; k++)
|
|
|
+ {
|
|
|
+ ls_temp_cnt++;
|
|
|
+ interfaceList.Add(InserMattressInterfacePz("拉手刺绣及其他工艺", $"侧刺绣{ls_temp_cnt}做法", 1, new string[] { "" }));
|
|
|
+ interfaceList.Add(InserMattressInterfacePz("拉手刺绣及其他工艺", $"侧刺绣{ls_temp_cnt}位置", 0, new string[] { "" }));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
// 大侧压压布
|