|
@@ -3,6 +3,9 @@
|
|
<head>
|
|
<head>
|
|
<th:block th:include="include :: header('订单基础 订单的基础信息列表')" />
|
|
<th:block th:include="include :: header('订单基础 订单的基础信息列表')" />
|
|
<th:block th:include="include :: datetimepicker-css" />
|
|
<th:block th:include="include :: datetimepicker-css" />
|
|
|
|
+ <style type='text/css'>
|
|
|
|
+ .control-label{padding-right : 0px}
|
|
|
|
+ </style>
|
|
</head>
|
|
</head>
|
|
<body class="gray-bg">
|
|
<body class="gray-bg">
|
|
<div class="container-div">
|
|
<div class="container-div">
|
|
@@ -59,7 +62,17 @@
|
|
<!--<div class="input-group col-sm-8">-->
|
|
<!--<div class="input-group col-sm-8">-->
|
|
<!--<input class="form-control" type="text" name="salesOrgName"/>-->
|
|
<!--<input class="form-control" type="text" name="salesOrgName"/>-->
|
|
<!--</div>-->
|
|
<!--</div>-->
|
|
|
|
+ <label class="control-label col-sm-4">期望到货时间:</label>
|
|
|
|
+ <div class="input-group col-sm-8">
|
|
|
|
+ <input id="date"
|
|
|
|
+ class="form-control"
|
|
|
|
+ type="text"
|
|
|
|
+ name="expectedTime"
|
|
|
|
+ value=""
|
|
|
|
+ placeholder="查询年月日" >
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
<div class="form-group col-sm-4 row">
|
|
<div class="form-group col-sm-4 row">
|
|
<div class="form-group" style="float: right;">
|
|
<div class="form-group" style="float: right;">
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
@@ -95,6 +108,17 @@
|
|
<th:block th:include="include :: footer" />
|
|
<th:block th:include="include :: footer" />
|
|
<th:block th:include="include :: datetimepicker-js" />
|
|
<th:block th:include="include :: datetimepicker-js" />
|
|
<script th:inline="javascript">
|
|
<script th:inline="javascript">
|
|
|
|
+ $('#date').datetimepicker({
|
|
|
|
+ forceParse: 0,//设置为0,时间不会跳转1899,会显示当前时间。
|
|
|
|
+ language: 'zh-CN',//显示中文
|
|
|
|
+ format: 'yyyy-mm-dd',//显示格式
|
|
|
|
+ minView: "month",//设置只显示到月份
|
|
|
|
+ initialDate: new Date(),//初始化当前日期
|
|
|
|
+ autoclose: true,//选中自动关闭
|
|
|
|
+ todayBtn: true//显示今日按钮
|
|
|
|
+ })
|
|
|
|
+ //$("#date").datetimepicker("setDate", new Date() ); //设置显示默认当天的时间
|
|
|
|
+
|
|
var editFlag = [[${@permission.hasPermi('order:orderbase:edit')}]];
|
|
var editFlag = [[${@permission.hasPermi('order:orderbase:edit')}]];
|
|
//var removeFlag = [[${@permission.hasPermi('order:orderbase:remove')}]];
|
|
//var removeFlag = [[${@permission.hasPermi('order:orderbase:remove')}]];
|
|
var orderStatusDatas = [[${@dict.getType('order_type')}]];
|
|
var orderStatusDatas = [[${@dict.getType('order_type')}]];
|