HW 4 vuotta sitten
vanhempi
commit
694acfe7d0

+ 57 - 70
js/component/common/nowProjectStatus/index.jsx

@@ -1,11 +1,7 @@
 import React,{Component} from 'react';
 import {Button, DatePicker, Input, message, Modal, Radio} from "antd";
 import {
-    highTechColumns,//高新
-    highTechColumnsVIP,//高新会员
-    science,//科技
-    patent,//专利
-    currency,//软著和通用
+    simpleState
 } from './type';
 import moment from "moment";
 import $ from "jquery";
@@ -17,16 +13,7 @@ class NowProjectStatus extends Component{
         super(props);
         this.state={
             projectStatus: parseInt(props.projectStatus),
-            list:
-                props.cSort === 3 ? science :
-                props.cSort === 6 ? highTechColumnsVIP :
-                props.projectType === 0 || props.projectType === 2 || props.projectType === 3 || props.projectType === 4 || props.projectType === 6?
-                    currency:
-                props.projectType === 1 ?
-                    patent:
-                props.projectType === 5 ?
-                    highTechColumns :
-                    [],//projectType  0 正常 1专利 2软著 3审计 4双软 5高新 6商标   cSort: 3 科技项目  6: 会员
+            list:simpleState,
             dataInfor:Object.assign({},props.projectTypeJSON),
             loading: false,
             fileList:[],
@@ -62,10 +49,10 @@ class NowProjectStatus extends Component{
             })
             return false;
         }
-        if((this.state.projectStatus === 2 || this.state.projectStatus === 3) && this.state.fileList.length === 0){
-            message.warning('暂停附件未上传,请上传后保存!')
-            return false;
-        }
+        // if((this.state.projectStatus === 2 || this.state.projectStatus === 3) && this.state.fileList.length === 0){
+        //     message.warning('暂停附件未上传,请上传后保存!')
+        //     return false;
+        // }
         this.setState({
             loading: true,
         })
@@ -99,20 +86,20 @@ class NowProjectStatus extends Component{
         let obj = {
             tid:this.props.tid,
             projectStatus: this.state.projectStatus,
-            timeRecord: JSON.stringify(data)
-        }
-        if(arr[0]['valueType']){
-            //证书编号
-            let type = arr[0]['valueType'].filter(v=>v==='certificateNumber');
-            if(type.length > 0){
-                obj.certificateNumber = this.state.dataInfor[this.state.projectStatus]['certificateNumber']
-            }
-            //立项金额
-            let type1 = arr[0]['valueType'].filter(v=>v==='setUpAmount');
-            if(type1.length > 0){
-                obj.setUpAmount = this.state.dataInfor[this.state.projectStatus]['setUpAmount']
-            }
+            // timeRecord: JSON.stringify(data)
         }
+        // if(arr[0]['valueType']){
+        //     //证书编号
+        //     let type = arr[0]['valueType'].filter(v=>v==='certificateNumber');
+        //     if(type.length > 0){
+        //         obj.certificateNumber = this.state.dataInfor[this.state.projectStatus]['certificateNumber']
+        //     }
+        //     //立项金额
+        //     let type1 = arr[0]['valueType'].filter(v=>v==='setUpAmount');
+        //     if(type1.length > 0){
+        //         obj.setUpAmount = this.state.dataInfor[this.state.projectStatus]['setUpAmount']
+        //     }
+        // }
         $.ajax({
             url: globalConfig.context + '/api/admin/orderProject/updateProjectStatus',
             method: 'post',
@@ -297,44 +284,44 @@ class NowProjectStatus extends Component{
                                 ))
                             }
                         </Radio.Group>
-                        {
-                            (this.state.projectStatus === 2 || this.state.projectStatus === 3 || this.state.fileList.length > 0) &&
-                                <div>
-                                    <div style={{
-                                        paddingTop:'20px',
-                                        paddingBottom:'10px'
-                                    }}>
-                                        <div>暂停附件:</div>
-                                        <div style={{color:'#f00'}}>(请上传截图证明)</div>
-                                    </div>
-                                    <div style={{
-                                        display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'block':'none'
-                                    }}>
-                                        <ImgList
-                                            domId='nowProjectStatus'
-                                            uploadConfig={{
-                                                action:globalConfig.context + "/api/admin/orderProject/uploadOrderTaskFile",
-                                                data:{ 'sign': "order_task_file"},
-                                                multiple:true,
-                                                listType:"picture-card",
-                                            }}
-                                            onChange={(info)=>{
-                                                let fileList = info.fileList;
-                                                this.setState({ fileList });
-                                            }}
-                                            fileList={this.state.fileList}
-                                        />
-                                    </div>
-                                     <div style={{
-                                         display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'none':'block'
-                                     }}>
-                                         <ImgList
-                                             domId='nowProjectStatus1'
-                                             fileList={this.state.fileList}
-                                         />
-                                     </div>
-                                </div>
-                        }
+                        {/*{*/}
+                        {/*    (this.state.projectStatus === 2 || this.state.projectStatus === 3 || this.state.fileList.length > 0) &&*/}
+                        {/*        <div>*/}
+                        {/*            <div style={{*/}
+                        {/*                paddingTop:'20px',*/}
+                        {/*                paddingBottom:'10px'*/}
+                        {/*            }}>*/}
+                        {/*                <div>暂停附件:</div>*/}
+                        {/*                <div style={{color:'#f00'}}>(请上传截图证明)</div>*/}
+                        {/*            </div>*/}
+                        {/*            <div style={{*/}
+                        {/*                display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'block':'none'*/}
+                        {/*            }}>*/}
+                        {/*                <ImgList*/}
+                        {/*                    domId='nowProjectStatus'*/}
+                        {/*                    uploadConfig={{*/}
+                        {/*                        action:globalConfig.context + "/api/admin/orderProject/uploadOrderTaskFile",*/}
+                        {/*                        data:{ 'sign': "order_task_file"},*/}
+                        {/*                        multiple:true,*/}
+                        {/*                        listType:"picture-card",*/}
+                        {/*                    }}*/}
+                        {/*                    onChange={(info)=>{*/}
+                        {/*                        let fileList = info.fileList;*/}
+                        {/*                        this.setState({ fileList });*/}
+                        {/*                    }}*/}
+                        {/*                    fileList={this.state.fileList}*/}
+                        {/*                />*/}
+                        {/*            </div>*/}
+                        {/*             <div style={{*/}
+                        {/*                 display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'none':'block'*/}
+                        {/*             }}>*/}
+                        {/*                 <ImgList*/}
+                        {/*                     domId='nowProjectStatus1'*/}
+                        {/*                     fileList={this.state.fileList}*/}
+                        {/*                 />*/}
+                        {/*             </div>*/}
+                        {/*        </div>*/}
+                        {/*}*/}
                         <div style={{
                             display:'flex',
                             justifyContent:'center',

+ 26 - 0
js/component/common/nowProjectStatus/type.jsx

@@ -299,10 +299,36 @@ const currency = [
     }
 ];
 
+//精简版状态
+//0未启动 1进行中 2项目交付 3项目验收 4项目完成 5暂停
+const simpleState = [
+    {
+        id:1,
+        name:'进行中',
+    },
+    {
+        id:2,
+        name:'项目交付',
+    },
+    {
+        id:3,
+        name:'项目验收',
+    },
+    {
+        id:4,
+        name:'项目完成',
+    },
+    {
+        id:5,
+        name:'暂停',
+    },
+]
+
 export {
     highTechColumns,//高新
     highTechColumnsVIP,//高新会员
     science,//科技
     patent,//专利
     currency,//软著和同意
+    simpleState,//精简版状态
 }

+ 5 - 96
js/component/dataDic.js

@@ -3671,6 +3671,7 @@ module.exports = {
     },
   ],
 //  项目状态列表
+//0未启动 1进行中 2项目交付 3项目验收 4项目完成 5暂停
   projectStatusList:[
     {
       value:0,
@@ -3682,111 +3683,19 @@ module.exports = {
     },
     {
       value:2,
-      label:'暂停(客户通知暂停)',
+      label:'项目交付',
     },
     {
       value:3,
-      label:'暂停(业务线、总经理通知暂停)',
+      label:'项目验收',
     },
     {
       value:4,
-      label:'已提交',
+      label:'项目完成',
     },
     {
       value:5,
-      label:'未推荐',
-    },
-    {
-      value:6,
-      label:'已推荐',
-    },
-    {
-      value:7,
-      label:'未公示',
-    },
-    {
-      value:8,
-      label:'已公示',
-    },
-    {
-      value:9,
-      label:'已备案',
-    },
-    {
-      value:10,
-      label:'已下证',
-    },
-    {
-      value:11,
-      label:'退单(已申报/已下证)',
-    },
-    {
-      value:12,
-      label:'退单(未申报/未下证)',
-    },
-    {
-      value:13,
-      label:'已答辩',
-    },
-    {
-      value:14,
-      label:'未立项',
-    },
-    {
-      value:15,
-      label:'已立项',
-    },
-    {
-      value:16,
-      label:'前补助',
-    },
-    {
-      value:17,
-      label:'后补助',
-    },
-    {
-      value:18,
-      label:'立项已拨款',
-    },
-    {
-      value:19,
-      label:'已完成/下证',
-    },
-    {
-      value:20,
-      label:'已驳回',
-    },
-    {
-      value:21,
-      label:'第1年进行中',
-    },
-    {
-      value:22,
-      label:'第1年服务完成',
-    },
-    {
-      value:23,
-      label:'第2年进行中',
-    },
-    {
-      value:24,
-      label:'第2年服务完成',
-    },
-    {
-      value:25,
-      label:'第3年进行中',
-    },
-    {
-      value:26,
-      label:'第3年服务完成',
-    },
-    {
-      value:27,
-      label:'所有会员服务全部完成',
-    },
-    {
-      value:28,
-      label:'抽查未备案',
+      label:'暂停',
     },
   ]
 };

+ 140 - 36
js/component/manageCenter/financialManage/distribute/shouKuanAll.jsx

@@ -1388,30 +1388,96 @@ const ShouKuang = React.createClass({
     });
   },
   exportKaip() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportInvoice?" +
-        `orderNo=${this.state.selectedRowKeys}`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportInvoice",
+      data: {
+        orderNo: this.state.selectedRowKeys ? this.state.selectedRowKeys : undefined,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportAll() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportReceivables?" +
-        `orderNo=${
-            this.state.orderNoSearch ? this.state.orderNoSearch : ""
-        }&buyerName=${
-            this.state.nameSearch ? this.state.nameSearch : ""
-        }&departmentId=${
-            this.state.departmenttList ? this.state.departmenttList : ""
-        }&contractNo=${
-            this.state.contractNoSearch ? this.state.contractNoSearch : ""
-        }&processStatus=${this.state.processStatusSearch}`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportReceivables",
+      data: {
+        orderNo: this.state.orderNoSearch ? this.state.orderNoSearch : undefined,
+        buyerName: this.state.nameSearch ? this.state.nameSearch : undefined,
+        departmentId: this.state.departmenttList ? this.state.departmenttList : undefined,
+        contractNo: this.state.contractNoSearch ? this.state.contractNoSearch : undefined,
+        processStatus: this.state.processStatusSearch || undefined,
+        startTime: this.state.releaseDate[0],
+        endTime: this.state.releaseDate[1],
+        startFinalReceivablesTime: this.state.shouKuanDate[0],
+        endFinalReceivablesTime: this.state.shouKuanDate[1],
+        amountStatus: this.state.amountStatus,
+        liquidationStatus: this.state.liquidationStatus,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportWater() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportMyBill?" +
-        `orderNo=${this.state.selectedRowKeys}&whoType=1`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportMyBill",
+      data: {
+        orderNo: this.state.selectedRowKeys ? this.state.selectedRowKeys : undefined,
+        whoType: 1,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   printAll() {
     this.setState({
@@ -1494,10 +1560,29 @@ const ShouKuang = React.createClass({
     const data = {
       orderNo: this.state.selectedRowKeys[0],
     };
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/newOrder/exportOrderTaskData?" +
-        $.param(data);
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/newOrder/exportOrderTaskData",
+      data: data,
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportCui() {
     var data = {
@@ -1507,10 +1592,29 @@ const ShouKuang = React.createClass({
       // specially: 1,
       pageSize: 9999,
     };
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/newOrder/exportOrderDunData?" +
-        $.param(data);
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/newOrder/exportOrderDunData",
+      data: data,
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   cuiData() {
     this.setState({
@@ -2026,14 +2130,14 @@ const ShouKuang = React.createClass({
               >
                 导出所选工时信息
               </Button>
-              <Button
-                  type="primary"
-                  disabled={this.state.selectedRowKeys.length != 1}
-                  style={{ margin: "11px 0px 10px 10px" }}
-                  onClick={this.exportCui}
-              >
-                导出催款信息
-              </Button>
+              {/*<Button*/}
+              {/*    type="primary"*/}
+              {/*    disabled={this.state.selectedRowKeys.length != 1}*/}
+              {/*    style={{ margin: "11px 0px 10px 10px" }}*/}
+              {/*    onClick={this.exportCui}*/}
+              {/*>*/}
+              {/*  导出催款信息*/}
+              {/*</Button>*/}
               <Button
                   type="primary"
                   disabled={this.state.selectedRowKeys.length != 1}

+ 140 - 36
js/component/manageCenter/financialManage/distribute/shouKuang.jsx

@@ -1476,30 +1476,96 @@ const ShouKuang = React.createClass({
     });
   },
   exportKaip() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportInvoice?" +
-        `orderNo=${this.state.selectedRowKeys}`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportInvoice",
+      data: {
+        orderNo: this.state.selectedRowKeys ? this.state.selectedRowKeys : undefined,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportAll() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportReceivables?" +
-        `orderNo=${
-            this.state.orderNoSearch ? this.state.orderNoSearch : ""
-        }&buyerName=${
-            this.state.nameSearch ? this.state.nameSearch : ""
-        }&departmentId=${
-            this.state.departmenttList ? this.state.departmenttList : ""
-        }&contractNo=${
-            this.state.contractNoSearch ? this.state.contractNoSearch : ""
-        }&processStatus=${this.state.processStatusSearch}`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportReceivables",
+      data: {
+        orderNo: this.state.orderNoSearch ? this.state.orderNoSearch : undefined,
+        buyerName: this.state.nameSearch ? this.state.nameSearch : undefined,
+        departmentId: this.state.departmenttList ? this.state.departmenttList : undefined,
+        contractNo: this.state.contractNoSearch ? this.state.contractNoSearch : undefined,
+        processStatus: this.state.processStatusSearch || undefined,
+        startTime: this.state.releaseDate[0],
+        endTime: this.state.releaseDate[1],
+        startFinalReceivablesTime: this.state.shouKuanDate[0],
+        endFinalReceivablesTime: this.state.shouKuanDate[1],
+        amountStatus: this.state.amountStatus,
+        liquidationStatus: this.state.liquidationStatus,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportWater() {
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/receivables/exportMyBill?" +
-        `orderNo=${this.state.selectedRowKeys}&whoType=1`;
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/receivables/exportMyBill",
+      data: {
+        orderNo: this.state.selectedRowKeys ? this.state.selectedRowKeys : undefined,
+        whoType: 1,
+      },
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   printAll() {
     this.setState({
@@ -1582,10 +1648,29 @@ const ShouKuang = React.createClass({
     const data = {
       orderNo: this.state.selectedRowKeys[0],
     };
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/newOrder/exportOrderTaskData?" +
-        $.param(data);
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/newOrder/exportOrderTaskData",
+      data: data,
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   exportCui() {
     var data = {
@@ -1595,10 +1680,29 @@ const ShouKuang = React.createClass({
       // specially: 1,
       pageSize: 9999,
     };
-    window.location.href =
-        globalConfig.context +
-        "/api/admin/newOrder/exportOrderDunData?" +
-        $.param(data);
+    $.ajax({
+      method: "get",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/newOrder/exportOrderDunData",
+      data: data,
+      success: function (data) {
+        if (data.error && data.error.length) {
+          message.warning(data.error[0].message);
+        }else{
+          window.location.href =
+              globalConfig.context +
+              "/open/download?" +
+              `fileName=${data.data}&delete=true`;
+        }
+      }.bind(this),
+    }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+    );
   },
   cuiData() {
     this.setState({
@@ -2143,14 +2247,14 @@ const ShouKuang = React.createClass({
               >
                 导出所选工时信息
               </Button>
-              <Button
-                  type="primary"
-                  disabled={this.state.selectedRowKeys.length != 1}
-                  style={{ margin: "11px 0px 10px 10px" }}
-                  onClick={this.exportCui}
-              >
-                导出催款信息
-              </Button>
+              {/*<Button*/}
+              {/*    type="primary"*/}
+              {/*    disabled={this.state.selectedRowKeys.length != 1}*/}
+              {/*    style={{ margin: "11px 0px 10px 10px" }}*/}
+              {/*    onClick={this.exportCui}*/}
+              {/*>*/}
+              {/*  导出催款信息*/}
+              {/*</Button>*/}
               <Button
                   type="primary"
                   disabled={this.state.selectedRowKeys.length != 1}

+ 0 - 1
js/component/manageCenter/order/orderNew/reject.jsx

@@ -2375,7 +2375,6 @@ const IntentionCustomer = Form.create()(
                           wrapperCol={{ span: 18 }}
                           label={
                             <span>
-                            <strong style={{ color: "#f00" }}>*</strong>
                             补充协议
                           </span>
                           }

+ 2 - 2
package.json

@@ -1,13 +1,13 @@
 {
   "name": "afanti",
-  "version": "1.1.65",
+  "version": "1.1.69",
   "description": "",
   "main": "index.js",
   "scripts": {
     "test": "echo \"Error: no test specified\" && exit 1",
     "dlldev": "webpack --progress --colors --config ./webpack-dll.config.js --env.deploy dev --env.host 'http://127.0.0.1'",
     "dlltest": "webpack --progress --colors --config ./webpack-dll.config.js --env.deploy test --env.host 'http://static.jishutao.com'",
-    "dllpro": "webpack --progress --colors --config ./webpack-dll.config.js --env.deploy prod --env.host 'http://127.0.0.1'",
+    "dllpro": "webpack --progress --colors --config ./webpack-dll.config.js --env.deploy prod --env.host 'http://172.16.0.188:3000'",
     "build": "node bin/clean.js && webpack --progress --colors --env.deploy dev",
     "buildtest": "node --max-old-space-size=8192 bin/clean.js && webpack --progress --colors --env.deploy test",
     "buildstage": "node bin/clean.js && webpack --progress --colors --env.deploy stage",

+ 1 - 1
webpack-dll.config.js

@@ -16,7 +16,7 @@ module.exports = (function () {
       staticHost = 'http://static.jishutao.com';
       break;
     case 'prod':
-      staticHost = 'http://127.0.0.1';
+      staticHost = 'http://172.16.0.188:3000';
       break;
     default:
       break;