mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-26 10:45:43 +08:00
1. 【新增】售后单售后原因类型支持搜索
2. 【新增】手工创建订单折扣可输入正数 3. 【优化】盘点申请单确认 4. 【修复】采购退货单模拟出库失败问题 5. 【新增】订单金额客户实付与结算金额 6. 【优化】仓库发货统计报表物料名称显示 7. 【优化】自有仓储虚拟发货逻辑 8. 【修复】基础物料分类管理问题
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
<option value="ordertype" <{if $init.role=='ordertype'}>selected<{/if}>>订单类型</option>
|
||||
<option value="materialtype" <{if $init.role=='materialtype'}>selected<{/if}>>按基础物料类型</option>
|
||||
<option value="materialcat" <{if $init.role=='materialcat'}>selected<{/if}>>按基础物料分类</option>
|
||||
<option value="customer" <{if $init.role=='customer'}>selected<{/if}>>按客户分类</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -29,8 +29,8 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>标签代码:</th>
|
||||
<td><input name="label_code" type="text" value="<{$data.label_code}>" maxlength="20" vtype="required" onkeyup="this.value=this.value.replace(/[^a-zA-Z0-9]/g,'')" />
|
||||
<span style="color:red;">*</span>必填项,支持英文字母、数字</td>
|
||||
<td><input name="label_code" type="text" value="<{$data.label_code}>" maxlength="20" vtype="required" onkeyup="this.value=this.value.replace(/[^a-zA-Z0-9_]/g,'')" />
|
||||
<span style="color:red;">*</span>必填项,支持英文字母、数字、下划线</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>标签名称:</th>
|
||||
|
||||
34
app/omeauto/view/order/type/materialcat.html
Normal file
34
app/omeauto/view/order/type/materialcat.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<style>
|
||||
.in_ul{clear: both;}
|
||||
.in_ul li {font-size: 12px; float: left;}
|
||||
</style>
|
||||
<span>
|
||||
<ul class="in_ul">
|
||||
<li>
|
||||
<span>筛选范围:</span>
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="find_type" value="include" <{if $init.content.find_type != 'not_include'}>checked<{/if}> />包含
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="find_type" value="not_include" <{if $init.content.find_type == 'not_include'}>checked<{/if}> />不包含
|
||||
</li>
|
||||
</ul>
|
||||
</span>
|
||||
|
||||
<span style="padding-top:10px;">
|
||||
<ul class="in_ul">
|
||||
<li>
|
||||
<span>基础物料分类:</span>
|
||||
</li>
|
||||
<li>
|
||||
<select type="select" name="cat_id" id="cat_id" required="true" class=" x-input-select inputstyle">
|
||||
<{if $cat_list}>
|
||||
<{foreach from=$cat_list key=keyVal item=itemVal}>
|
||||
<option value="<{$itemVal.cat_id}>" <{if $itemVal.cat_id == $init.content.cat_id}>selected<{/if}>><{$itemVal.cat_name}></option>
|
||||
<{/foreach}>
|
||||
<{/if}>
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</span>
|
||||
@@ -28,10 +28,15 @@
|
||||
<td><{input type="textarea" cols="100" rows="4" name="describe" id='t_describe' value=$info.describe}><br/>(对此订单类型的简单描述)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th width="60"><{help}>按京东开普勒商品渠道ID拆:现仅用于【抖音平台】订单使用【京东云交易】仓储进行发货。<{/help}> 拆单类型: </th>
|
||||
<th width="60">拆单类型: </th>
|
||||
<td>
|
||||
<{input type="select" id='t_split_type' name="split_type" value=$info.split_type options=$split_type required="required"}>
|
||||
<div id="split_type_special" style="padding-top: 10px"></div> <span style="color:red;">*提示:如果设置了 "按虚拟商品拆单" 规则,系统会优先执行虚拟商品自动拆单并自动发货。</span>
|
||||
<div id="split_type_special" style="padding-top: 10px"></div>
|
||||
|
||||
<br>
|
||||
<span style="color:red;">*提示:“按库存就全拆”拆单类型,不适用【订单审核时不需要管控库存】,如果有不需要库存管控的订单明细,请单独创建一个审单规则,并且【分组规则】权重值必须设置高一些。</span>
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
6
app/omeauto/view/order/type/split/customerclassify.html
Normal file
6
app/omeauto/view/order/type/split/customerclassify.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<div class="mt-10">
|
||||
<div>
|
||||
客户分类:
|
||||
<{input type='object' object="customer_classify@material" required="required" filter="disabled=false" name="split_config[class_id]" value=$data.split_config.class_id}>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user