|
|
@@ -11,7 +11,8 @@
|
|
|
List<SelectListItem> productionType = new List<SelectListItem>
|
|
|
{
|
|
|
new SelectListItem{Text = @"车间生产",Value = "0"},
|
|
|
-new SelectListItem{Text = @"外购单",Value = "1"},
|
|
|
+new SelectListItem{Text = @"外购成品",Value = "1"},
|
|
|
+new SelectListItem{Text = @"去料加工",Value = "2"},
|
|
|
};
|
|
|
|
|
|
List<SelectListItem> handleType = new List<SelectListItem>
|
|
|
@@ -322,8 +323,9 @@ new SelectListItem{Text = @"外购单",Value = "1"},
|
|
|
|
|
|
$("#Tool1").append(
|
|
|
'<div class="tool-radio"><input name="proType" type="radio" id="allProduction" checked value=""/><label for="allProduction">全部</label></div>' +
|
|
|
- '<div class="tool-radio"><input name="proType" type="radio" id="outPurchase" value="1"/><label for="outPurchase">外购</label></div>' +
|
|
|
- '<div class="tool-radio"><input name="proType" type="radio" id="machineShop" value="0"/><label for="machineShop">车间加工</label></div>');
|
|
|
+ '<div class="tool-radio"><input name="proType" type="radio" id="machineShop" value="0"/><label for="machineShop">车间加工</label></div>' +
|
|
|
+ '<div class="tool-radio"><input name="proType" type="radio" id="outFinish" value="1"/><label for="outFinish">外购成品</label></div>' +
|
|
|
+ '<div class="tool-radio"><input name="proType" type="radio" id="removalProcess" value="2"/><label for="removalProcess">去料加工</label></div>');
|
|
|
|
|
|
$(".tool-radio input[type='radio']").on('click',
|
|
|
function (e) {
|