| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <div> |
| | | <div class="body" :style="{height:mainHeight+'px'}"> |
| | | |
| | | <div class="bodyTopButtonGroup" style="justify-content: space-between"> |
| | | <div style="display: flex"> |
| | | <el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">æ°å¢</el-button> |
| | | <el-button v-waves type="success" icon="el-icon-connection" @click="send">æ´¾å</el-button> |
| | | </div> |
| | | |
| | | <!-- <el-button v-waves icon="el-icon-switch-button" @click="orderClose">å
³éå·¥å</el-button>--> |
| | | </div> |
| | | |
| | | <div class="bodyTopFormGroup"> |
| | | <el-form |
| | | ref="form" |
| | | :model="form" |
| | | label-width="100px" |
| | | inline |
| | | style="display: flex;" |
| | | > |
| | | <div class="elForm"> |
| | | <el-form-item label="车é´åç§°" style=" display: flex;"> |
| | | <el-select |
| | | v-model="form.wkshopcode" |
| | | filterable |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | > |
| | | <el-option |
| | | v-for="item in wkshopcodeArr" |
| | | :key="item.torg_code" |
| | | :label="item.torg_name" |
| | | :value="item.torg_code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="å·¥åç¶æ" style=" display: flex;"> |
| | | <el-select |
| | | v-model="form.mesorderstus" |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | filterable |
| | | @change="erporderstusChange" |
| | | > |
| | | <el-option |
| | | v-for="item in erporderstusArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="å·¥åç¼å·" style=" display: flex;"> |
| | | <el-input v-model="form.mesordercode" placeholder="请è¾å
¥" style="width: 200px" /> |
| | | </el-form-item> |
| | | <el-form-item label="æºååå·" style="display: flex;"> |
| | | <el-input v-model="form.sourceorder" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="éå®è®¢å" style="display: flex;"> |
| | | <el-input v-model="form.saleordercode" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="åæ®ç±»å" style=" display: flex;"> |
| | | <el-select |
| | | v-model="form.ordertype" |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | > |
| | | <!-- @change="mesordertypeChange"--> |
| | | <el-option |
| | | v-for="item in ordertypeArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="产åç¼ç " style=" display: flex;"> |
| | | <el-input v-model="form.partcode" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="产ååç§°" style=" display: flex;"> |
| | | <el-input v-model="form.partname" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="产åè§æ ¼" style=" display: flex;"> |
| | | <el-input v-model="form.partspec" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="å建人å" style=" display: flex;"> |
| | | <el-input v-model="form.creatuser" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <DateType |
| | | ref="DateTypeRef" |
| | | :is-expand-form="isExpandForm" |
| | | style="display:flex;justify-content: center;align-items: center;position: relative" |
| | | :datatype-list="datatypeList" |
| | | @DateTypeChange="DateTypeChange" |
| | | @cycleTimeChange="cycleTimeChange" |
| | | /> |
| | | </div> |
| | | |
| | | <div |
| | | class="bodySearchReset" |
| | | :style="{marginLeft:$store.state.app.sidebar.opened? $store.state.settings.menuIsHorizontal?'15%':'3%':'10%'}" |
| | | > |
| | | <el-button v-waves type="primary" icon="el-icon-search" @click="search">æ¥è¯¢</el-button> |
| | | <el-button v-waves type="info" icon="el-icon-refresh" @click="reset">éç½®</el-button> |
| | | </div> |
| | | |
| | | </el-form> |
| | | <div |
| | | class="bodyTopFormExpand" |
| | | > |
| | | <svg-icon |
| | | v-show="mouseHoverType==='mouseout'" |
| | | style="cursor: pointer" |
| | | :icon-class="!isExpandForm?'doubleDown3':'doubleUp3'" |
| | | @mouseenter="mouseHoverType=$event.type" |
| | | /> |
| | | <svg-icon |
| | | v-show="mouseHoverType==='mouseenter'" |
| | | style="cursor: pointer" |
| | | :icon-class="!isExpandForm?'doubleDown':'doubleUp'" |
| | | @click="isExpandForm=!isExpandForm" |
| | | @mouseout="mouseHoverType=$event.type" |
| | | /> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="elTableDiv"> |
| | | <el-table |
| | | ref="tableDataRef" |
| | | class="tableFixed" |
| | | :data="tableData" |
| | | :height="isExpandForm?tableHeight:(tableHeight+80)+'px'" |
| | | border |
| | | :row-class-name="tableRowClassName" |
| | | :style="{width: 100+'%',height:isExpandForm?tableHeight:(tableHeight+80)+'px'}" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | @sort-change="sortChange" |
| | | @row-click="rowClick" |
| | | @selection-change="handleSelectionChange" |
| | | > |
| | | <el-table-column |
| | | type="selection" |
| | | width="50" |
| | | :selectable="selected" |
| | | /> |
| | | <el-table-column |
| | | prop="rowNum" |
| | | width="50" |
| | | label="åºå·" |
| | | fixed |
| | | /> |
| | | <el-table-column |
| | | prop="status" |
| | | label="å·¥åç¶æ" |
| | | sortable="custom" |
| | | width="110" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.status==='NEW'">æ°å·¥å</div> |
| | | <!-- <div v-if="row.status==='CREATING'">æ§è¡ä¸</div>--> |
| | | <!-- <div v-if="row.status==='CREATED'">å·²å
³é</div>--> |
| | | <div v-if="row.status==='ALLO'">已派å</div> |
| | | <div v-if="row.status==='START'">å¼å·¥</div> |
| | | <div v-if="row.status==='CLOSED'">å®å·¥</div> |
| | | <div v-if="row.status==='NOSCHED'">å¾
æç¨</div> |
| | | <div v-if="row.status==='SCHED'">å·²æç¨</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="wo_code" |
| | | label="å·¥åç¼å·" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | min-width="160" |
| | | /> |
| | | <el-table-column |
| | | prop="m_po" |
| | | label="æºååå·" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | min-width="160" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.m_po">{{ row.m_po }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="saleOrderCode" |
| | | label="éå®è®¢å" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | min-width="160" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.saleOrderCode">{{ row.saleOrderCode }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="wotype" |
| | | label="åæ®ç±»å" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | min-width="120" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.wotype==='PO'">æ åå·¥å</div> |
| | | <div v-else-if="row.wotype==='FO'">æ¥åºè¡¥å</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="partcode" |
| | | label="产åç¼ç " |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | min-width="120" |
| | | /> |
| | | <el-table-column |
| | | prop="partname" |
| | | min-width="150" |
| | | label="产ååç§°" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="partspec" |
| | | label="产åè§æ ¼" |
| | | sortable="custom" |
| | | width="110" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.partspec">{{ row.partspec }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="plan_qty" |
| | | label="工忰" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | width="100" |
| | | /> |
| | | <el-table-column |
| | | prop="clerkuser" |
| | | label="éå®ä¸å¡å" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | width="150" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.clerkuser">{{ row.clerkuser }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="wkshp_name" |
| | | label="ç产车é´" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | width="120" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.wkshp_name">{{ row.wkshp_name }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="plan_startdate" |
| | | label="é¢è®¡å¼å·¥æ¥æ" |
| | | sortable="custom" |
| | | width="130" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.plan_startdate">{{ row.plan_startdate.substring(0, 11) }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="plan_enddate" |
| | | label="é¢è®¡å®å·¥æ¥æ" |
| | | sortable="custom" |
| | | width="130" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.plan_enddate">{{ row.plan_enddate.substring(0, 11) }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="saleOrderDeliveryDate" |
| | | label="é¢è®¡äº¤ä»æ¥æ" |
| | | sortable="custom" |
| | | width="130" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.saleOrderDeliveryDate">{{ row.saleOrderDeliveryDate.substring(0, 11) }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="data_sources"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- label="æ°æ®æ¥æº"--> |
| | | <!-- sortable="custom"--> |
| | | <!-- width="120"--> |
| | | <!-- />--> |
| | | |
| | | <el-table-column |
| | | prop="lm_user" |
| | | show-tooltip-when-overflow |
| | | label="å建人å" |
| | | sortable="custom" |
| | | width="120" |
| | | /> |
| | | <el-table-column |
| | | prop="lm_date" |
| | | label="å建æ¶é´" |
| | | show-tooltip-when-overflow |
| | | width="160" |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | label="æä½" |
| | | width="160" |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div class="operationClass"> |
| | | <el-tooltip class="item" effect="dark" content="ä¿®æ¹" placement="top"> |
| | | <i |
| | | class="el-icon-edit-outline" |
| | | :style="{color:$store.state.settings.theme}" |
| | | @click.stop="edit('edit',row)" |
| | | /> |
| | | </el-tooltip> |
| | | |
| | | <el-tooltip v-del-tab-index class="item" effect="dark" content="å é¤" placement="top"> |
| | | <i class="el-icon-delete" :style="{color:$store.state.settings.theme}" @click.stop="del(row)" /> |
| | | </el-tooltip> |
| | | |
| | | <el-tooltip class="item" effect="dark" content="æå°å·¥å" placement="top"> |
| | | <!-- <i--> |
| | | <!-- class="el-icon-tickets"--> |
| | | <!-- style="cursor: pointer;color: #42b983;margin-right: 15px"--> |
| | | <!-- @click="check(row)"--> |
| | | <!-- />--> |
| | | <i |
| | | :style="{color:$store.state.settings.theme}" |
| | | class="el-icon-printer" |
| | | style="cursor: pointer;margin-right: 15px" |
| | | @click.stop="handlePrint(row.wo_code)" |
| | | /> |
| | | </el-tooltip> |
| | | |
| | | <el-tooltip class="item" effect="dark" content="详æ
" placement="top"> |
| | | <i |
| | | class="el-icon-view" |
| | | style="cursor: pointer;" |
| | | :style="{color:$store.state.settings.theme}" |
| | | @click.stop="edit('view',row)" |
| | | /> |
| | | </el-tooltip> |
| | | |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | </div> |
| | | <!--å页--> |
| | | <pagination |
| | | :total="total" |
| | | :page.sync="form.page" |
| | | :limit.sync="form.rows" |
| | | align="right" |
| | | layout="total,prev, pager, next,sizes,jumper" |
| | | popper-class="select_bottom" |
| | | @pagination="getMesOrderSearch" |
| | | /> |
| | | |
| | | <div class="elTableDiv"> |
| | | <el-table |
| | | :data="tableDataDetail" |
| | | border |
| | | height="210px" |
| | | :row-class-name="tableRowClassName" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | > |
| | | <!-- <el-table-column--> |
| | | <!-- width="50"--> |
| | | <!-- type="index"--> |
| | | <!-- prop="åºå·"--> |
| | | <!-- fixed--> |
| | | <!-- /> --> |
| | | <el-table-column |
| | | width="50" |
| | | prop="seq" |
| | | label="åºå·" |
| | | fixed |
| | | /> |
| | | <el-table-column |
| | | prop="wo_code" |
| | | show-tooltip-when-overflow |
| | | label="å·¥åç¼å·" |
| | | width="160" |
| | | /> |
| | | |
| | | <!-- <el-table-column--> |
| | | <!-- prop="partcode"--> |
| | | <!-- label="产åç¼ç "--> |
| | | <!-- width="150"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- />--> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="partname"--> |
| | | <!-- label="产ååç§°"--> |
| | | <!-- width="200"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- />--> |
| | | |
| | | <el-table-column |
| | | label="å·¥åºç¼ç " |
| | | prop="step_code" |
| | | show-tooltip-when-overflow |
| | | width="150" |
| | | /> |
| | | <el-table-column |
| | | label="å·¥åºåç§°" |
| | | show-tooltip-when-overflow |
| | | prop="stepname" |
| | | width="150" |
| | | /> |
| | | <el-table-column |
| | | label="å·¥åºåä»·" |
| | | show-tooltip-when-overflow |
| | | prop="stepprice" |
| | | /> |
| | | <el-table-column |
| | | label="å·²ç产æ°é" |
| | | show-tooltip-when-overflow |
| | | prop="produceq_qty" |
| | | /> |
| | | <el-table-column |
| | | label="åæ ¼æ°é" |
| | | show-tooltip-when-overflow |
| | | prop="good_qty" |
| | | /> |
| | | <el-table-column |
| | | label="ä¸è¯æ°é" |
| | | show-tooltip-when-overflow |
| | | prop="ng_qty" |
| | | /> |
| | | <el-table-column |
| | | label="å·¥åºæ°é" |
| | | show-tooltip-when-overflow |
| | | prop="laborbad_qty" |
| | | /> |
| | | <el-table-column |
| | | label="æåºæ°é" |
| | | show-tooltip-when-overflow |
| | | prop="materielbad_qty" |
| | | /> |
| | | <el-table-column |
| | | label="å¾
产æ°é" |
| | | show-tooltip-when-overflow |
| | | prop="delive_qty" |
| | | /> |
| | | <!-- <el-table-column--> |
| | | <!-- label="æä½"--> |
| | | <!-- width="120"--> |
| | | <!-- fixed="right"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div class="operationClass">--> |
| | | <!-- <el-tooltip class="item" effect="dark" content="æå°å·¥åº" placement="top">--> |
| | | <!-- <i--> |
| | | <!-- v-if="tableDataDetail.length!==row.seq"--> |
| | | <!-- class="el-icon-printer"--> |
| | | <!-- :style="{color:$store.state.settings.theme}"--> |
| | | <!-- style="cursor: pointer;margin-right: 15px"--> |
| | | <!-- @click="supplementSmallClick(row)"--> |
| | | <!-- />--> |
| | | <!-- </el-tooltip>--> |
| | | <!-- <el-tooltip class="item" effect="dark" content="è¡¥æç产å
¥åºæ¡ç " placement="top">--> |
| | | <!-- <i--> |
| | | <!-- v-if="tableDataDetail.length===row.seq"--> |
| | | <!-- class=" el-icon-camera"--> |
| | | <!-- :style="{color:$store.state.settings.theme}"--> |
| | | <!-- style="cursor: pointer;margin-right: 15px"--> |
| | | <!-- @click="getProductInHouseLabCode(row.wo_code)"--> |
| | | <!-- />--> |
| | | <!-- </el-tooltip>--> |
| | | <!-- </div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | </el-table> |
| | | </div> |
| | | </div> |
| | | <!--æ°å¢æ´¾åå¯¹è¯æ¡--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | :title="operation==='add'?'æ°å¢':(operation==='edit'?'ä¿®æ¹':'详æ
')" |
| | | :visible.sync="dialogVisible" |
| | | width="1200px" |
| | | top="8vh" |
| | | :close-on-click-modal="false" |
| | | @closed="handleClose" |
| | | @close="handleClose" |
| | | > |
| | | <el-form |
| | | ref="dialogForm" |
| | | inline |
| | | :rules="dialogFormRules" |
| | | :model="dialogForm" |
| | | label-width="110px" |
| | | > |
| | | |
| | | <el-divider content-position="left">åºæ¬ä¿¡æ¯</el-divider> |
| | | |
| | | <el-form-item |
| | | label="å·¥åç¶æ" |
| | | prop="mesorderstus" |
| | | > |
| | | <el-select |
| | | v-model="dialogForm.mesorderstus" |
| | | disabled |
| | | filterable |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | > |
| | | <el-option |
| | | v-for="item in erporderstusArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label="å·¥åç¼å·" prop="mesordercode"> |
| | | <!-- <el-input v-model="dialogForm.mesordercode" :disabled="operation!=='add'" style="width: 200px" />--> |
| | | <el-input v-model="dialogForm.mesordercode" disabled style="width: 200px" /> |
| | | </el-form-item> |
| | | <!-- <div style="display: flex">--> |
| | | <el-form-item label="å·¥åç±»å" prop="mesorderstus"> |
| | | <el-select |
| | | v-model="dialogForm.ordertype" |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | :disabled="operation!=='add'" |
| | | placeholder="è¯·éæ©" |
| | | @change="mesordertypeChange" |
| | | > |
| | | <el-option |
| | | v-for="item in ordertypeArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <!-- <div style="display: flex;flex-wrap: nowrap">--> |
| | | <el-form-item label="æºååå·"> |
| | | <el-input |
| | | v-model="dialogForm.sourceorder" |
| | | :disabled="dialogForm.ordertype==='PO'" |
| | | style="width: 200px" |
| | | > |
| | | <el-button |
| | | slot="append" |
| | | icon="el-icon-search" |
| | | :disabled="operation!=='add'||dialogForm.ordertype==='PO'" |
| | | @click="mesordertsourcesearchclick" |
| | | /> |
| | | </el-input> |
| | | </el-form-item> |
| | | <!-- <el-button--> |
| | | <!-- v-waves--> |
| | | <!-- type="primary"--> |
| | | <!-- style="padding: 0 10px;margin-left: -8px;margin-top: 3px"--> |
| | | <!-- class="el-icon-search"--> |
| | | <!-- :disabled="operation!=='add'||dialogForm.ordertype==='PO'"--> |
| | | <!-- @click="mesordertsourcesearchclick"--> |
| | | <!-- />--> |
| | | <!-- </div>--> |
| | | <!-- </div>--> |
| | | <el-form-item label="工忰é" prop="mesqty"> |
| | | <el-input |
| | | v-model="dialogForm.mesqty" |
| | | oninput="value=value.replace(/[^\d]/g,'')" |
| | | style="width: 200px" |
| | | /> |
| | | <!-- oninput="value=value.replace(/[^0-9*.{1}0-9*]/g,'')"--> |
| | | </el-form-item> |
| | | <el-form-item |
| | | label="产ååç§°/ç¼ç " |
| | | prop="partcode" |
| | | > |
| | | <el-select |
| | | v-model="dialogForm.partcode" |
| | | filterable |
| | | :disabled="operation!=='add'" |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | @change="partcodeChangeDialog" |
| | | > |
| | | <el-option |
| | | v-for="item in partArr" |
| | | :key="item.partcode" |
| | | :label="item.partname+'/'+item.partcode" |
| | | :value="item.partcode" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <!-- <el-form-item v-if="operation!=='add'" label="产ååç§°" prop="partname">--> |
| | | <!-- <el-input v-model="dialogForm.partname" disabled style="width: 200px" />--> |
| | | <!-- </el-form-item>--> |
| | | <!-- <el-form-item v-if="operation!=='add'" label="产åç¼ç ">--> |
| | | <!-- <el-input v-model="dialogForm.partcode" disabled style="width: 200px" />--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="产åè§æ ¼" prop="partspec"> |
| | | <el-input v-model="dialogForm.partspec" disabled style="width: 200px" /> |
| | | </el-form-item> |
| | | <!-- :disabled="dialogForm.partcode===''"--> |
| | | <el-form-item label="æå±è½¦é´" prop="wkshopcode"> |
| | | <el-select |
| | | v-model="dialogForm.wkshopcode" |
| | | filterable |
| | | :popper-append-to-body="false" |
| | | style="width: 200px;" |
| | | placeholder="è¯·éæ©è½¦é´" |
| | | @change="getMesOrderNewStepContent" |
| | | > |
| | | <el-option |
| | | v-for="item in wkshopArr" |
| | | :key="item.torg_code" |
| | | :label="item.torg_name" |
| | | :value="item.torg_code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="é¢è®¡äº¤ä»æ¥æ" prop="deliverydate"> |
| | | <el-date-picker |
| | | v-model="dialogForm.deliverydate" |
| | | type="date" |
| | | size="mini" |
| | | :clearable="false" |
| | | class="dateMini" |
| | | :picker-options="pickerOptions" |
| | | format="yyyy-MM-dd" |
| | | value-format="yyyy-MM-dd" |
| | | placeholder="éæ©æ¥æ" |
| | | /> |
| | | <!-- :disabled="dialogForm.deliverydate"--> |
| | | </el-form-item> |
| | | |
| | | <el-divider content-position="left">å·¥åºä¿¡æ¯</el-divider> |
| | | |
| | | <div style="display: flex;align-items: center"> |
| | | <div style="font-weight: bolder">å·¥åºéæ©ï¼</div> |
| | | <el-drag-select |
| | | v-model="stepSelectedValue" |
| | | style="width:930px;" |
| | | multiple |
| | | placeholder="è¯·éæ©ç¸å¯¹åºå·¥åº" |
| | | @change="stepSelectedValueChange" |
| | | > |
| | | <!-- :disabled="!(dialogForm.mesorderstus==='NEW'||dialogForm.mesorderstus==='ALLO')"--> |
| | | <el-option |
| | | v-for="item in stepSelectArr" |
| | | :key="item.stepcode" |
| | | :label="item.stepname" |
| | | :value="item.stepcode" |
| | | /> |
| | | </el-drag-select> |
| | | </div> |
| | | |
| | | <el-table |
| | | ref="stepTableDataRef" |
| | | :data="stepTableData" |
| | | border |
| | | :row-class-name="tableRowClassName" |
| | | height="300" |
| | | style="width: 100%;margin-top: 15px;" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | row-key="stepcode" |
| | | > |
| | | <el-table-column |
| | | type="index" |
| | | label="åºå·" |
| | | width="50" |
| | | /> |
| | | <el-table-column |
| | | prop="stepcode" |
| | | show-tooltip-when-overflow |
| | | label="å·¥åºç¼ç " |
| | | /> |
| | | <el-table-column |
| | | prop="stepname" |
| | | label="å·¥åºåç§°" |
| | | show-tooltip-when-overflow |
| | | /> |
| | | <el-table-column |
| | | prop="stepprice" |
| | | label="ç产åä»·" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-input |
| | | v-model="row.stepprice" |
| | | placeholder="请è¾å
¥å·¥åºåä»·" |
| | | oninput="value=value.replace(/[^0-9.]/g,'')" |
| | | style="width: 100%" |
| | | @click.stop="" |
| | | /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="æä½" |
| | | width="120" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div class="operationClass"> |
| | | <!-- <el-tooltip class="item" effect="dark" content="ç§»å¨" placement="top">--> |
| | | <i |
| | | class="el-icon-rank" |
| | | :style="{color:$store.state.settings.theme}" |
| | | style="cursor: move" |
| | | /> |
| | | <!-- </el-tooltip>--> |
| | | <!-- @click="edit('edit',row)"--> |
| | | |
| | | <el-tooltip v-del-tab-index class="item" effect="dark" content="å é¤" placement="top"> |
| | | <i |
| | | class="el-icon-delete" |
| | | :style="{color:$store.state.settings.theme}" |
| | | style="margin-left: 15px;" |
| | | @click="stepDel(row)" |
| | | /> |
| | | </el-tooltip> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | |
| | | </el-form> |
| | | |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="dialogVisibleCancel">å æ¶</el-button> |
| | | <!-- <el-button v-waves v-if="operation==='add'" type="primary" @click="dialogVisibleConfirmPreview('add')">é¢è§</el-button>--> |
| | | <el-button |
| | | v-if="operation!=='view'&&(dialogForm.mesorderstus==='NEW'||dialogForm.mesorderstus==='ALLO')" |
| | | v-waves |
| | | type="primary" |
| | | :loading="$store.state.app.buttonIsDisabled" |
| | | :disabled="$store.state.app.buttonIsDisabled" |
| | | @click="dialogVisibleConfirm" |
| | | >ç¡® å®</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | <!-- å·¥åºä»»å¡å¯¹è¯æ¡--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | title="å·¥åºä»»å¡" |
| | | :visible.sync="dialogVisibleTask" |
| | | width="840px" |
| | | top="15vh" |
| | | class="dialogVisibleSearch" |
| | | :close-on-click-modal="false" |
| | | @close="dialogVisibleTaskClose" |
| | | > |
| | | <el-button |
| | | v-waves |
| | | style="margin-bottom: 15px" |
| | | type="primary" |
| | | @click="supplementClick" |
| | | >è¡¥æ |
| | | </el-button> |
| | | <el-table |
| | | :data="taskTableData" |
| | | border |
| | | :row-class-name="tableRowClassName" |
| | | height="300" |
| | | style="width: 100%;" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | > |
| | | <el-table-column |
| | | prop="seq" |
| | | width="50" |
| | | label="åºå·" |
| | | fixed |
| | | /> |
| | | <el-table-column |
| | | prop="wo_code" |
| | | show-tooltip-when-overflow |
| | | label="å·¥åç¼å·" |
| | | width="200" |
| | | /> |
| | | <el-table-column |
| | | prop="stepcode" |
| | | label="å·¥åºç¼ç " |
| | | show-tooltip-when-overflow |
| | | /> |
| | | <el-table-column |
| | | prop="stepname" |
| | | show-tooltip-when-overflow |
| | | label="å·¥åºåç§°" |
| | | /> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="flwtype"--> |
| | | <!-- label="å·¥åºç±»å"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div v-if="row.flwtype==='W'">å¤å</div>--> |
| | | <!-- <div v-if="row.flwtype==='Z'">èªå¶</div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="descr"--> |
| | | <!-- label="å·¥åºæè¿°"--> |
| | | <!-- />--> |
| | | <el-table-column |
| | | prop="plan_qty" |
| | | show-tooltip-when-overflow |
| | | label="任塿°é" |
| | | /> |
| | | <el-table-column |
| | | prop="good_qty" |
| | | show-tooltip-when-overflow |
| | | label="åæ ¼æ°é" |
| | | /> |
| | | <el-table-column |
| | | prop="ng_qty" |
| | | show-tooltip-when-overflow |
| | | label="ä¸è¯æ°é" |
| | | /> |
| | | <el-table-column |
| | | label="æä½" |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-button v-waves type="text" style="padding: 0;" @click="supplementSmallClick(row)">è¡¥æ</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="dialogVisibleBack">è¿ å</el-button> |
| | | <!-- <el-button v-waves type="primary" @click="dialogVisibleConfirm">ç¡® å®</el-button>--> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | <!-- æºååå·å¯¹è¯æ¡--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | title="æºååå·" |
| | | :visible.sync="dialogVisibleSource" |
| | | width="1200px" |
| | | top="10vh" |
| | | class="dialogVisibleSearch" |
| | | :close-on-click-modal="false" |
| | | @close="dialogVisibleSourceClose" |
| | | > |
| | | <div class="bodyTopFormGroup"> |
| | | <el-form |
| | | ref="sourceForm" |
| | | :model="sourceForm" |
| | | label-width="100px" |
| | | inline |
| | | style="display: flex;justify-content: space-between" |
| | | > |
| | | <div class="elForm" style="justify-content: flex-start"> |
| | | <!-- <el-form-item--> |
| | | <!-- label="é¢è®¡å¼å·¥æ¶é´"--> |
| | | <!-- label-width="100px"--> |
| | | <!-- style=" display: flex;font-size: 14px;margin-top: 3px"--> |
| | | <!-- >--> |
| | | <!-- <el-date-picker--> |
| | | <!-- v-model="sourceForm.paystartdate"--> |
| | | <!-- type="daterange"--> |
| | | <!-- range-separator="~"--> |
| | | <!-- class="timeMini"--> |
| | | <!-- size="mini"--> |
| | | <!-- style="width: 200px;display: flex;line-height: 34px;height: 34px;font-size: 14px!important;"--> |
| | | <!-- :clearable="false"--> |
| | | <!-- start-placeholder="å¼å§æ¥æ"--> |
| | | <!-- end-placeholder="ç»ææ¥æ"--> |
| | | <!-- />--> |
| | | <!-- <!– :picker-options="expireTimeOption"–>--> |
| | | |
| | | <!-- </el-form-item>--> |
| | | <!-- <el-form-item--> |
| | | <!-- label="é¢è®¡å®å·¥æ¶é´"--> |
| | | <!-- label-width="100px"--> |
| | | <!-- style=" display: flex;font-size: 14px;margin-top: 3px"--> |
| | | <!-- >--> |
| | | <!-- <el-date-picker--> |
| | | <!-- v-model="sourceForm.payenddate"--> |
| | | <!-- type="daterange"--> |
| | | <!-- :clearable="false"--> |
| | | <!-- class="timeMini"--> |
| | | <!-- range-separator="~"--> |
| | | <!-- start-placeholder="å¼å§æ¥æ"--> |
| | | <!-- style="width: 200px;display: flex;line-height: 34px ;height: 34px ;font-size: 14px !important;"--> |
| | | <!-- end-placeholder="ç»ææ¥æ"--> |
| | | <!-- size="mini"--> |
| | | <!-- />--> |
| | | <!-- </el-form-item>--> |
| | | <!-- <el-form-item label="å·¥åç¶æ" style=" display: flex;">--> |
| | | <!-- <el-select--> |
| | | <!-- v-model="sourceForm.mesordercode"--> |
| | | <!-- filterable--> |
| | | <!-- :popper-append-to-body="false"--> |
| | | <!-- style="width: 200px"--> |
| | | <!-- placeholder="è¯·éæ©"--> |
| | | <!-- >--> |
| | | <!-- <el-option--> |
| | | <!-- v-for="item in erporderstusArr"--> |
| | | <!-- :key="item.code"--> |
| | | <!-- :label="item.name"--> |
| | | <!-- :value="item.code"--> |
| | | <!-- />--> |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="车é´åç§°" style=" display: flex;"> |
| | | <el-select |
| | | v-model="sourceForm.wkshopcode" |
| | | filterable |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | > |
| | | <el-option |
| | | v-for="item in wkshopcodeArr" |
| | | :key="item.torg_code" |
| | | :label="item.torg_name" |
| | | :value="item.torg_code" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="å·¥åç¼å·" style=" display: flex;"> |
| | | <el-input v-model="sourceForm.mesordercode" placeholder="请è¾å
¥" style="width: 200px" /> |
| | | </el-form-item> |
| | | <el-form-item label="产åç¼ç " style=" display: flex;"> |
| | | <el-input v-model="sourceForm.partcode" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | |
| | | <el-form-item v-show="isExpandDialog" label="产ååç§°" style=" display: flex;"> |
| | | <el-input v-model="sourceForm.partname" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | <!-- <el-form-item v-show="isExpandDialog" label="产åè§æ ¼" style=" display: flex;">--> |
| | | <!-- <el-input v-model="sourceForm.partspec" style="width: 200px" placeholder="请è¾å
¥" />--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item v-show="isExpandDialog" label="å建人å" style=" display: flex;"> |
| | | <el-input v-model="sourceForm.creatuser" style="width: 200px" placeholder="请è¾å
¥" /> |
| | | </el-form-item> |
| | | |
| | | <el-form-item |
| | | v-show="isExpandDialog" |
| | | label="å建æ¶é´" |
| | | label-width="100px" |
| | | style=" display: flex;font-size: 14px;margin-top: 3px" |
| | | > |
| | | <el-date-picker |
| | | v-model="sourceForm.createdate" |
| | | type="daterange" |
| | | range-separator="~" |
| | | class="timeMini" |
| | | size="mini" |
| | | style="width: 200px;display: flex;line-height: 34px;height: 34px;font-size: 14px!important;" |
| | | :clearable="false" |
| | | start-placeholder="å¼å§æ¥æ" |
| | | end-placeholder="ç»ææ¥æ" |
| | | /> |
| | | <!-- :picker-options="expireTimeOption"--> |
| | | |
| | | </el-form-item> |
| | | |
| | | </div> |
| | | |
| | | <div style="display: flex;align-items: start;margin-top: 3px;z-index: 2;justify-content: end"> |
| | | <el-button v-waves type="primary" icon="el-icon-search" @click="sourceSearch">æ¥è¯¢</el-button> |
| | | <el-button v-waves type="info" icon="el-icon-refresh" @click="sourceReset">éç½®</el-button> |
| | | </div> |
| | | |
| | | </el-form> |
| | | <div |
| | | class="bodyTopFormExpand" |
| | | > |
| | | <svg-icon |
| | | v-show="mouseHoverTypeDialog==='mouseout'" |
| | | style="cursor: pointer" |
| | | :icon-class="!isExpandDialog?'doubleDown3':'doubleUp3'" |
| | | @mouseenter="mouseHoverTypeDialog=$event.type" |
| | | /> |
| | | <svg-icon |
| | | v-show="mouseHoverTypeDialog==='mouseenter'" |
| | | style="cursor: pointer" |
| | | :icon-class="!isExpandDialog?'doubleDown':'doubleUp'" |
| | | @click="isExpandDialog=!isExpandDialog" |
| | | @mouseout="mouseHoverTypeDialog=$event.type" |
| | | /> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="elTableDiv"> |
| | | <el-table |
| | | :data="sourceTableData" |
| | | :height="isExpandDialog?(tableHeight+100)+'px':(tableHeight+140)+'px'" |
| | | border |
| | | :row-class-name="tableRowClassName" |
| | | :style="{width: 100+'%',height:isExpandDialog?(tableHeight+100)+'px':(tableHeight+140)+'px',}" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | @sort-change="sourceSortChange" |
| | | @row-click="getCurrentRowSource" |
| | | > |
| | | <!-- <el-table-column--> |
| | | <!-- type="selection"--> |
| | | <!-- width="50"--> |
| | | <!-- />--> |
| | | <el-table-column |
| | | width="50" |
| | | fixed |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-radio |
| | | v-model="radioSelectedId" |
| | | :label="row.id" |
| | | style="color: transparent;padding-left: 10px;" |
| | | /> |
| | | <!-- @change.native="getCurrentRowSource(row.id)"--> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="rowNum" |
| | | width="50" |
| | | fixed |
| | | label="åºå·" |
| | | /> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="status"--> |
| | | <!-- label="å·¥åç¶æ"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- sortable="custom"--> |
| | | <!-- width="110"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div v-if="row.status==='NEW'">æ°è®¢å</div>--> |
| | | <!-- <div v-if="row.status==='CREATING'">é¨åä¸è¾¾</div>--> |
| | | <!-- <div v-if="row.status==='CREATED'">å
¨é¨ä¸è¾¾</div>--> |
| | | <!-- <div v-if="row.status==='CLOSED'">å·²å
³é</div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column |
| | | label="å·¥åç¼å·" |
| | | prop="wo_code" |
| | | show-tooltip-when-overflow |
| | | min-width="150" |
| | | sortable="custom" |
| | | > |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div v-if="row.m_po">{{ row.m_po }}</div>--> |
| | | <!-- <div v-else>{{ row.wo_code }}</div>--> |
| | | <!-- </template>--> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="partcode" |
| | | label="产åç¼ç " |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | min-width="150" |
| | | /> |
| | | <el-table-column |
| | | prop="partname" |
| | | label="产ååç§°" |
| | | sortable="custom" |
| | | show-tooltip-when-overflow |
| | | min-width="150" |
| | | /> |
| | | <el-table-column |
| | | prop="partspec" |
| | | label="产åè§æ ¼" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | min-width="110" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.partspec">{{ row.partspec }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="plan_qty" |
| | | label="任塿°é" |
| | | width="150" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | /> |
| | | |
| | | <el-table-column |
| | | prop="laborbad_qty" |
| | | label="å·¥åºæ°é" |
| | | width="150" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | /> |
| | | <el-table-column |
| | | prop="materielbad_qty" |
| | | label="æåºæ°é" |
| | | width="150" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | /> |
| | | |
| | | <!-- <el-table-column--> |
| | | <!-- prop="relse_qty"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- label="å·²ä¸åæ°é"--> |
| | | <!-- width="150"--> |
| | | <!-- sortable="custom"--> |
| | | <!-- />--> |
| | | <el-table-column |
| | | prop="wkshp_name" |
| | | label="ç产车é´" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | width="150" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.wkshp_name">{{ row.wkshp_name }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="plan_startdate"--> |
| | | <!-- label="é¢è®¡å¼å·¥æ¶é´"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- sortable="custom"--> |
| | | <!-- width="130"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div v-if="row.plan_startdate">{{ row.plan_startdate.substring(0, 11) }}</div>--> |
| | | <!-- <div v-else>/</div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <!-- <el-table-column--> |
| | | <!-- prop="plan_enddate"--> |
| | | <!-- label="é¢è®¡å®å·¥æ¶é´"--> |
| | | <!-- show-tooltip-when-overflow--> |
| | | <!-- sortable="custom"--> |
| | | <!-- width="130"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div v-if="row.plan_enddate">{{ row.plan_enddate.substring(0, 11) }}</div>--> |
| | | <!-- <div v-else>/</div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column |
| | | prop="lm_user" |
| | | label="å建人å" |
| | | show-tooltip-when-overflow |
| | | sortable="custom" |
| | | width="150" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.lm_user">{{ row.lm_user }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="lm_date" |
| | | label="å建æ¶é´" |
| | | show-tooltip-when-overflow |
| | | width="130" |
| | | sortable="custom" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.lm_date">{{ row.lm_date.substring(0, 11) }}</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column--> |
| | | <!-- label="æä½"--> |
| | | <!-- fixed="right"--> |
| | | <!-- width="80"--> |
| | | <!-- >--> |
| | | <!-- <template slot-scope="{row}">--> |
| | | <!-- <div class="operationClass">--> |
| | | <!-- <el-tooltip class="item" effect="dark" content="ä¸è¾¾" placement="top">--> |
| | | <!-- <!– <el-button v-waves type="text" @click="edit('edit',row)">ä¸è¾¾</el-button>–>--> |
| | | <!-- <i--> |
| | | <!-- class="el-icon-bottom"--> |
| | | <!-- style="color:#42b983;cursor: pointer;margin-left: 5px"--> |
| | | <!-- @click="edit('edit',row)"--> |
| | | <!-- />--> |
| | | <!-- </el-tooltip>--> |
| | | <!-- </div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | </el-table> |
| | | </div> |
| | | <!--å页--> |
| | | <pagination |
| | | :total="sourceFormTotal" |
| | | :page.sync="sourceForm.page" |
| | | :limit.sync="sourceForm.rows" |
| | | align="right" |
| | | layout="total,prev, pager, next,sizes" |
| | | popper-class="select_bottom" |
| | | @pagination="getMesBadOrderSearch" |
| | | /> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="dialogVisibleSourceBack">è¿ å</el-button> |
| | | <el-button v-waves type="primary" @click="dialogVisibleSourceConfirm">ç¡® å®</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | <!--æå°é¢è§å¯¹è¯æ¡ 大æ ç¾--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | title="" |
| | | :visible.sync="dialogVisibleApprove" |
| | | width="812px" |
| | | class="dialogVisibleConfirmClass" |
| | | append-to-body |
| | | :close-on-click-modal="false" |
| | | @close="dialogVisibleConfirmClose" |
| | | > |
| | | <!-- è¦æå°çåºå --> |
| | | <div id="printMe" style="padding: 30px"> |
| | | <div style="font-size: 26px; text-align: center">æµç¨å</div> |
| | | |
| | | <div style="display: flex;justify-content: space-around;margin-top: 20px; position: relative;"> |
| | | <div style="width: 78%"> |
| | | <el-form |
| | | ref="formApprove" |
| | | :model="formApprove" |
| | | label-width="80px" |
| | | inline |
| | | style="display: flex;justify-content: space-between" |
| | | > |
| | | <div class="elForm"> |
| | | <el-form-item label="å·¥åç¼å·:" class="formContent"> |
| | | {{ formApprove.mesordercode }} |
| | | </el-form-item> |
| | | <el-form-item label="æºååå·:" class="formContent"> |
| | | {{ formApprove.m_po }} |
| | | </el-form-item> |
| | | <el-form-item label="产åç¼ç :" class="formContent"> |
| | | {{ formApprove.partcode }} |
| | | </el-form-item> |
| | | <el-form-item label="产ååç§°:" class="formContent"> |
| | | {{ formApprove.partname }} |
| | | </el-form-item> |
| | | <el-form-item label="产åè§æ ¼:" class="formContent"> |
| | | {{ formApprove.partspec }} |
| | | </el-form-item> |
| | | <el-form-item label="工忰é:" class="formContent"> |
| | | {{ formApprove.plan_qty }} |
| | | </el-form-item> |
| | | <!-- <el-form-item label="å·¥èºè·¯çº¿:" class="formContent">--> |
| | | <!-- {{ formApprove.routename }}--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="æå°äººå:" class="formContent"> |
| | | <!-- {{ localStorage.getItem('username') }}--> |
| | | {{ formApprove.routename }} |
| | | </el-form-item> |
| | | <el-form-item label="æå°æ¶é´:" class="formContent"> |
| | | {{ formApprove.lm_date }} |
| | | </el-form-item> |
| | | </div> |
| | | </el-form> |
| | | </div> |
| | | <div |
| | | id="qrCode" |
| | | style="width: 22%;height:90px; |
| | | margin-top: 20px; |
| | | overflow-y: scroll;display: flex; |
| | | justify-content: center; |
| | | position: relative;" |
| | | > |
| | | <div id="qrCode0" ref="qrCodeDiv0" /> |
| | | </div> |
| | | <div style="background-color: #fff;width: 20px;height:120px; position: absolute;right: 0" /> |
| | | <div |
| | | style="z-index: 10;background-color:transparent;width: 120px;height:120px; position: absolute;right: 21px" |
| | | /> |
| | | </div> |
| | | |
| | | <!-- <div style="width:100%;height: 30px;border-bottom: 1px solid #eee;margin-bottom: 20px" />--> |
| | | <el-table |
| | | id="table" |
| | | :data="tableDataPrint" |
| | | border |
| | | class="tableDataPrint" |
| | | :header-cell-style="{ background: '#c0c0c0',textAlign:'center',color:'#000',borderColor:'#000'}" |
| | | :cell-style="{textAlign: 'center',color:'#000',borderColor:'#000'}" |
| | | style="width: 100%;margin-top: 20px;text-align: center;border-color: #000" |
| | | > |
| | | <el-table-column |
| | | id="column0" |
| | | prop="seq" |
| | | label="å·¥åºå·" |
| | | width="70" |
| | | align="center" |
| | | /> |
| | | <el-table-column |
| | | id="column1" |
| | | prop="stepqrcode" |
| | | label="å·¥åºäºç»´ç " |
| | | width="100" |
| | | align="center" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div :id="'qrCode'+row.seq" :ref="'qrCodeDiv'+row.seq" class="tableColumn" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | id="column2" |
| | | prop="stepname" |
| | | label="å·¥åº" |
| | | width="120" |
| | | align="center" |
| | | /> |
| | | <el-table-column |
| | | id="column3" |
| | | prop="plan_qty" |
| | | label="å å·¥æ°é" |
| | | width="100" |
| | | align="center" |
| | | /> |
| | | <el-table-column |
| | | id="column4" |
| | | prop="good_qty" |
| | | width="100" |
| | | align="center" |
| | | label="åæ ¼æ°é" |
| | | /> |
| | | <el-table-column |
| | | id="column5" |
| | | width="100" |
| | | prop="ng_qty" |
| | | align="center" |
| | | label="ä¸è¯æ°é" |
| | | /> |
| | | <el-table-column |
| | | id="column6" |
| | | prop="desc" |
| | | align="center" |
| | | width="120" |
| | | label="夿³¨" |
| | | /> |
| | | </el-table> |
| | | </div> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="dialogVisibleBackPreview">è¿ å</el-button> |
| | | <!-- <el-button v-waves v-if="operation==='add'" type="primary" @click="dialogVisibleConfirm">ç¡® å®</el-button>--> |
| | | <!-- <el-button v-waves type="primary" @click="dialogVisibleConfirm">ç¡® å®/æ å°</el-button>--> |
| | | <el-button v-waves v-print="printObj" type="primary">æ å°</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | <!--æå°é¢è§é¡µé¢ å°æ ç¾--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | title="é¢è§" |
| | | :visible.sync="dialogVisible2" |
| | | width="1000" |
| | | top="10vh" |
| | | :close-on-click-modal="false" |
| | | @close="dialogVisible2Close" |
| | | > |
| | | <div style="height: 650px;overflow:auto;"> |
| | | <!-- 䏿æ¡éæ©æå°å°ºå¯¸--> |
| | | <div v-if="!isLastPrint" style="display: flex;align-items: center;margin: 0 0 20px 0"> |
| | | <div>éæ©æå°å°ºå¯¸ï¼</div> |
| | | <el-select |
| | | v-model="printSize" |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="è¯·éæ©" |
| | | @change="printSizeChange" |
| | | > |
| | | |
| | | <el-option |
| | | v-for="item in printSizeSelectArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </div> |
| | | <!-- è¦æå°çåºå --> |
| | | <!-- <div id="printMe2" :style="{paddingLeft:'10px',paddingTop: '5px'}">--> |
| | | <div v-if="!isLastPrint" :style="printMe2StylePadding(printSize)"> |
| | | <!-- 80 * 50--> |
| | | <div |
| | | v-if="printSize===0" |
| | | style="display: flex;width: 280px;height: 160px;border: 1px solid #000;text-align: center;font-size: 10px;" |
| | | > |
| | | |
| | | <div style="width: 90px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 96px;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode2" |
| | | ref="qrCodeDiv2" |
| | | style="overflow-y: hidden;height:60px;position: absolute;left: 14px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 32px;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 5px;width: 28px">æ°é:</div> |
| | | {{ qrForm.startqty }} |
| | | </div> |
| | | <div style="display: flex;height: 32px;justify-content: flex-start;align-items: center"> |
| | | <div style="margin-left: 5px;width: 42px">å¤ç人:</div> |
| | | {{ qrForm.operator }} |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:190px;display: flex;flex-direction: column"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å·¥åç¼å·:</div> |
| | | <div>{{ qrForm.wo_code }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center ;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">产åç¼ç :</div> |
| | | <div>{{ qrForm.partcode }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产ååç§°:</div> |
| | | <div>{{ qrForm.partname }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">ä¸éå·¥åº:</div> |
| | | <div>{{ qrForm.nextstepname }}</div> |
| | | </div> |
| | | <div style="display: flex;height: 20%;justify-content: flex-start;align-items: center;text-align: left"> |
| | | <div style="width: 60px;margin-left: 5px;">å¤çæ¶é´:</div> |
| | | <div>{{ qrForm.operatorTime }}</div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | <!-- 78 * 60 --> |
| | | <div |
| | | v-if="printSize===1" |
| | | style="display: flex;width: 280px;height: 160px;border: 1px solid #000;text-align: center;font-size: 10px;" |
| | | > |
| | | |
| | | <div style="width: 90px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 96px;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode2" |
| | | ref="qrCodeDiv2" |
| | | style="overflow-y: hidden;height:60px;position: absolute;left: 14px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 32px;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 5px;width: 28px">æ°é:</div> |
| | | {{ qrForm.startqty }} |
| | | </div> |
| | | <div style="display: flex;height: 32px;justify-content: flex-start;align-items: center"> |
| | | <div style="margin-left: 5px;width: 42px">å¤ç人:</div> |
| | | {{ qrForm.operator }} |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:190px;display: flex;flex-direction: column"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å·¥åç¼å·:</div> |
| | | <div>{{ qrForm.wo_code }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center ;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">产åç¼ç :</div> |
| | | <div>{{ qrForm.partcode }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产ååç§°:</div> |
| | | <div>{{ qrForm.partname }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">ä¸éå·¥åº:</div> |
| | | <div>{{ qrForm.nextstepname }}</div> |
| | | </div> |
| | | <div style="display: flex;height: 20%;justify-content: flex-start;align-items: center;text-align: left"> |
| | | <div style="width: 60px;margin-left: 5px;">å¤çæ¶é´:</div> |
| | | <div>{{ qrForm.operatorTime }}</div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | <!-- 60 * 40 --> |
| | | <div |
| | | v-if="printSize===2" |
| | | style="display: flex;width: 220px;height: 130px;border: 1px solid #000;text-align: center;font-size: 12px" |
| | | > |
| | | |
| | | <div style="width: 70px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 60%;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode2" |
| | | ref="qrCodeDiv2" |
| | | style="overflow-y: hidden;height:71%;position: absolute;left: 7px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 3px; ">æ°é:{{ qrForm.startqty }}</div> |
| | | </div> |
| | | <div style="display: flex;height: 20%;justify-content: flex-start;align-items: center;"> |
| | | <div style="margin-left: 3px; ">æä½:{{ qrForm.operator }}</div> |
| | | |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:150px;display: flex;flex-direction: column"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="margin-left: 3px;">ç¼å·:{{ qrForm.wo_code }}</div> |
| | | |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center ;text-align: left" |
| | | > |
| | | <div style="margin-left: 3px;">产åç¼ç :{{ qrForm.partcode }}</div> |
| | | |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="margin-left: 3px;">产ååç§°:{{ qrForm.partname }}</div> |
| | | |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="margin-left: 3px;">ä¸éå·¥åº:{{ qrForm.nextstepname }}</div> |
| | | |
| | | </div> |
| | | <div style="display: flex;height: 20%;justify-content: flex-start;align-items: center;text-align: left"> |
| | | <div style=" margin-left: 3px;">æ¶é´: {{ qrForm.operatorTime }}</div> |
| | | <!-- <div>{{ qrForm.operatorTime?qrForm.operatorTime.substring(5):'' }}</div>--> |
| | | <!-- <div>{{ qrForm.operatorTime }}</div>--> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | <div |
| | | v-if="printSize===5" |
| | | style="display: flex;width: 140px;height: 80px;border: 1px solid #000;text-align: center;font-size: 10px;" |
| | | > |
| | | |
| | | <div v-if="false" style="width: 45px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 60px;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode2" |
| | | ref="qrCodeDiv2" |
| | | style="overflow-y: hidden;height:60px;position: absolute;left: 14px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20px;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 5px;width: 28px">æ°é:</div> |
| | | {{ qrForm.startqty }} |
| | | </div> |
| | | <div style="display: flex;height: 20px;justify-content: flex-start;align-items: center"> |
| | | <div style="margin-left: 5px;width: 42px">å¤ç人:</div> |
| | | {{ qrForm.operator }} |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:100%;display: flex;flex-direction: column;"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: center;align-items: center;text-align: left" |
| | | > |
| | | <!-- <div style="width: 60px;margin-left: 5px;">å·¥åç¼å·:</div>--> |
| | | <div>{{ qrForm.wo_code }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: center;align-items: center ;text-align: left" |
| | | > |
| | | <!-- <div style="width: 60px;margin-left: 5px;">产åç¼ç :</div>--> |
| | | <div>{{ qrForm.partcode }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: center;align-items: center;text-align: left" |
| | | > |
| | | <!-- <div style="width:60px;margin-left: 5px;">产ååç§°:</div>--> |
| | | <div>{{ qrForm.partname }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: center;align-items: center;text-align: left" |
| | | > |
| | | <!-- <div style="width:60px;margin-left: 5px;">ä¸éå·¥åº:</div>--> |
| | | <div>{{ qrForm.nextstepname }}</div> |
| | | </div> |
| | | <div style="display: flex;height: 20%;justify-content: center;align-items: center;text-align: left"> |
| | | <!-- <div style="width: 60px;margin-left: 5px;">å¤çæ¶é´:</div>--> |
| | | <div>{{ qrForm.operatorTime }}</div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | </div> |
| | | |
| | | <div v-if="isLastPrint" style="display: flex;flex-direction: column"> |
| | | |
| | | <div style="display: flex;font-weight: bold;font-size: 16px;margin-bottom: 20px;"> |
| | | <div style="width: 48%;"> |
| | | è¯·éæ©å
¥åºæ¡ç |
| | | </div> |
| | | <div style="width: 48%;margin-left: 4%;"> |
| | | å·²éä¸çå
¥åºæ¡ç |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="display: flex;"> |
| | | <!-- è¯·éæ©å
¥åºæ¡ç --> |
| | | <div style="display: flex;flex-direction: column;height: 600px;overflow: auto;width: 48%;"> |
| | | <div |
| | | v-for="(item,index) in lastPrintArr" |
| | | :key="item.inbarcode" |
| | | :style="{marginTop:index===0?'':'15px'}" |
| | | style="display: flex;align-items: center;" |
| | | > |
| | | |
| | | <!-- v-if="printSize===0"--> |
| | | <div style="margin-right:40px"> |
| | | <el-checkbox |
| | | :key="item.inbarcode" |
| | | v-model="item.checked" |
| | | @change="val=>inbarcodeChange(val,item)" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;width: 280px;height: 160px;border: 1px solid #000;text-align: center;font-size: 10px;" |
| | | > |
| | | |
| | | <div style="width: 90px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 96px;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode2" |
| | | ref="qrCodeDiv2" |
| | | style="overflow-y: hidden;height:60px;position: absolute;left: 14px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 32px;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 5px;width: 28px">æ°é:</div> |
| | | {{ item.good_qty }} |
| | | </div> |
| | | <div style="display: flex;height: 32px;justify-content: flex-start;align-items: center"> |
| | | <div style="margin-left: 5px;width: 42px">å¤ç人:</div> |
| | | {{ item.username }} |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:190px;display: flex;flex-direction: column"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å·¥åç¼å·:</div> |
| | | <div>{{ item.wo_code }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center ;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">产åç¼ç :</div> |
| | | <div>{{ item.partcode }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产ååç§°:</div> |
| | | <div>{{ item.partname }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产åè§æ ¼:</div> |
| | | <div>{{ item.partspec ? item.partspec : '/' }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å¤çæ¶é´:</div> |
| | | <div>{{ item.lm_date }}</div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- å·²éä¸çå
¥åºæ¡ç --> |
| | | <div |
| | | style="display: flex;flex-direction: column;height: 600px;overflow: auto;width: 48%;margin-left: 50px;" |
| | | > |
| | | <div id="printMe2"> |
| | | <div |
| | | v-for="(item,index) in lastPrintArrSelected" |
| | | v-if="item.checked" |
| | | :key="item.inbarcode" |
| | | :style="{marginTop:index===0?'':'15px'}" |
| | | style="display: flex;align-items: center;" |
| | | > |
| | | <div |
| | | style="display: flex;width: 280px;height: 160px;border: 1px solid #000;text-align: center;font-size: 10px;" |
| | | > |
| | | |
| | | <div style="width: 90px;display: flex;flex-direction: column;border-right: 1px solid #000"> |
| | | <div |
| | | style="display: flex;height: 96px;border-bottom:1px solid #000; |
| | | justify-content: center;align-items: center;position: relative" |
| | | > |
| | | <div |
| | | id="qrCode3" |
| | | ref="qrCodeDiv3" |
| | | style="overflow-y: hidden;height:60px;position: absolute;left: 14px;" |
| | | /> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 32px;justify-content: flex-start;border-bottom:1px solid #000;align-items: center" |
| | | > |
| | | <div style="margin-left: 5px;width: 28px">æ°é:</div> |
| | | {{ item.good_qty }} |
| | | </div> |
| | | <div style="display: flex;height: 32px;justify-content: flex-start;align-items: center"> |
| | | <div style="margin-left: 5px;width: 42px">å¤ç人:</div> |
| | | {{ item.username }} |
| | | </div> |
| | | </div> |
| | | |
| | | <div style="width:190px;display: flex;flex-direction: column"> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å·¥åç¼å·:</div> |
| | | <div>{{ item.wo_code }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000;justify-content: flex-start;align-items: center ;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">产åç¼ç :</div> |
| | | <div>{{ item.partcode }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产ååç§°:</div> |
| | | <div>{{ item.partname }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;border-bottom:1px solid #000 ;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width:60px;margin-left: 5px;">产åè§æ ¼:</div> |
| | | <div>{{ item.partspec ? item.partspec : '/' }}</div> |
| | | </div> |
| | | <div |
| | | style="display: flex;height: 20%;justify-content: flex-start;align-items: center;text-align: left" |
| | | > |
| | | <div style="width: 60px;margin-left: 5px;">å¤çæ¶é´:</div> |
| | | <div>{{ item.lm_date }}</div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="dialogVisible2 = false;">å æ¶</el-button> |
| | | <el-button v-waves v-print="printObj2" type="primary">æ å°</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | <!-- å·¥èºè·¯çº¿å¯¹è¯æ¡--> |
| | | <el-dialog |
| | | v-el-drag-dialog |
| | | :close-on-click-modal="false" |
| | | title="å
³èå·¥èºè·¯çº¿" |
| | | :visible.sync="dialogVisibleRoute" |
| | | width="800px" |
| | | top="10vh" |
| | | :fullscreen="isIpad" |
| | | class="dialogVisibleRoute" |
| | | @closed="handleCloseRoute" |
| | | @close="handleCloseRoute" |
| | | > |
| | | <div> |
| | | <i class="el-icon-s-comment" style="color:#42b983;" /> 产ååç§°ï¼{{ dialogFormRoute.projectName }} |
| | | </div> |
| | | <el-divider /> |
| | | <div style="margin-bottom: 10px"> |
| | | <i class="el-icon-s-operation" style="color:#42b983;" /> å·¥èºè·¯çº¿éå |
| | | </div> |
| | | |
| | | <div class="myCheckboxGroup"> |
| | | <div |
| | | v-for="item in dialogFormRoute.routeOperationArr" |
| | | :key="item.code" |
| | | :style="{border:item.isSelected1?'1px solid #42b983':'1px solid #eee'}" |
| | | class="myCheckbox" |
| | | @click="myCheckboxClick(item)" |
| | | > |
| | | <input |
| | | class="myCheckboxInput" |
| | | type="checkbox" |
| | | :value="item.code" |
| | | :name="item.name" |
| | | :style="{color:item.isSelected2?'#42b983':'#fff'}" |
| | | @click="myCheckboxInputClick(item)" |
| | | >{{ item.name }} |
| | | <!-- ç¶åç¹å»äºä»¶ä¸å½±å--> |
| | | <!-- onClick="event.cancelBubble = true"--> |
| | | </div> |
| | | </div> |
| | | |
| | | <el-divider /> |
| | | <div> |
| | | <i class="el-icon-s-operation" style="color:#42b983;" /> é»è®¤å·¥èºè·¯çº¿ |
| | | </div> |
| | | <div style="margin-top: 20px"> |
| | | <el-select |
| | | v-model="defaultroute_code" |
| | | filterable |
| | | style="width: 200px;" |
| | | placeholder="è¯·éæ©" |
| | | class="defaultroute_code" |
| | | > |
| | | <el-option |
| | | v-for="item in defaultroute_codeArr" |
| | | :key="item.code" |
| | | :label="item.name" |
| | | :value="item.code" |
| | | /> |
| | | </el-select> |
| | | </div> |
| | | <el-divider /> |
| | | <div style="margin-bottom: 10px"> |
| | | <i class="el-icon-s-operation" style="color:#42b983;" /> å·¥åºå表 |
| | | </div> |
| | | <div style="overflow-y: scroll"> |
| | | <el-table |
| | | ref="projectTableData" |
| | | :data="projectTableData" |
| | | border |
| | | height="280" |
| | | :row-class-name="tableRowClassName" |
| | | highlight-current-row |
| | | :header-cell-style="this.$headerCellStyle" |
| | | :cell-style="this.$cellStyle" |
| | | > |
| | | <el-table-column |
| | | prop="seq" |
| | | width="100" |
| | | label="å·¥åºåºå·" |
| | | fixed |
| | | /> |
| | | <el-table-column |
| | | prop="stepcode" |
| | | label="å·¥åºç¼ç " |
| | | show-tooltip-when-overflow |
| | | /> |
| | | <el-table-column |
| | | prop="stepname" |
| | | label="å·¥åºåç§°" |
| | | show-tooltip-when-overflow |
| | | /> |
| | | <el-table-column |
| | | prop="enable" |
| | | label="å¯ç¨ç¶æ" |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.enable==='Y'"> |
| | | <svg-icon icon-class="circleYes" style="margin-right: 2px" /> |
| | | æ¯ |
| | | </div> |
| | | <div v-if="row.enable==='N'"> |
| | | <svg-icon icon-class="circleNo" style="margin-right: 2px" /> |
| | | å¦ |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | </div> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button v-waves @click="routeDialogVisibleCancel">å æ¶</el-button> |
| | | <el-button v-waves type="primary" @click="routeDialogVisibleConfirm">ç¡® å®</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import Pagination from '@/components/Pagination' |
| | | import { handleDatetime, handleDatetime2, validateCode } from '@/utils/global' |
| | | import { getCookie } from '@/utils/auth' |
| | | import QRCode from 'qrcodejs2' |
| | | import $ from 'jquery' |
| | | import elDragDialog from '@/directive/el-drag-dialog' |
| | | import waves from '@/directive/waves' |
| | | import { |
| | | AddMesOrderCodeSearch, |
| | | AddUpdateMesOrder, DeleteMesOrder, |
| | | MesBadOrderSearch, MesOrderDistribution, MesOrderNewStepContent, |
| | | MesOrderSearch, |
| | | UpdateMesOrderStepSearch |
| | | } from '@/api/WorkOrder' |
| | | import { PartSelect } from '@/api/ProductModel' |
| | | import { PrentOrganization, PrentOrganizationNoCompany, StepData } from '@/api/GeneralBasicData' |
| | | import Sortable from 'sortablejs' |
| | | import ElDragSelect from '@/components/DragSelect' |
| | | import { MesOrderPrintSearch } from '@/api/GridReport' // base on element-ui |
| | | import DateType from '@/components/DateType' |
| | | export default { |
| | | name: 'WorkOrderList', |
| | | components: { |
| | | Pagination, ElDragSelect, DateType |
| | | }, |
| | | directives: { elDragDialog, waves }, |
| | | data() { |
| | | return { |
| | | mouseHoverType: 'mouseout', |
| | | mouseHoverTypeDialog: 'mouseout', |
| | | isExpandForm: false, |
| | | isIpad: false, |
| | | mainHeight: 0, |
| | | tableHeight: 0, |
| | | username: '', |
| | | form: { |
| | | wkshopcode: '', // 车é´ç¼ç |
| | | mesorderstus: '', // å·¥åç¶æç |
| | | mesordercode: '', // å·¥åç¼å· |
| | | partcode: '', // 产åç¼ç |
| | | ordertype: '', // ordertype |
| | | sourceorder: '', // æºååå· |
| | | saleordercode: '', // éå®è®¢å |
| | | partname: '', // 产ååç§° |
| | | partspec: '', // 产åè§æ ¼ |
| | | creatuser: '', // å建人å |
| | | // createdate: '', // å建æ¶é´ |
| | | datatype: 'ED', // æ¥æç±»å(计åå¼å·¥(PS)ã计åå®å·¥(PE)ãé¢è®¡äº¤ä»(ED)ãåå»ºæ¥æ(CT)) |
| | | timeValue: [], // æ¥è¯¢æ¥æ |
| | | prop: 'lm_date', // æåºå段 |
| | | order: 'desc', // æåºå段 |
| | | page: 1, // 第å 页 |
| | | rows: 20 // æ¯é¡µå¤å°æ¡ |
| | | }, |
| | | erporderstusArr: [ |
| | | { code: 'NEW', name: 'æ°å·¥å' }, |
| | | // { code: 'CREATING', name: 'æ§è¡ä¸' }, |
| | | // { code: 'CREATED', name: 'å·²å
³é' } |
| | | { code: 'ALLO', name: '已派å' }, |
| | | { code: 'START', name: 'å¼å·¥' }, |
| | | { code: 'CLOSED', name: 'å®å·¥' } |
| | | // { code: 'NOSCHED', name: 'å¾
æç¨' }, |
| | | // { code: 'SCHED', name: 'å·²æç¨' } |
| | | ], |
| | | wkshopcodeArr: [], |
| | | total: 10, |
| | | tableData: [], |
| | | dialogVisible: false, |
| | | dialogForm: { |
| | | mesorderstus: 'NEW', // å·¥åç¶æç |
| | | mesordercode: '', // å·¥åç¼å· |
| | | ordertype: 'PO', // å·¥åç±»å |
| | | sourceorderid: '', // æºåid |
| | | sourceorder: '', // æºååå· |
| | | |
| | | partcode: '', // 产åç¼ç |
| | | partname: '', // 产ååç§° |
| | | partspec: '', // 产åè§æ ¼ |
| | | |
| | | mesqty: '', // 工忰é |
| | | wkshopcode: '', // ç产车é´ç¼ç |
| | | wkshopname: '', // ç产车é´åç§° |
| | | |
| | | deliverydate: '', // äº¤ä»æ¶é´ |
| | | data_sources: '', // æ°æ®æ¥æº |
| | | |
| | | mesmaxqty: 0, // å·¥åçæå¤§å¼ |
| | | mesqtyinit: 0// 工忰éåå§å¼ |
| | | }, |
| | | ordertypeArr: [// å·¥åç±»å |
| | | { code: 'PO', name: 'æ åå·¥å' }, |
| | | { code: 'FO', name: 'æ¥åºè¡¥å' } |
| | | ], |
| | | partArr: [], // 产åä¿¡æ¯ |
| | | wkshopArr: [], // çäº§è½¦é´æ°ç» |
| | | routeArr: [], // å·¥èºè·¯çº¿æ°ç» |
| | | orderlevArr: [ |
| | | { code: 1, name: 'ç¹çº§' }, |
| | | { code: 2, name: 'ç´§æ¥' }, |
| | | { code: 3, name: 'æ£å¸¸' } |
| | | ], // å·¥åç级æ°ç» |
| | | operation: '', |
| | | dialogFormRules: { |
| | | mesorderstus: [ |
| | | { required: true, message: 'è¯·éæ©è®¢åç¶æ', trigger: ['blur', 'change'] } |
| | | ], |
| | | partcode: [ |
| | | { required: true, message: 'è¯·éæ©äº§åä¿¡æ¯', trigger: ['blur', 'change'] } |
| | | ], |
| | | mesordercode: [ |
| | | { required: true, validator: validateCode, trigger: ['blur', 'change'] } |
| | | ], |
| | | mesqty: [ |
| | | { required: true, message: '请è¾å
¥å·¥åæ°é', trigger: ['blur', 'change'] } |
| | | ], |
| | | wkshopcode: [ |
| | | { required: true, message: 'è¯·éæ©ç产车é´', trigger: ['blur', 'change'] } |
| | | ], |
| | | deliverydate: [ |
| | | { required: true, message: 'è¯·éæ©é¢è®¡äº¤ä»æ¥æ', trigger: ['blur', 'change'] } |
| | | ], |
| | | planstartdate: [ |
| | | { required: true, message: 'è¯·éæ©å¼å§æ¶é´', trigger: ['blur', 'change'] } |
| | | ], |
| | | planenddate: [ |
| | | { required: true, message: 'è¯·éæ©ç»ææ¶é´', trigger: ['blur', 'change'] } |
| | | ], |
| | | orderlev: [ |
| | | { required: true, message: 'è¯·éæ©å·¥åç级', trigger: ['blur', 'change'] } |
| | | ], |
| | | isAps: [ |
| | | { required: true, message: 'è¯·éæ©æ¯å¦æç¨', trigger: ['blur', 'change'] } |
| | | ], |
| | | bomId: [ |
| | | { required: true, message: 'è¯·éæ©ç©ææ¸
å', trigger: ['blur', 'change'] } |
| | | ] |
| | | |
| | | }, |
| | | dialogVisibleTask: false, |
| | | taskTableData: [], |
| | | |
| | | dialogVisibleSearch: false, |
| | | searchTableData: [], |
| | | dialogVisibleApprove: false, |
| | | tableDataPrint: [], // æå°é¡µé¢å
容 |
| | | printObj: { |
| | | id: 'printMe', |
| | | popTitle: 'æå°æ¨¡æ¿', |
| | | preview: false, |
| | | extraHead: '<meta http-equiv="Content-Language" content="zh-cn"/>', |
| | | closeCallback(vue) { // å
³éæå°çåè°äºä»¶ï¼æ æ³ç¡®å®ç¹å»çæ¯ç¡®è®¤è¿æ¯åæ¶ï¼ |
| | | console.log('11212', vue) |
| | | // vue.dialogVisible = false |
| | | vue.dialogVisibleApprove = false |
| | | }, |
| | | beforeOpenCallback(vue) { |
| | | vue.printLoading = true |
| | | console.log('æå¼ä¹å') |
| | | console.log() |
| | | }, |
| | | openCallback(vue) { |
| | | vue.printLoading = false |
| | | console.log('æ§è¡äºæå°') |
| | | } |
| | | }, |
| | | |
| | | formApprove: { |
| | | m_po: '', // æºååå· |
| | | mesordercode: '', |
| | | partcode: '', |
| | | partname: '', |
| | | partspec: '', |
| | | plan_qty: '', |
| | | routename: '', |
| | | lm_date: '' |
| | | }, |
| | | number: '', |
| | | dialogVisible2: false, |
| | | printObj2: { |
| | | id: 'printMe2', |
| | | popTitle: 'æå°æ¨¡æ¿', |
| | | preview: false, |
| | | extraHead: '<meta http-equiv="Content-Language" content="zh-cn"/>', |
| | | closeCallback(vue) { // å
³éæå°çåè°äºä»¶ï¼æ æ³ç¡®å®ç¹å»çæ¯ç¡®è®¤è¿æ¯åæ¶ï¼ |
| | | console.log('11212', vue) |
| | | // vue.dialogVisible = false |
| | | // vue.dialogVisible2 = false |
| | | // vue.dialogVisible = false |
| | | }, |
| | | beforeOpenCallback(vue) { |
| | | vue.printLoading = true |
| | | console.log('æå¼ä¹å') |
| | | console.log() |
| | | }, |
| | | openCallback(vue) { |
| | | vue.printLoading = false |
| | | console.log('æ§è¡äºæå°') |
| | | } |
| | | }, |
| | | qrForm: { |
| | | qrvalue: '', |
| | | startqty: '', |
| | | wo_code: '', |
| | | partcode: '', |
| | | partname: '', |
| | | nextstepname: '', |
| | | operator: '', // æä½äºº |
| | | operatorTime: ''// æä½æ¶é´ |
| | | }, |
| | | dialogVisibleSource: false, |
| | | sourceTableData: [], |
| | | sourceForm: { |
| | | wkshopcode: '', // 车é´ç¼ç |
| | | mesordercode: '', // å·¥åç¼å· |
| | | sourceorder: '', // 订åç¼å· |
| | | saleordercode: '', // éå®è®¢åå· |
| | | partcode: '', // 产åç¼ç |
| | | partname: '', // 产ååç§° |
| | | partspec: '', // 产åè§æ ¼ |
| | | creatuser: '', // å建人å |
| | | // paystartdate: '', // äº¤ä»æ¶é´ |
| | | // paystartdate: '', // é¢è®¡å¼å·¥æ¶é´ |
| | | // payenddate: '', // é¢è®¡å®å·¥æ¶é´ |
| | | createdate: '', // å建æ¶é´ |
| | | |
| | | prop: 'lm_date', // æåºå段 |
| | | order: 'desc', // æåºå段 |
| | | page: 1, // 第å 页 |
| | | rows: 20 // æ¯é¡µå¤å°æ¡ |
| | | }, |
| | | sourceFormTotal: 10, |
| | | radioSelectedId: '', |
| | | isExpandDialog: false, // å¯¹è¯æ¡è¡¨åæ¯å¦å±å¼ï¼é»è®¤ä¸å±å¼ |
| | | dialogVisibleRoute: false, |
| | | dialogFormRoute: { |
| | | projectName: '', // 产ååç§° |
| | | projectCode: '', // 产å代ç |
| | | routeOperationArr: [] // å·¥èºè·¯çº¿éå |
| | | }, |
| | | defaultroute_code: '', // é»è®¤å·¥èºè·¯çº¿éä¸å¼ |
| | | defaultroute_codeArr: '', // é»è®¤å·¥èºè·¯çº¿æ°ç» |
| | | projectTableData: [], // 设å¤å表 |
| | | tableDataDetail: [], // ç¹å»å·¥å表çè¡ æ¾ç¤ºè¯¦ç»ä¿¡æ¯ |
| | | printSize: 0, |
| | | printSizeSelectArr: [// 宽*é« |
| | | { code: 0, name: '80*50' }, |
| | | { code: 1, name: '78*60' }, |
| | | { code: 2, name: '60*40' } |
| | | // { code: 2, name: '50*60' }, |
| | | // { code: 3, name: '50*40' }, |
| | | // { code: 4, name: '50*80' }, |
| | | // { code: 5, name: '40*30' } |
| | | ], |
| | | pickerOptions: { |
| | | disabledDate(time) { |
| | | return time.getTime() < Date.now() - 8.64e7 |
| | | } |
| | | }, |
| | | |
| | | isLastPrint: false, // æ¯å¦æ¯æ«éæå° |
| | | lastPrintArr: [], // æ«éæå°çæ°ç»(ææ) |
| | | lastPrintArrSelected: [], // æ«éæå°çæ°ç»(éä¸) |
| | | |
| | | switchButton: false, |
| | | |
| | | routeStepArr: '', |
| | | |
| | | stepTableData: [], |
| | | sortable: null, |
| | | stepSelectArr: [], // å·¥åºä¸ææ°æ® |
| | | stepSelectedValue: [], // 䏿éä¸å¼ |
| | | |
| | | multipleSelection: [], |
| | | |
| | | datatypeList: [ |
| | | { code: 'PS', name: 'é¢è®¡å¼å·¥æ¥æ' }, |
| | | { code: 'PE', name: 'é¢è®¡å®å·¥æ¥æ' }, |
| | | { code: 'ED', name: 'é¢è®¡äº¤ä»æ¥æ' }, |
| | | { code: 'CT', name: 'å·¥ååå»ºæ¥æ' } |
| | | ] |
| | | } |
| | | }, |
| | | watch: { |
| | | 'stepSelectedValue': { |
| | | // deep: true, |
| | | handler: function(val) { |
| | | // do something with the new and old value of stepSelectedValue |
| | | console.log(val, 1) |
| | | const arr = JSON.parse(JSON.stringify(this.stepTableData)) |
| | | const arrStepcode = arr.map(i => i.stepcode) |
| | | this.stepTableData = [] |
| | | val.forEach(i => { |
| | | this.stepTableData.push( |
| | | { |
| | | stepcode: i, |
| | | stepname: this.stepSelectArr.find(j => j.stepcode === i).stepname, |
| | | stepprice: arrStepcode.includes(i) ? arr.find(j => j.stepcode === i).stepprice : 0 |
| | | } |
| | | ) |
| | | }) |
| | | } |
| | | } |
| | | }, |
| | | created() { |
| | | this.handleRequest() |
| | | }, |
| | | mounted() { |
| | | window.addEventListener('resize', this.getHeight) |
| | | this.getHeight() |
| | | |
| | | // this.$nextTick(() => { |
| | | // this.setSort() |
| | | // }) |
| | | }, |
| | | methods: { |
| | | DateTypeChange(value) { |
| | | this.form.datatype = value |
| | | }, |
| | | cycleTimeChange(val) { |
| | | this.form.timeValue = val |
| | | }, |
| | | setSort() { |
| | | const el = this.$refs.stepTableDataRef.$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0] |
| | | this.sortable = Sortable.create(el, { |
| | | ghostClass: 'sortable-ghost', // Class name for the drop placeholder, |
| | | setData: function(dataTransfer) { |
| | | // to avoid Firefox bug |
| | | // Detail see : https://github.com/RubaXa/Sortable/issues/1012 |
| | | dataTransfer.setData('Text', '') |
| | | }, |
| | | onEnd: evt => { |
| | | const targetRow = this.stepTableData.splice(evt.oldIndex, 1)[0] |
| | | this.stepTableData.splice(evt.newIndex, 0, targetRow) |
| | | |
| | | this.stepSelectedValue = this.stepTableData.map(i => i.stepcode) |
| | | // for show the changes, you can delete in you code |
| | | // const tempIndex = this.newList.splice(evt.oldIndex, 1)[0] |
| | | // this.newList.splice(evt.newIndex, 0, tempIndex) |
| | | } |
| | | }) |
| | | }, |
| | | tableRowClassName({ row, rowIndex }) { |
| | | return 'custom-row' |
| | | }, |
| | | handleRequest() { |
| | | this.getMesOrderSearch().then(res => { |
| | | if (res.code === '200') { |
| | | this.getSelect() |
| | | this.getPrentOrganizationNoCompany() |
| | | } |
| | | }) |
| | | }, |
| | | async getPrentOrganizationNoCompany() { |
| | | const { data: res } = await PrentOrganizationNoCompany() |
| | | this.wkshopcodeArr = res |
| | | }, |
| | | async getMesOrderSearch() { |
| | | // let tempDate = this.form.createdate |
| | | // if (tempDate.length > 0) { |
| | | // tempDate = handleDatetime(tempDate[0]) + '~' + handleDatetime(tempDate[1]) |
| | | // } |
| | | |
| | | const data = { |
| | | wkshopcode: this.form.wkshopcode, |
| | | mesorderstus: this.form.mesorderstus, // å·¥åç¶æç |
| | | mesordercode: this.form.mesordercode, // å·¥åç¼å· |
| | | partcode: this.form.partcode, // 产åç¼ç |
| | | partname: this.form.partname, // 产ååç§° |
| | | partspec: this.form.partspec, // 产åè§æ ¼ |
| | | creatuser: this.form.creatuser, // å建人å |
| | | sourceorder: this.form.sourceorder, // æºååå· |
| | | saleordercode: this.form.saleordercode, // éå®è®¢å |
| | | ordertype: this.form.ordertype, // åæ®ç±»å |
| | | datatype: this.form.datatype, |
| | | searchdate: this.form.timeValue.join('~'), |
| | | // createdate: this.form.createdate.toString().length > 0 ? handleDatetime(this.form.createdate) : '', // å建æ¶é´ |
| | | prop: this.form.prop, // æåºå段 |
| | | order: this.form.order, // æåºå段 |
| | | page: this.form.page, // 第å 页 |
| | | rows: this.form.rows // æ¯é¡µå¤å°æ¡ |
| | | } |
| | | const res = await MesOrderSearch(data) |
| | | this.tableData = res.data |
| | | this.total = res.count |
| | | |
| | | // this.form.createdate = tempDate |
| | | return { code: res.code } |
| | | }, |
| | | async getSelect() { |
| | | // è·å产åä¿¡æ¯ |
| | | const { data: res1 } = await PartSelect() |
| | | this.partArr = res1 |
| | | |
| | | // è·åç»ç» |
| | | const { data: res2 } = await PrentOrganization() |
| | | this.wkshopArr = res2 |
| | | |
| | | // è·åå·¥åº |
| | | const { data: res3 } = await StepData() |
| | | this.stepSelectArr = res3 |
| | | }, |
| | | // 订åç¶ææ¹åæ¶ |
| | | erporderstusChange(val) { |
| | | this.form.mesorderstus = val |
| | | }, |
| | | // æåºæ¹åæ¶ |
| | | sortChange({ column, prop, order }) { |
| | | if (order === 'descending') { |
| | | order = 'desc' |
| | | } else if (order === 'ascending') { |
| | | order = 'asc' |
| | | } else { |
| | | order = 'desc' |
| | | } |
| | | this.form.order = order |
| | | this.form.prop = prop |
| | | this.getMesOrderSearch() |
| | | }, |
| | | sourceSortChange({ column, prop, order }) { |
| | | if (order === 'descending') { |
| | | order = 'desc' |
| | | } else if (order === 'ascending') { |
| | | order = 'asc' |
| | | } else { |
| | | order = 'desc' |
| | | } |
| | | this.sourceForm.order = order |
| | | this.sourceForm.prop = prop |
| | | this.getMesBadOrderSearch() |
| | | }, |
| | | // æ¥è¯¢ |
| | | search() { |
| | | this.getMesOrderSearch() |
| | | }, |
| | | |
| | | // éç½® |
| | | reset(val) { |
| | | this.form.wkshopcode = '' |
| | | this.form.mesorderstus = '' |
| | | this.form.mesordercode = '' |
| | | this.form.partcode = '' |
| | | this.form.partname = '' |
| | | this.form.partspec = '' |
| | | this.form.paydate = '' |
| | | this.form.creatuser = '' |
| | | this.form.sourceorder = '' |
| | | this.form.ordertype = '' |
| | | // this.form.createdate = '' |
| | | |
| | | this.form.timeValue = [] |
| | | this.cycleTime = null |
| | | this.$refs.DateTypeRef.clearValue() |
| | | |
| | | this.getMesOrderSearch() |
| | | }, |
| | | // æ°å¢æé® |
| | | async add(operation) { |
| | | const { data: res } = await AddMesOrderCodeSearch() |
| | | this.dialogForm.mesordercode = res |
| | | this.operation = operation |
| | | this.dialogVisible = true |
| | | this.dialogForm.data_sources = 'MES' |
| | | |
| | | this.$nextTick(() => { |
| | | this.setSort() |
| | | }) |
| | | }, |
| | | // å·¥åºä»»å¡ |
| | | async check(row) { |
| | | // const { data: res } = await SearchWorkStep({ wo_code: row.wo_code }) |
| | | // this.taskTableData = res |
| | | // |
| | | // if (this.taskTableData.length === 0) { |
| | | // return this.$message.info('æ çäº§ä»»å¡æ°æ®ï¼') |
| | | // } |
| | | // this.dialogForm.mesordercode = res[0].wo_code |
| | | // this.dialogVisibleTask = true |
| | | }, |
| | | dialogVisibleBack() { |
| | | this.dialogVisibleTask = false |
| | | }, |
| | | handleSelectionChange(val) { |
| | | this.multipleSelection = val.map(i => i.wo_code) |
| | | }, |
| | | |
| | | selected(row, index) { |
| | | return row.status === 'NEW' && row.isstep === 'Y' |
| | | }, |
| | | // æ´¾å |
| | | send() { |
| | | if (this.multipleSelection.length === 0) { |
| | | return this.$message.info('请å
å¾éç¸å¯¹åºçå·¥åï¼') |
| | | } |
| | | |
| | | this.$confirm('æ¯å¦ç¡®è®¤æ´¾å?', 'æç¤º', { |
| | | confirmButtonText: 'ç¡®å®', |
| | | cancelButtonText: 'åæ¶', |
| | | type: 'warning' |
| | | }).then(() => { |
| | | MesOrderDistribution(this.multipleSelection).then(res => { |
| | | if (res.code === '200') { |
| | | this.$notify.success('æ´¾åæå!') |
| | | this.getMesOrderSearch() |
| | | } |
| | | }) |
| | | }).catch(() => { |
| | | this.$notify.info('å·²åæ¶æ´¾å') |
| | | }) |
| | | }, |
| | | // å é¤æé® |
| | | async del(row) { |
| | | if (row.status === 'START' || row.status === 'CLOSED' || row.status === 'SCHED') { |
| | | return this.$message.info('æ¤å·¥åä¸å¯å é¤ï¼') |
| | | } |
| | | this.$confirm('æ¯å¦ç¡®è®¤å é¤?', 'æç¤º', { |
| | | confirmButtonText: 'ç¡®å®', |
| | | cancelButtonText: 'åæ¶', |
| | | type: 'warning' |
| | | }).then(() => { |
| | | const data = { |
| | | souceid: row.sourceid ? row.sourceid : '', |
| | | wocode: row.wo_code, |
| | | m_po: row.m_po, |
| | | orderqty: row.plan_qty |
| | | } |
| | | DeleteMesOrder(data).then(res => { |
| | | if (res.code === '200') { |
| | | this.$notify.success('å 餿å!') |
| | | if (this.form.page > 1 && this.tableData.length === 1) { |
| | | this.form.page-- |
| | | } |
| | | this.getMesOrderSearch() |
| | | } |
| | | }) |
| | | }).catch(() => { |
| | | this.$notify.info('已忶å é¤') |
| | | }) |
| | | }, |
| | | |
| | | // ä¿®æ¹æé® |
| | | async edit(operation, row) { |
| | | this.operation = operation |
| | | |
| | | this.dialogForm.data_sources = row.data_sources |
| | | this.dialogForm.mesorderstus = row.status |
| | | this.dialogForm.mesordercode = row.wo_code |
| | | this.dialogForm.ordertype = row.wotype |
| | | this.dialogForm.sourceorderid = row.sourceid |
| | | this.dialogForm.sourceorder = row.m_po |
| | | this.dialogForm.partcode = row.partcode |
| | | this.dialogForm.partname = row.partname |
| | | this.dialogForm.partspec = row.partspec |
| | | this.dialogForm.wkshopcode = row.wkshp_code |
| | | this.dialogForm.deliverydate = row.saleOrderDeliveryDate.substring(0, 11) |
| | | this.dialogForm.mesqty = row.plan_qty |
| | | |
| | | this.dialogForm.mesqtyinit = row.plan_qty |
| | | |
| | | const data = { |
| | | sourceid: this.dialogForm.sourceorderid, |
| | | sourcewo: this.dialogForm.sourceorder, |
| | | wocode: this.dialogForm.mesordercode, |
| | | data_sources: this.dialogForm.data_sources |
| | | } |
| | | const { data: res } = await UpdateMesOrderStepSearch(data) |
| | | this.dialogForm.mesmaxqty = res.canupdate_qty |
| | | |
| | | if (res.stepdata.length > 0) { |
| | | res.stepdata.forEach(i => { |
| | | this.stepTableData.push( |
| | | { |
| | | stepcode: i.step_code, |
| | | stepname: i.stepname, |
| | | stepprice: i.stepprice |
| | | } |
| | | ) |
| | | }) |
| | | this.stepSelectedValue = this.stepTableData.map(i => i.stepcode) |
| | | } else { |
| | | const data2 = { |
| | | wkshopcode: this.dialogForm.wkshopcode, |
| | | partcode: this.dialogForm.partcode |
| | | } |
| | | const { data: res2 } = await MesOrderNewStepContent(data2) |
| | | if (res2.length > 0) { |
| | | res2.forEach(i => { |
| | | this.stepTableData.push( |
| | | { |
| | | stepcode: i.step_code, |
| | | // stepname: i.stepname, |
| | | stepprice: i.stepprice |
| | | } |
| | | ) |
| | | }) |
| | | this.stepSelectedValue = this.stepTableData.map(i => i.stepcode) |
| | | } |
| | | } |
| | | |
| | | this.dialogVisible = true |
| | | this.$nextTick(() => { |
| | | this.setSort() |
| | | }) |
| | | }, |
| | | // å·¥åå
³éäºä»¶ |
| | | orderClose() { |
| | | console.log('å·¥åå
³éäºä»¶') |
| | | }, |
| | | // å¯¹è¯æ¡äº§åä¿¡æ¯å¼æ¹å |
| | | partcodeChangeDialog(val) { |
| | | console.log(val) |
| | | this.dialogForm.partname = this.partArr.find(item => item.partcode === val).partname |
| | | this.dialogForm.partcode = this.partArr.find(item => item.partcode === val).partcode |
| | | this.dialogForm.partspec = this.partArr.find(item => item.partcode === val).partspec |
| | | if (this.dialogForm.wkshopcode) { |
| | | this.getMesOrderNewStepContent() |
| | | } |
| | | }, |
| | | async getMesOrderNewStepContent() { |
| | | const data = { |
| | | wkshopcode: this.dialogForm.wkshopcode, |
| | | partcode: this.dialogForm.partcode |
| | | } |
| | | const { data: res } = await MesOrderNewStepContent(data) |
| | | // console.log(res) |
| | | this.stepSelectedValue = [] |
| | | this.stepTableData = [] |
| | | if (res.length > 0) { |
| | | res.forEach(i => { |
| | | this.stepTableData.push( |
| | | { |
| | | stepcode: i.step_code, |
| | | // stepname: i.stepname, |
| | | stepprice: i.stepprice |
| | | } |
| | | ) |
| | | }) |
| | | this.stepSelectedValue = this.stepTableData.map(i => i.stepcode) |
| | | } |
| | | }, |
| | | |
| | | // å¯¹è¯æ¡å
³éäºä»¶ |
| | | handleClose() { |
| | | this.dialogForm = { |
| | | mesorderstus: 'NEW', // å·¥åç¶æç |
| | | mesordercode: '', // å·¥åç¼å· |
| | | ordertype: 'PO', // å·¥åç±»å |
| | | sourceorderid: '', // æºåid |
| | | sourceorder: '', // æºååå· |
| | | |
| | | partcode: '', // 产åç¼ç |
| | | partname: '', // 产ååç§° |
| | | partspec: '', // 产åè§æ ¼ |
| | | |
| | | mesqty: '', // 工忰é |
| | | wkshopcode: '', // ç产车é´ç¼ç |
| | | wkshopname: '', // ç产车é´åç§° |
| | | |
| | | deliverydate: '', // äº¤ä»æ¶é´ |
| | | data_sources: '' // æ°æ®æ¥æº |
| | | } |
| | | this.stepSelectedValue = [] |
| | | this.stepTableData = [] |
| | | this.$refs.dialogForm.clearValidate() |
| | | }, |
| | | // å¯¹è¯æ¡åæ¶ |
| | | dialogVisibleCancel() { |
| | | this.dialogVisible = false |
| | | }, |
| | | // å¯¹è¯æ¡ç¡®è®¤ |
| | | dialogVisibleConfirm() { |
| | | this.$refs.dialogForm.validate(valid => { |
| | | if (valid) { |
| | | if (this.dialogForm.ordertype === 'FO' && this.dialogForm.sourceorder.toString().trim().length <= 0) { |
| | | return this.$message.info('æºååå·ä¸è½ä¸ºç©ºï¼') |
| | | } |
| | | |
| | | if (this.dialogForm.mesqty <= 0) { |
| | | return this.$message.info('工忰éä¸è½çäºé¶ï¼') |
| | | } |
| | | |
| | | if (this.dialogForm.data_sources === 'ERP' && this.dialogForm.mesmaxqty < this.dialogForm.mesqty) { |
| | | return this.$message.info('æ¤å·¥åçæå¤§ä¿®æ¹æ°å¼ä¸ºï¼' + this.dialogForm.mesmaxqty) |
| | | } |
| | | |
| | | const workListSub = [] |
| | | this.stepTableData.forEach((i, j) => { |
| | | workListSub.push( |
| | | { |
| | | stepseq: j + 1, |
| | | stepcode: i.stepcode, |
| | | stepprice: i.stepprice, |
| | | isbott: j === 0 ? 'Y' : 'N', |
| | | isend: j === this.stepTableData.length - 1 ? 'Y' : 'N' |
| | | } |
| | | ) |
| | | }) |
| | | |
| | | if (workListSub.length === 0) { |
| | | return this.$message.info('å·¥åºä¸è½ä¸ºç©ºï¼') |
| | | } |
| | | |
| | | const data = { |
| | | wostatus: this.dialogForm.mesorderstus, // å·¥åç¶æ |
| | | wocode: this.dialogForm.mesordercode, // å·¥åå· |
| | | wotype: this.dialogForm.ordertype, // å·¥åç±»å |
| | | sourceid: this.dialogForm.sourceorderid, // æºåid |
| | | sourcewo: this.dialogForm.sourceorder, // æºååå· |
| | | partcode: this.dialogForm.partcode, // 产åç¼å· |
| | | wkshopcode: this.dialogForm.wkshopcode, |
| | | woqty: this.dialogForm.mesqty, // 工忰é |
| | | deliverydate: this.dialogForm.deliverydate, // äº¤ä»æ¶é´ |
| | | data_sources: this.dialogForm.data_sources, // æ°æ®æ¥æº |
| | | isstep: workListSub.length > 0 ? 'Y' : 'N', // |
| | | difference: this.dialogForm.mesqty - this.dialogForm.mesqtyinit, // æ°æ®å·®å¼ |
| | | workListSub |
| | | } |
| | | |
| | | this.$store.state.app.buttonIsDisabled = true |
| | | AddUpdateMesOrder(data, this.operation === 'add' ? 'Add' : 'Update').then(res => { |
| | | if (res.code === '200') { |
| | | this.dialogVisible = false |
| | | // this.handlePrint() |
| | | this.$message.success(this.operation === 'add' ? 'æ·»å æåï¼' : 'æ´¾åæåï¼') |
| | | this.getMesOrderSearch() |
| | | this.$store.state.app.buttonIsDisabled = false |
| | | } else { |
| | | this.$message.error(this.operation === 'add' ? 'æ·»å 失败ï¼' : 'æ´¾å失败ï¼') |
| | | } |
| | | }) |
| | | } |
| | | }) |
| | | }, |
| | | // æ´¾åæå° |
| | | async sendPrint() { |
| | | const data = { |
| | | username: getCookie('admin'), |
| | | // username: getCookie('username'), |
| | | mesordercode: this.dialogForm.mesordercode |
| | | } |
| | | const res = await MesOrderPrintSearch1(data) |
| | | // const res = await PrintOrder(data) |
| | | if (res.code === '200') { |
| | | // åæ°å
·ä½è¯´æè¯·åèå¸®å©ææ¡£ä¸çâWEBæ¥è¡¨(B/Sæ¥è¡¨)->WEBæ¥è¡¨å®¢æ·ç«¯->å¯å¨åæ°è¯´æâé¨å |
| | | var args = { |
| | | type: 'print', // preview print |
| | | showOptionDlg: false, // 妿䏿¾ç¤ºæå°å¯¹è¯æ¡èç´æ¥æå°ï¼å°æ¤è¡æ³¨é廿å³å¯ |
| | | report: urlAddRandomNo('./static/grf/äº§åæµä¼ åA4.grf'), |
| | | data: res.data |
| | | } |
| | | webapp_ws_ajax_run(args) |
| | | } |
| | | }, |
| | | |
| | | // è·å页é¢é«åº¦ |
| | | getHeight() { |
| | | this.$nextTick(() => { |
| | | this.mainHeight = window.innerHeight - 85 |
| | | // this.tableHeight = this.mainHeight - 250 |
| | | this.tableHeight = this.mainHeight - 515 |
| | | if (window.innerHeight < 769) { |
| | | this.tableHeight = this.tableHeight - 20 |
| | | } |
| | | this.isIpad = window.innerHeight < 769 && window.innerWidth < 1367 |
| | | this.$refs.tableDataRef.doLayout() |
| | | }) |
| | | }, |
| | | // å·¥èºè·¯çº¿æ¾å¤§éç¹å» |
| | | async searchClick() { |
| | | if (this.dialogForm.routecode === '') { |
| | | return this.$message.info('请å
鿩工èºè·¯çº¿ï¼') |
| | | } |
| | | this.dialogVisibleSearch = true |
| | | const { data: res } = await SelectRouteStep({ routecode: this.dialogForm.routecode }) |
| | | this.searchTableData = res |
| | | }, |
| | | dialogVisibleSearchBack() { |
| | | this.dialogVisibleSearch = false |
| | | }, |
| | | // å¤çæå° |
| | | handlePrint(wo_code) { |
| | | // const number = Math.random() * Math.random() |
| | | // this.number = number === 0 ? (10 + Math.random()) : number |
| | | // console.log(number) |
| | | |
| | | const data2 = { |
| | | mesordercode: wo_code || this.dialogForm.mesordercode |
| | | } |
| | | MesOrderPrintSearch(data2).then(res2 => { |
| | | if (res2.code === '200') { |
| | | const res3 = res2.data.recordset |
| | | |
| | | this.tableDataPrint = res3 |
| | | this.formApprove.mesordercode = res3[0].wo_code |
| | | this.formApprove.m_po = res3[0].m_po || '/' |
| | | this.formApprove.partcode = res3[0].partcode |
| | | this.formApprove.partname = res3[0].partname |
| | | this.formApprove.partspec = res3[0].partspec || '/' |
| | | this.formApprove.plan_qty = res3[0].plan_qty |
| | | this.formApprove.routename = localStorage.getItem('username') // æå°äººå |
| | | this.formApprove.lm_date = res3[0].lm_date |
| | | |
| | | this.$nextTick(() => { |
| | | res3.forEach(i => { |
| | | this.bindQRCode(i.seq, i.stepqrcode, 'small') |
| | | }) |
| | | this.bindQRCode('0', this.formApprove.mesordercode, 'big') |
| | | |
| | | const div = document.getElementById('qrCode') |
| | | // è¿ä¹å¤ä»£ç åªéè¦è¿ä¸å¥å®ç°æä»¬æéè¦çåè½ï¼å®ä½divæ»å¨æ¡ä½ç½®å¨åºé¨ï¼scrollHeight计ç®åºdivçé«åº¦ï¼åscrollTop 设置æ»å¨æ¡çé«åº¦ä¸ºå¤å° |
| | | div.scrollTop = div.scrollHeight // æ»å¨æ¡ä½äºæåºé¨ |
| | | // div.scrollTop = 0 // æ»å¨æ¡ä½äºæé¡¶é¨ |
| | | }) |
| | | this.dialogVisibleApprove = true |
| | | } |
| | | }) |
| | | }, |
| | | dialogVisibleTaskClose() { |
| | | this.dialogForm.mesordercode = '' |
| | | }, |
| | | /* |
| | | * æå¨ç¹å»æå° |
| | | * */ |
| | | // è¿åæé® |
| | | dialogVisibleBackPreview() { |
| | | this.dialogVisibleApprove = false |
| | | }, |
| | | // dialogVisibleConfirmPreview(param) { |
| | | // this.$refs.dialogForm.validate(valid => { |
| | | // if (valid) { |
| | | // const data = { |
| | | // username: getCookie('admin'), |
| | | // mesordercode: this.dialogForm.mesordercode |
| | | // } |
| | | // MesOrderPrintSearch1(data).then(res => { |
| | | // if (res.code === '200') { |
| | | // this.dialogVisibleApprove = true |
| | | // console.log(res, 11) |
| | | // } |
| | | // }) |
| | | // } |
| | | // }) |
| | | // }, |
| | | // çæäºç»´ç å·¥åæ¥è¡¨äºç»´ç |
| | | bindQRCode(seq, text, size) { |
| | | if (size === 'big') { |
| | | console.log(text, 1) |
| | | new QRCode(this.$refs.qrCodeDiv0, { |
| | | text: text, |
| | | width: size === 'big' ? 90 : 60, |
| | | height: size === 'big' ? 90 : 60, |
| | | // colorDark: '#333333', // äºç»´ç é¢è² |
| | | colorDark: '#000', // äºç»´ç é¢è² |
| | | colorLight: '#ffffff', // äºç»´ç èæ¯è² |
| | | correctLevel: QRCode.CorrectLevel.L// 容éçï¼L/M/H |
| | | }) |
| | | } else { |
| | | new QRCode(this.$refs['qrCodeDiv' + seq], { |
| | | text: text, |
| | | width: size === 'big' ? 90 : 60, |
| | | height: size === 'big' ? 90 : 60, |
| | | // colorDark: '#333333', // äºç»´ç é¢è² |
| | | colorDark: '#000', // äºç»´ç é¢è² |
| | | colorLight: '#ffffff', // äºç»´ç èæ¯è² |
| | | correctLevel: QRCode.CorrectLevel.L// 容éçï¼L/M/H |
| | | }) |
| | | } |
| | | }, |
| | | |
| | | dialogVisibleConfirmClose() { |
| | | // this.dialogForm.mesordercode = '' |
| | | this.formApprove.mesordercode = '' |
| | | this.formApprove.m_po = '' |
| | | this.formApprove.partcode = '' |
| | | this.formApprove.partname = '' |
| | | this.formApprove.partspec = '' |
| | | this.formApprove.plan_qty = '' |
| | | this.formApprove.routename = '' |
| | | this.formApprove.lm_date = '' |
| | | |
| | | // this.$refs.qrCodeDiv0.title = '' |
| | | |
| | | this.tableDataPrint = [] |
| | | }, |
| | | // è¡¥ææé® |
| | | supplementClick() { |
| | | this.dialogVisibleTask = false |
| | | this.handlePrint() |
| | | }, |
| | | // è¡¥æå°æ ç¾ |
| | | supplementSmallClick(row) { |
| | | // let obj = {} |
| | | console.log(row, 21) |
| | | // this.taskTableData.forEach((item, index) => { |
| | | this.tableDataDetail.forEach((item, index) => { |
| | | if (item.seq === row.seq) { |
| | | console.log(item) |
| | | this.qrForm = { |
| | | // qrvalue: item.seq === this.taskTableData.length ? item.wo_code + ';' + item.stepcode : item.wo_code + ';' + this.taskTableData[item.seq].stepcode, |
| | | qrvalue: item.seq === this.tableDataDetail.length ? item.wo_code + ';' + item.stepcode : item.wo_code + ';' + this.tableDataDetail[item.seq].stepcode, |
| | | // startqty: item.seq === this.taskTableData.length ? item.plan_qty : this.taskTableData[item.seq].plan_qty, |
| | | startqty: item.seq === this.tableDataDetail.length ? item.plan_qty : this.tableDataDetail[item.seq].plan_qty, |
| | | wo_code: item.wo_code, |
| | | partcode: item.partcode, |
| | | partname: item.partname, |
| | | // nextstepname: item.seq === this.taskTableData.length ? item.stepname : this.taskTableData[item.seq].stepname, |
| | | nextstepname: item.seq === this.tableDataDetail.length ? item.stepname : this.tableDataDetail[item.seq].stepname, |
| | | operator: getCookie('username'), |
| | | operatorTime: handleDatetime2(new Date()) |
| | | } |
| | | this.$nextTick(() => { |
| | | console.log(this.qrForm.qrvalue, 3333) |
| | | this.bindQRCode2(this.qrForm.qrvalue) |
| | | |
| | | const div = document.getElementById('qrCode2') |
| | | // è¿ä¹å¤ä»£ç åªéè¦è¿ä¸å¥å®ç°æä»¬æéè¦çåè½ï¼å®ä½divæ»å¨æ¡ä½ç½®å¨åºé¨ï¼scrollHeight计ç®åºdivçé«åº¦ï¼åscrollTop 设置æ»å¨æ¡çé«åº¦ä¸ºå¤å° |
| | | div.scrollTop = div.scrollHeight // æ»å¨æ¡ä½äºæåºé¨ |
| | | // div.scrollTop = 0 // æ»å¨æ¡ä½äºæé¡¶é¨ |
| | | }) |
| | | } |
| | | }) |
| | | |
| | | // this.dialogVisibleTask = false |
| | | this.dialogVisible2 = true |
| | | console.log(this.qrForm, 1111) |
| | | }, |
| | | // è¡¥æç产å
¥åºæ¡ç |
| | | async getProductInHouseLabCode(ordercode) { |
| | | const res = await ProductInHouseLabCode({ ordercode }) |
| | | console.log(res) |
| | | this.isLastPrint = true |
| | | |
| | | this.lastPrintArr = res.data |
| | | |
| | | this.dialogVisible2 = true |
| | | |
| | | // ç产äºç»´ç |
| | | this.$nextTick(() => { |
| | | this.lastPrintArr.forEach((i, index) => { |
| | | i.checked = false |
| | | new QRCode(this.$refs.qrCodeDiv2[index], { |
| | | text: i.inbarcode, |
| | | width: this.printSize !== 2 ? 60 : 55, |
| | | height: this.printSize !== 2 ? 60 : 55, |
| | | colorDark: '#000', // äºç»´ç é¢è² |
| | | colorLight: '#ffffff', // äºç»´ç èæ¯è² |
| | | correctLevel: QRCode.CorrectLevel.L// 容éçï¼L/M/H |
| | | }) |
| | | }) |
| | | }) |
| | | }, |
| | | dialogVisible2Close() { |
| | | this.qrForm.qrvalue = '' |
| | | this.qrForm.startqty = '' |
| | | this.qrForm.wo_code = '' |
| | | this.qrForm.partcode = '' |
| | | this.qrForm.partname = '' |
| | | this.qrForm.nextstepname = '' |
| | | this.qrForm.operator = '' |
| | | this.qrForm.operatorTime = '' |
| | | // this.$refs.qrCodeDiv2 = '' |
| | | this.isLastPrint = false |
| | | this.lastPrintArr = [] |
| | | this.lastPrintArrSelected = [] |
| | | }, |
| | | // çæäºç»´ç å·¥åºæ ç¾äºç»´ç |
| | | bindQRCode2(text) { |
| | | new QRCode(this.$refs.qrCodeDiv2, { |
| | | text: text, |
| | | width: this.printSize !== 2 ? 60 : 55, |
| | | height: this.printSize !== 2 ? 60 : 55, |
| | | colorDark: '#000', // äºç»´ç é¢è² |
| | | colorLight: '#ffffff', // äºç»´ç èæ¯è² |
| | | correctLevel: QRCode.CorrectLevel.L// 容éçï¼L/M/H |
| | | }) |
| | | }, |
| | | // æ¥åºè¡¥åæ
åµä¸å¯ç¹å»éæ© |
| | | mesordertsourcesearchclick() { |
| | | if (this.dialogForm.ordertype === 'PO') { |
| | | return this.$message.info('å·¥åç±»å为æ¥åºè¡¥åæ
åµä¸å¯éæ©ï¼') |
| | | } |
| | | |
| | | this.getMesBadOrderSearch() |
| | | |
| | | this.dialogVisibleSource = true |
| | | }, |
| | | async getMesBadOrderSearch() { |
| | | // let tempDate2 = this.sourceForm.paystartdate |
| | | // if (tempDate2.length > 0) { |
| | | // tempDate2 = handleDatetime(tempDate2[0]) + '~' + handleDatetime(tempDate2[1]) |
| | | // } |
| | | |
| | | let tempDate = this.sourceForm.createdate |
| | | if (tempDate.length > 0) { |
| | | tempDate = handleDatetime(tempDate[0]) + '~' + handleDatetime(tempDate[1]) |
| | | } |
| | | |
| | | const data = { |
| | | wkshopcode: this.form.wkshopcode, // 车é´ç¼ç |
| | | mesordercode: this.sourceForm.mesordercode, // å·¥åç¼å· |
| | | sourceorder: '', // æºååå· |
| | | saleordercode: '', // éå®åå· |
| | | partcode: this.sourceForm.partcode, // 产åç¼ç |
| | | partname: this.sourceForm.partname, // 产ååç§° |
| | | partspec: this.sourceForm.partspec, // 产åè§æ ¼ |
| | | // paystartdate: tempDate2, // äº¤ä»æ¶é´ |
| | | // payenddate: tempDate, // äº¤ä»æ¶é´ |
| | | creatuser: this.sourceForm.creatuser, // å建人å |
| | | createdate: tempDate, // å建æ¶é´ |
| | | |
| | | prop: this.sourceForm.prop, // æåºå段 |
| | | order: this.sourceForm.order, // æåºå段 |
| | | page: this.sourceForm.page, // 第å 页 |
| | | rows: this.sourceForm.rows // æ¯é¡µå¤å°æ¡ |
| | | |
| | | } |
| | | |
| | | const res = await MesBadOrderSearch(data) |
| | | this.sourceTableData = res.data |
| | | this.sourceFormTotal = res.count |
| | | }, |
| | | // åéæ¡éä¸è·åå½åè¡ä¿¡æ¯ |
| | | // getCurrentRowSource2(id) { |
| | | // this.radioSelectedId = id |
| | | // }, |
| | | // åéæ¡éä¸è·åå½åè¡ä¿¡æ¯ |
| | | getCurrentRowSource(row, event, column) { |
| | | this.radioSelectedId = row.id |
| | | this.dialogForm.mesqty = row.bad_qty |
| | | }, |
| | | sourceSearch() { |
| | | this.getMesBadOrderSearch() |
| | | }, |
| | | sourceReset() { |
| | | this.sourceForm.wkshopcode = '' |
| | | this.sourceForm.mesordercode = '' |
| | | this.sourceForm.sourceorder = '' |
| | | this.sourceForm.partcode = '' |
| | | this.sourceForm.partname = '' |
| | | this.sourceForm.partspec = '' |
| | | // this.sourceForm.paystartdate = '' |
| | | // this.sourceForm.payenddate = '' |
| | | this.sourceForm.creatuser = '' |
| | | this.sourceForm.createdate = '' |
| | | this.getMesBadOrderSearch() |
| | | }, |
| | | dialogVisibleSourceClose() { |
| | | this.radioSelectedId = '' |
| | | |
| | | this.sourceForm.wkshopcode = '' |
| | | this.sourceForm.mesordercode = '' |
| | | this.sourceForm.sourceorder = '' |
| | | this.sourceForm.partcode = '' |
| | | this.sourceForm.partname = '' |
| | | this.sourceForm.partspec = '' |
| | | this.sourceForm.paystartdate = '' |
| | | this.sourceForm.payenddate = '' |
| | | this.sourceForm.creatuser = '' |
| | | this.sourceForm.createdate = '' |
| | | |
| | | this.isExpandDialog = false |
| | | this.sourceTableData = [] |
| | | }, |
| | | dialogVisibleSourceBack() { |
| | | this.dialogVisibleSource = false |
| | | }, |
| | | dialogVisibleSourceConfirm() { |
| | | console.log(this.radioSelectedId) |
| | | this.sourceTableData.forEach(item => { |
| | | if (item.id === this.radioSelectedId) { |
| | | this.dialogForm.sourceorder = item.wo_code |
| | | this.dialogForm.partcode = item.partcode |
| | | this.dialogForm.partspec = item.partspec |
| | | } |
| | | }) |
| | | this.dialogVisibleSource = false |
| | | }, |
| | | mesordertypeChange(val) { |
| | | if (val === 'PO') { |
| | | this.dialogForm.sourceorder = '' |
| | | this.dialogForm.partcode = '' |
| | | this.dialogForm.partspec = '' |
| | | } |
| | | }, |
| | | /* å
³èå·¥èºè·¯çº¿æ¨¡å*/ |
| | | // å
³èå·¥èºè·¯çº¿ |
| | | async routeClick(row) { |
| | | console.log(row) |
| | | // this.defaultroute_code = row.default_route |
| | | this.dialogFormRoute.projectCode = row.partcode |
| | | this.dialogFormRoute.projectName = row.partname |
| | | this.dialogVisibleRoute = true |
| | | const { data: res } = await InventoryFileAssociationRoute({ partcode: this.dialogFormRoute.projectCode }) |
| | | this.dialogFormRoute.routeOperationArr = res |
| | | |
| | | this.dialogFormRoute.routeOperationArr.forEach((item, index) => { |
| | | item.isSelected1 = false |
| | | item.isSelected2 = false |
| | | if (index === 0) { |
| | | item.isSelected1 = true |
| | | this.projectTableData = item.Data |
| | | } |
| | | if (item.flag === 'Y') { |
| | | item.isSelected2 = true |
| | | this.$nextTick(() => { |
| | | $('input:checkbox').eq(index).prop('checked', true) |
| | | }) |
| | | } |
| | | }) |
| | | |
| | | this.defaultroute_codeArr = this.dialogFormRoute.routeOperationArr.filter(item => item.flag === 'Y') |
| | | }, |
| | | // å¯¹è¯æ¡å
³é |
| | | handleCloseRoute() { |
| | | this.dialogFormRoute.routeOperationArr = [] |
| | | this.defaultroute_codeArr = [] |
| | | this.defaultroute_code = '' |
| | | this.projectTableData = [] |
| | | }, |
| | | // åæ¶ |
| | | routeDialogVisibleCancel() { |
| | | this.dialogVisibleRoute = false |
| | | }, |
| | | // ç¡®å® |
| | | async routeDialogVisibleConfirm() { |
| | | const temp = this.dialogFormRoute.routeOperationArr.filter(item => item.isSelected2) |
| | | if (this.defaultroute_code === '' && temp.length > 0) { |
| | | return this.$message.info('é»è®¤å·¥èºè·¯çº¿ä¸è½ä¸ºç©ºï¼') |
| | | } |
| | | |
| | | // æäº¤æ ¼å¼ |
| | | const data = [] |
| | | this.dialogFormRoute.routeOperationArr.forEach(item => { |
| | | if (item.isSelected2) { |
| | | data.push({ code: item.code, name: item.name }) |
| | | } |
| | | }) |
| | | |
| | | const res = await SaveInventoryFile(this.dialogFormRoute.projectCode, this.defaultroute_code, data) |
| | | if (res.code === '200') { |
| | | this.$message.success('ä¿åæåï¼') |
| | | await this.getMesOrderSearch() |
| | | this.dialogVisibleRoute = false |
| | | } |
| | | }, |
| | | // 大çåç¹å»äºä»¶ |
| | | myCheckboxClick(val) { |
| | | console.log(val, 1) |
| | | this.dialogFormRoute.routeOperationArr.forEach(item => { |
| | | item.isSelected1 = val.code === item.code |
| | | }) |
| | | |
| | | this.projectTableData = val.Data |
| | | }, |
| | | // å°çåç¹å»äºä»¶ |
| | | myCheckboxInputClick(val) { |
| | | console.log(val, 2) |
| | | val.isSelected2 = !val.isSelected2 |
| | | |
| | | this.dialogFormRoute.routeOperationArr.forEach((item, index) => { |
| | | if (val.code === item.code) { |
| | | item.flag = !item.flag |
| | | } |
| | | }) |
| | | if (val.code === this.defaultroute_code) { |
| | | this.defaultroute_code = '' |
| | | } |
| | | this.defaultroute_codeArr = this.dialogFormRoute.routeOperationArr.filter(item => item.isSelected2) |
| | | }, |
| | | // è¡ç¹å»äºä»¶ |
| | | async rowClick(row, event, column) { |
| | | const data = { |
| | | sourceid: row.sourceid, |
| | | sourcewo: row.m_po, |
| | | wocode: row.wo_code, |
| | | data_sources: row.data_sources |
| | | } |
| | | const { data: res } = await UpdateMesOrderStepSearch(data) |
| | | this.tableDataDetail = res.stepdata |
| | | }, |
| | | // å·¥åºå é¤ |
| | | stepDel(row) { |
| | | console.log(row) |
| | | const index = this.stepSelectedValue.findIndex(i => i === row.stepcode) |
| | | this.stepSelectedValue.splice(index, 1) |
| | | }, |
| | | // æå°å·¥å |
| | | printOrder() { |
| | | |
| | | }, |
| | | // éæ©æå°å°ºå¯¸ç大å°å¼æ¹å |
| | | printSizeChange(val) { |
| | | this.$nextTick(() => { |
| | | this.bindQRCode2(this.qrForm.qrvalue) |
| | | }) |
| | | }, |
| | | printMe2StylePadding(val) { |
| | | if (val === 0) { |
| | | return { paddingLeft: '10px', paddingTop: '5px' } |
| | | } |
| | | if (val === 5) { |
| | | return { paddingLeft: '15px', paddingTop: '7px' } |
| | | } |
| | | }, |
| | | |
| | | inbarcodeChange(val, item) { |
| | | // å½ lastPrintArrSelected䏿ªæå½åå¾éç弿¯ èµ°push item å¦åèµ°è¿æ»¤æitem |
| | | if (val) { |
| | | this.lastPrintArrSelected.push(item) |
| | | } else { |
| | | this.lastPrintArrSelected = this.lastPrintArrSelected.filter(i => i.inbarcode !== item.inbarcode) |
| | | } |
| | | |
| | | // ç产äºç»´ç |
| | | this.$nextTick(() => { |
| | | this.lastPrintArrSelected.forEach((i, index) => { |
| | | console.log(i.inbarcode, 'i.inbarcode') |
| | | new QRCode(this.$refs.qrCodeDiv3[index], { |
| | | text: i.inbarcode, |
| | | width: 60, |
| | | height: 60, |
| | | colorDark: '#000', // äºç»´ç é¢è² |
| | | colorLight: '#ffffff', // äºç»´ç èæ¯è² |
| | | correctLevel: QRCode.CorrectLevel.L// 容éçï¼L/M/H |
| | | }) |
| | | }) |
| | | |
| | | // const div = document.getElementById('qrCode3') |
| | | // div.scrollTop = 0 // æ»å¨æ¡ä½äºæåºé¨ |
| | | |
| | | this.$forceUpdate() |
| | | }, 500) |
| | | }, |
| | | stepSelectedValueChange(val) { |
| | | // console.log(val, 123) |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | <style> |
| | | .sortable-ghost { |
| | | opacity: .8; |
| | | color: #fff !important; |
| | | background: #42b983 !important; |
| | | } |
| | | </style> |
| | | <style lang="scss" scoped> |
| | | $main_color: #42b983; |
| | | |
| | | .dialogVisibleRoute { |
| | | .myCheckboxGroup { |
| | | display: flex; |
| | | flex-wrap: wrap; |
| | | |
| | | .myCheckbox { |
| | | //border: 1px solid $main_color; |
| | | border: 1px solid #eee; |
| | | display: flex; |
| | | min-width: 100px; |
| | | padding: 10px; |
| | | margin: 10px 30px 0 0; |
| | | border-radius: 5px; |
| | | cursor: default; |
| | | |
| | | .myCheckboxInput { |
| | | margin: 1px 5px 0 0; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | } |
| | | |
| | | //.myCheckbox{ |
| | | // border: 1px solid $main_color; |
| | | //} |
| | | |
| | | input[type=checkbox] { |
| | | cursor: pointer; |
| | | position: relative; |
| | | width: 14px; |
| | | height: 14px; |
| | | font-size: 14px; |
| | | } |
| | | |
| | | input[type=checkbox]::after { |
| | | position: absolute; |
| | | top: 0; |
| | | //color: rgb(130, 35, 35); |
| | | color: $main_color; |
| | | width: 14px; |
| | | height: 14px; |
| | | display: inline-block; |
| | | visibility: visible; |
| | | padding-left: 0px; |
| | | text-align: center; |
| | | content: ' '; |
| | | border-radius: 3px |
| | | } |
| | | |
| | | input[type=checkbox]:checked::after { |
| | | //content: "â"; |
| | | content: "â"; |
| | | color: #fff; |
| | | font-size: 12px; |
| | | font-weight: bold; |
| | | background-color: $main_color; |
| | | } |
| | | } |
| | | } |
| | | |
| | | .dialogVisibleRoute { |
| | | ::v-deep .el-dialog__body { |
| | | padding: 20px 20px !important; |
| | | } |
| | | } |
| | | |
| | | .defaultroute_code ::v-deep .el-input__suffix-inner { |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | margin-top: -3px; |
| | | } |
| | | |
| | | .el-date-editor { |
| | | font-size: 14px; |
| | | } |
| | | |
| | | ::v-deep .el-dialog__body { |
| | | padding: 20px 100px !important; |
| | | } |
| | | |
| | | .dialogVisibleSearch ::v-deep .el-dialog__body { |
| | | padding: 20px 20px !important; |
| | | } |
| | | |
| | | .dialogVisibleConfirmClass ::v-deep .el-dialog__body { |
| | | padding: 20px 20px !important; |
| | | } |
| | | |
| | | ::v-deep .el-table .caret-wrapper { |
| | | transform: scale(0.8); |
| | | } |
| | | |
| | | ::v-deep .el-button--text { |
| | | color: $main_color; |
| | | font-size: 14px; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | ::v-deep .el-radio.is-bordered + .el-radio.is-bordered { |
| | | margin: 10px 30px 0px 0; |
| | | } |
| | | |
| | | .body ::v-deep .el-form-item { |
| | | margin-bottom: 0; |
| | | } |
| | | |
| | | .elForm ::v-deep .el-form-item { |
| | | margin-bottom: 0; |
| | | } |
| | | |
| | | .elTableDiv { |
| | | ::v-deep .el-radio__label { |
| | | display: none; |
| | | } |
| | | |
| | | } |
| | | |
| | | .el-table::before { |
| | | height: 0; |
| | | } |
| | | |
| | | //.dialogVisibleConfirmClass >>>.el-table--border, .el-table--fit { |
| | | // border-bottom: 2px solid #000 ; |
| | | // //outline: #000 solid 2px !important; |
| | | //} |
| | | |
| | | .tableDataPrint ::v-deep div.cell { |
| | | display: flex !important; |
| | | align-items: center !important; |
| | | justify-content: center !important; |
| | | } |
| | | |
| | | .formContent { |
| | | width: 240px; |
| | | } |
| | | |
| | | </style> |
| | | |
| | | <style media="print"> |
| | | /*@media print {*/ |
| | | @page { |
| | | size: auto; |
| | | margin: 3mm; |
| | | } |
| | | |
| | | </style> |
| | | <style> |
| | | .formContent .el-form-item__label { |
| | | color: #000 !important; |
| | | } |
| | | </style> |
| | | <!--å
Œ
±é¡µé¢æ ·å¼--> |
| | | <style lang="scss" scoped> |
| | | $main_color: #42b983; |
| | | |
| | | ::v-deep .el-range-input { |
| | | font-size: 14px !important; |
| | | } |
| | | |
| | | ::v-deep .el-range__icon { |
| | | line-height: 28px !important; |
| | | } |
| | | |
| | | ::v-deep .el-range-separator { |
| | | line-height: 28px !important; |
| | | } |
| | | |
| | | ::v-deep .el-range-input { |
| | | font-size: 14px; |
| | | } |
| | | |
| | | ::v-deep .el-range-separator { |
| | | display: flex; |
| | | justify-content: center; |
| | | align-items: center; |
| | | } |
| | | |
| | | //::v-deep .el-button--primary, .el-button--default, .el-button--info { |
| | | // height: 34px; |
| | | // display: flex; |
| | | // align-items: center; |
| | | // padding: 0 15px; |
| | | //} |
| | | |
| | | ::v-deep .el-button--primary { |
| | | //background-color: $main_color !important; |
| | | } |
| | | |
| | | ::v-deep .el-button--default { |
| | | background-color: #f8f8fa; |
| | | border: none; |
| | | } |
| | | |
| | | ::v-deep .el-input__inner { |
| | | height: 34px; |
| | | line-height: 34px; |
| | | //color: #a7a7a7; |
| | | } |
| | | |
| | | ::v-deep .el-dialog__body { |
| | | padding: 20px 100px !important; |
| | | } |
| | | |
| | | ::v-deep .dialogVisibleRoles .el-dialog__body { |
| | | padding: 20px 20px !important; |
| | | } |
| | | |
| | | ::v-deep .importPickerClass .el-dialog__body { |
| | | padding: 20px 20px !important; |
| | | } |
| | | |
| | | ::v-deep .el-dialog__footer { |
| | | display: flex; |
| | | justify-content: flex-end; |
| | | } |
| | | |
| | | ::v-deep .el-table .caret-wrapper { |
| | | transform: scale(0.8); |
| | | } |
| | | |
| | | ::v-deep .cell { |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | } |
| | | |
| | | ::v-deep .el-table::before { |
| | | height: 0; |
| | | } |
| | | |
| | | ::v-deep .el-table__body-wrapper { |
| | | background-color: #f8f8fa; |
| | | } |
| | | |
| | | ::v-deep .el-table__body .el-table__row.hover-row td { |
| | | background-color: #eaecef; |
| | | } |
| | | |
| | | ::v-deep .el-form--inline .el-form-item__label { |
| | | color: #a7a7a7; |
| | | } |
| | | |
| | | .body ::v-deep .el-divider { |
| | | border: 1px solid #eee; |
| | | width: 99%; |
| | | margin: 10px auto; |
| | | } |
| | | |
| | | .body ::v-deep .el-form-item { |
| | | margin-bottom: 0; |
| | | } |
| | | |
| | | .userDialogVisible ::v-deep .el-form-item { |
| | | margin-bottom: 0; |
| | | } |
| | | |
| | | .dateMini { |
| | | ::v-deep .el-input__inner { |
| | | line-height: 34px; |
| | | height: 34px; |
| | | width: 200px; |
| | | display: flex; |
| | | font-size: 14px !important; |
| | | align-items: center !important; |
| | | } |
| | | |
| | | ::v-deep .el-input__prefix { |
| | | margin-top: -3px; |
| | | } |
| | | |
| | | //::v-deep .el-range__icon{ |
| | | // line-height: 28px; |
| | | //} |
| | | } |
| | | |
| | | ::v-deep .el-select__caret { |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | } |
| | | |
| | | .tableFixed { |
| | | ::v-deep .el-table__fixed-right { |
| | | height: 100% !important; |
| | | } |
| | | |
| | | ::v-deep .el-table__fixed { |
| | | height: 100% !important; |
| | | } |
| | | } |
| | | </style> |
| | | <style> |
| | | |
| | | .el-table .custom-row { |
| | | background: #f8f8fa; |
| | | } |
| | | </style> |
| | | <style> |
| | | .sortable-ghost{ |
| | | opacity: .8; |
| | | color: #fff!important; |
| | | background: #42b983!important; |
| | | } |