|  | @@ -818,7 +818,7 @@
 | 
	
		
			
				|  |  |                  </el-button>
 | 
	
		
			
				|  |  |                  <el-dropdown-menu slot="dropdown">
 | 
	
		
			
				|  |  |                    <el-dropdown-item command="d">标准出库单</el-dropdown-item>
 | 
	
		
			
				|  |  | -<!--                  <el-dropdown-item command="b">出库单</el-dropdown-item>-->
 | 
	
		
			
				|  |  | +                  <!--                  <el-dropdown-item command="b">出库单</el-dropdown-item>-->
 | 
	
		
			
				|  |  |                    <el-dropdown-item command="c">理货单</el-dropdown-item>
 | 
	
		
			
				|  |  |                    <el-dropdown-item command="e">出库确认</el-dropdown-item>
 | 
	
		
			
				|  |  |                    <el-dropdown-item command="e">劳务确认</el-dropdown-item>
 | 
	
	
		
			
				|  | @@ -2290,7 +2290,7 @@
 | 
	
		
			
				|  |  |                <td colspan="3">{{ form.fCorpidName }}</td>
 | 
	
		
			
				|  |  |                <td>出库日期</td>
 | 
	
		
			
				|  |  |                <td colspan="2" v-if="Printinglist.length">
 | 
	
		
			
				|  |  | -                {{ Printinglist[0].fBsdate | fBsdateFormat }}
 | 
	
		
			
				|  |  | +                {{ Printinglist[0].fBsdate | fBsdateFormat }}{{" " + ckTime}}
 | 
	
		
			
				|  |  |                </td>
 | 
	
		
			
				|  |  |                <td colspan="2" v-else></td>
 | 
	
		
			
				|  |  |              </tr>
 | 
	
	
		
			
				|  | @@ -3560,6 +3560,7 @@ export default {
 | 
	
		
			
				|  |  |        tfGrossweightnum: 0,
 | 
	
		
			
				|  |  |        showApproval: null,
 | 
	
		
			
				|  |  |        allfPlanqty: 0,
 | 
	
		
			
				|  |  | +      ckTime: null,
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    created() {
 | 
	
	
		
			
				|  | @@ -5322,6 +5323,14 @@ export default {
 | 
	
		
			
				|  |  |              } else if (command == "c") {
 | 
	
		
			
				|  |  |                this.print_lhd = true;
 | 
	
		
			
				|  |  |              } else if (command == "d") {
 | 
	
		
			
				|  |  | +              let date = new Date();
 | 
	
		
			
				|  |  | +              let hours =
 | 
	
		
			
				|  |  | +                date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
 | 
	
		
			
				|  |  | +              let minutes =
 | 
	
		
			
				|  |  | +                date.getMinutes() < 10
 | 
	
		
			
				|  |  | +                  ? "0" + date.getMinutes()
 | 
	
		
			
				|  |  | +                  : date.getMinutes();
 | 
	
		
			
				|  |  | +              this.ckTime = hours + ":" + minutes ;
 | 
	
		
			
				|  |  |                this.print_bzckd = true;
 | 
	
		
			
				|  |  |              } else if (command == "e") {
 | 
	
		
			
				|  |  |                this.print_lwqr = true;
 |