first commit

This commit is contained in:
2025-02-20 14:59:35 +08:00
parent d7be84fac6
commit d4a3bb8ffc
2541 changed files with 336536 additions and 0 deletions
@@ -0,0 +1,107 @@
${zhiqim_manager_history("/dispatchProperty.htm")}
${zhiqim_manager_breadcrumb_parent("/dispatchProperty.htm", "设计师派单属性", "修改设计师派单属性")}
${zhiqim_manager_content()}
${zhiqim_manager_title("修改设计师与行业关系")}
<form name="theForm" action="/dispatchPropertyUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
<input name="operatorCode" id="operatorCode" value="${dispatchProperty.getOperatorCode()}" type="hidden">
<table class="z-table z-bordered z-pd6 z-bg-white">
<tr class="z-h40">
<td width="35%">设计师</td>
<td width="*">${dispatchProperty.getOperatorCode()}</td>
</tr>
<#var typeList = DesignTypeDao.list()/>
<tr>
<td>主产品类型:</td>
<td>
<#if Validates.isNotEmpty(typeList)>
<#for item : typeList>
<input name="majorType" data-role="z-radio" data-class="${zmr_color_class}" <#if dispatchProperty.getMajorType()== item.getTypeId()>checked="checked"</#if> type="radio" value="${item.getTypeId()}"> &nbsp;${item.getTypeName()}&nbsp;&nbsp;
<#if (item_index + 1) % 5 == 0><br/><br/></#if>
</#for>
</#if>
</td>
</tr>
<tr>
<td>副产品类型(请选择)</td>
<td>
<#if Validates.isNotEmpty(typeList)>
<#for item : typeList>
<input name="secondaryTypes" data-role="z-checkbox" data-class="${zmr_color_class}" <#if Lists.toStringList(dispatchProperty.getSecondaryTypes()).contains(""+item.getTypeId())>checked="checked"</#if> type="checkbox" value="${item.getTypeId()}"> &nbsp;${item.getTypeName()}&nbsp;&nbsp;
<#if (item_index + 1) % 5 == 0><br/><br/></#if>
</#for>
</#if>
</td>
</tr>
<#var industryList = Global.get(DesignIndustryCache.class).getIndustryList()/>
<tr>
<td>主行业:(请选择)</td>
<td>
<#if Validates.isNotEmpty(industryList)>
<#for item : industryList>
<input name="majorIndustry" data-role="z-radio" data-class="${zmr_color_class}" <#if dispatchProperty.getMajorIndustry()== item.getIndustryId()>checked="checked"</#if> type="radio" value="${item.getIndustryId()}"> &nbsp;${item.getIndustryName()}&nbsp;&nbsp;
<#if (item_index + 1) % 5 == 0><br/><br/></#if>
</#for>
</#if>
</td>
</tr>
<tr>
<td>副行业:(请选择)</td>
<td>
<#if Validates.isNotEmpty(industryList)>
<#for item : industryList>
<input name="secondaryIndustry" data-role="z-checkbox" data-class="${zmr_color_class}" id="${item.getIndustryId()}" <#if Lists.toStringList(dispatchProperty.getSecondaryIndustrys()).contains(""+item.getIndustryId())>checked="checked"</#if> type="checkbox" value="${item.getIndustryId()}"> &nbsp;${item.getIndustryName()}&nbsp;&nbsp;
<#if (item_index + 1) % 5 == 0><br/><br/></#if>
</#for>
</#if>
</td>
</tr>
<tr>
<td>设计师级别:(请选择)</td>
<td>
<select name="designerLevel" id="designerLevel" class="z-select ${zmr_color_class} z-w200">
<option value="0" <#if dispatchProperty.getDesignerLevel() == 0>selected</#if> >普通设计师</option>
<option value="1" <#if dispatchProperty.getDesignerLevel() == 1>selected</#if>>资深设计师</option>
</select> <font color=red>&nbsp;*</font>
</td>
</tr>
<tr>
<td>支持店铺:(请选择)</td>
<td>
<#for shop : shopList>
<div class="z-float-left z-pd6">
<input type="checkbox" name="shopNick" class="z-checkbox" <#if dispatchProperty.getShopNick().contains(shop)>checked</#if> value="${shop}" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">${shop}</span></div>
</#for>
</td>
</tr>
<tr>
<td>支持产品类型:</td>
<td>
<div class="z-float-left z-pd6 z-text-ellipsis z-pointer " title="设计稿">
<input type="checkbox" name="isDesignOrder" onclick="" class="z-checkbox" <#if dispatchProperty.isDesignOrder()>checked</#if> value="true" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">设计稿</span>
</div>
<div class="z-float-left z-pd6 z-text-ellipsis z-pointer " title="标准自来稿">
<input type="checkbox" name="isNormDraftOrder" onclick="" class="z-checkbox" <#if dispatchProperty.isNormDraftOrder()>checked</#if> value="true" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">标准自来稿</span>
</div>
<div class="z-float-left z-pd6 z-text-ellipsis z-pointer " title="改稿自来稿">
<input type="checkbox" name="isDraftOrder" onclick="" class="z-checkbox" <#if dispatchProperty.isDraftOrder()>checked</#if> value="true" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">改稿自来稿</span>
</div>
<div class="z-float-left z-pd6 z-text-ellipsis z-pointer " title="优质客户订单">
<input type="checkbox" name="isHighQualityOrder" onclick="" class="z-checkbox" <#if dispatchProperty.isHighQualityOrder()>checked</#if> value="true" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">优质客户订单</span>
</div>
<div class="z-float-left z-pd6 z-text-ellipsis z-pointer " title="加急订单">
<input type="checkbox" name="isUrgent" onclick="" class="z-checkbox" <#if dispatchProperty.isUrgent()>checked</#if> value="true" data-role="z-checkbox" data-class="${zmr_color_class}">
<span onclick="Z(this).parent().find('zcover>i.z-checkbox').click()" class="z-pointer">加急订单</span>
</div>
</td>
</tr>
</table>
${zhiqim_manager_submit()}
</form>
${zhiqim_manager_content_end()}