123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- <template>
- <div style="overflow: auto;padding-bottom: 6.6rem;box-sizing: border-box;">
- <div >
- <div class="home_header">发货</div>
- <div class="home_header_line"></div>
- <div class="home_con_body">
- <div class="home_con_s">
- <div v-if="is_show" class="pack_up">
- <img @click="handleShow" src="../../../assets/home/collect.png" alt="">
- </div>
- <div v-if="!is_show" :class="!is_show ? 'pack_up_d' : ''" class="pack_up" style="display: flex;gap: .3125rem;" @click="handleShow">
- <div style="font-size: 0.88rem;
- color: #ABDFFF;">展开</div>
- <img style="width: 0.41rem;height: 0.69rem;" src="../../../assets/home/zk.png" alt="">
- </div>
- <div v-if="is_show" class="pack_up_con">
- <p class="pack_up_name">王晓伟</p>
- <div class="pack_up_grid">
- <div>
- <p>产品总数</p>
- <div><span>{{ total_num }}</span><span>件</span></div>
- </div>
- <div>
- <p>已扫总数</p>
- <div><span>{{ scan_num }}</span><span>件</span></div>
- </div>
- <div>
- <p>未扫总数</p>
- <div><span>{{ total_num - scan_num }}</span><span>件</span></div>
- </div>
- <!-- <div>
- <p>包装件数</p>
- <div><span>1245</span><span>件</span></div>
- </div> -->
- </div>
- </div>
- </div>
- <div class="send_work" v-if="tableData.length > 0" v-for="(item, index) in tableData" :key="index">
- <!-- <div class="check_box">-->
- <!-- <div @click="handleChoose(item, index)" :class="item.is_choose ? 'check_box_c_active' : 'check_box_c'">-->
- <!-- </div>-->
- <!-- </div>-->
- <div class="secd_flex" style="margin-top: .8rem">
- <div class="secd_title">
- <span>销售单号:</span><span> {{ item.bus_no }}</span>
- </div>
- <span class="secd_title_d">{{ item.product_title }}</span>
- <div class="secd_g"><span>规格型号:</span><span>{{ item.product_size }}</span></div>
- <div class="secd_flex_w">
- <div class="secd_flex_s">
- <span>已扫到数量:</span>
- <span>{{ item.out_qty }}件</span>
- </div>
- <div class="secd_flex_s">
- <span>未发货数量:</span>
- <span>{{ item.this_delivery_qty - item.out_qty }}件</span>
- </div>
- </div>
- </div>
- </div>
- <div v-if="tableData.length == 0"
- style="display: flex;width: 100%;height: 10rem;justify-content: center;align-items: center;">
- <Spin size="small" />
- <Spin />
- <Spin size="small" />
- </div>
- <div class="footer">
- <div class="return_btn" @click="handleReturn">返回</div>
- <div class="confirm_btn" @click="handelGoSure">确认</div>
- </div>
- </div>
- </div>
- </div>
- <!-- <div>
- <div class="header">
- <div class="header_top">
- <Button type="primary" class="header_btn" ghost @click="handleShow"
- :icon="is_show ? 'ios-arrow-dropup' : 'ios-arrow-dropdown'">
- <div style="margin-right: 0.6rem">
- {{ is_show ? "收起" : "展开" }}
- </div>
- </Button>
- <div style="margin-right: 1rem; color: #66a9f0">王小伟</div>
- </div>
- <div class="header_middle">
- <b-dropdown size="sm" text="产品总数" class="m-2" :disabled="is_use">
- <b-dropdown-item-button>Action</b-dropdown-item-button>
- <b-dropdown-item-button>Another action</b-dropdown-item-button>
- <b-dropdown-item-button>Something else here</b-dropdown-item-button>
- </b-dropdown>
- <b-dropdown size="sm" text="已扫总数" class="m-2" :disabled="is_use">
- <b-dropdown-item-button>Action</b-dropdown-item-button>
- <b-dropdown-item-button>Another action</b-dropdown-item-button>
- <b-dropdown-item-button>Something else here</b-dropdown-item-button>
- </b-dropdown>
- <b-dropdown size="sm" text="未扫总数" class="m-2" :disabled="is_use">
- <b-dropdown-item-button>Action</b-dropdown-item-button>
- <b-dropdown-item-button>Another action</b-dropdown-item-button>
- <b-dropdown-item-button>Something else here</b-dropdown-item-button>
- </b-dropdown>
- </div>
- <div class="header_middle1 ot">
- <div class="ft">{{ total_num }} </div>
- <div class="ft">{{ scan_num }} </div>
- <div class="ft">{{ total_num - scan_num }} </div>
- </div>
- <div class="header_footer">
- <div style="margin-left: 1rem">已发货{{ transport_total }}</div>
- </div>
- </div>
- <div class="bdy">
- <table>
- <tr style="height: 2rem">
- <th style="width: 3rem">销售单号</th>
- <th style="width: 4rem">产品名称</th>
- <th style="width: 3rem">规格型号</th>
- <th style="width: 3rem">已扫到数量</th>
- <th style="width: 3rem">未发货数量</th>
- </tr>
- <tr v-for="(item, index) in tableData" :key="index" @click="handleChoose(item, index)">
- <td>
- {{ item.bus_no }}
- </td>
- <td>{{ item.product_title }}</td>
- <td>{{ item.product_size }}</td>
- <td>{{ item.out_qty }}</td>
- <td>{{ item.this_delivery_qty - item.out_qty }}</td>
- </tr>
- </table>
- </div>
- <div class="footer">
- <Button type="primary" class="header_btn" style="margin-right: 3rem; height: 2.6rem" @click="handleReturn">
- 返回</Button>
- <Button type="primary" class="header_btn" style="margin-left: 3rem; height: 2.6rem" @click="handelGoSure">
- 确认</Button>
- </div>
- </div> -->
- </template>
- <script>
- export default {
- data() {
- return {
- tableData: [],
- key_tableData: {},
- send_goods_out: {},
- data: {},
- send_goods_out_product: {},
- is_show: true,
- is_use: false,
- total_num: 0,
- scan_num: 0,
- saveData: 0,
- transport_total: 0,
- scan_data: [],
- is_box_data: []
- }
- },
- mounted() {
- // if (localStorage.getItem('fyy_target')) {
- // data.target = JSON.parse(localStorage.getItem('fyy_target'))
- // }
- this.handleShow()
- this.tableData = []
- const id = this.$route.query.id
- const data = {
- url: `http://121.36.142.167:7774/jbl/api/module-data/send_goods_out/send_goods_out/474061443708694528/${id}`
- // post: {"direction":"DESC","property":"id","fromClientType":"pc","number":0,"sorts":[],"rules":[{"field":"dispatch_orders.dispatch_no","option":"LIKE_ANYWHERE","values":[v]},{"field":"product_no","option":"LIKE_ANYWHERE","values":["BC030101000001"]}],"size":15,"specialConditions":[],"workflowSearchBean":{},"dynamicFormCode":"dispatch_orders","dynamicFormTable":null,"ignoreField":true,"developmentSystemId":null,"debugFlag":true},
- }
- this.initData(data)
- },
- methods: {
- // 原始数据获取
- initData(row) {
- this.axios.post('/api/testdwyget', { ...row }).then(res => {
- this.tableData.push(...res.data.data.send_goods_out_product);
- res.data.data.send_goods_out_product.forEach((element, index) => {
- this.data = res.data
- this.total_num = this.total_num + element.this_delivery_qty
- this.transport_total = this.transport_total + element.out_qty
- this.key_tableData[this.deelUniqueProductKey(element)] = element;
- if (element.box_orders_show) {
- this.is_box_data.push(this.deelUniqueKey(element));
- }
- })
- // let ji = ['\"425A3030303235\"']
- // console.log(JSON.stringify(ji))
- let text = []
- if (localStorage.getItem('fyy_target')) {
- // console.log(JSON.parse(localStorage.getItem('fyy_target')))
- let target = JSON.parse(localStorage.getItem('fyy_target'))
- localStorage.removeItem('fyy_target')
- // this.$Message.warning(localStorage.getItem('fyy_target'))
- target.forEach(v => {
- v = v.replace(/\"/g, '')
- text.push(this.func.hexToString(v))
- })
- // // console.log(text)
- }
- const dataBox = {
- url: 'http://121.36.142.167:7774/jbl/api/module-data/box_orders/box_orders/diy/defective_order_no_list',
- post: { "defective_order_no_list":text}
- }
- // const dataBox = {
- // url: 'http://121.36.142.167:7774/jbl/api/module-data/box_orders/box_orders/diy/defective_order_no_list',
- // post: { "defective_order_no_list":['BZ00025']}
- // }
- this.initDataBox(dataBox)
- })
- },
- // 扫描数据获取
- initDataBox (row) {
- this.$Message.warning(row.post["defective_order_no_list"].toString())
- this.axios.post('/api/testdwy', { ...row }).then(res => {
- if (res.code == 200) {
- this.$Message.success('请求成功!')
- res.data.data.forEach((element, index) => {
- element.product_code = element.product_no
- let object = {
- "order_item_id": element.order_item_id,
- "order_no": element.order_no,
- "box_num": element.box_num,
- "product_code": element.product_code,
- "box_no": element.box_orders.defective_order_no,
- "color": element.color,
- "color_two": element.color_two,
- "process_title": element.process_title,
- "process_title_two": element.process_title_two,
- "box_id": element.box_orders.id
- }
- this.scan_data.push(object)
- })
- this.deelTableData()
- }
- })
- },
- deelUniqueKey(element) {
- let key = element.box_orders_show
- return key;
- },
- deelUniqueProductKey(element) {
- let key = element.product_code + (element.color?element.color:'') + (element.color_two?element.color_two:'') +(element.process_title?element.process_title:'') +(element.process_title_two?element.process_title_two:'')
- return key;
- },
- // 将原始数据处理拼接成提交的数据
- deelTableData() {
- let new_table_data = [];
- let is_scan_key = {};
- console.log(this.scan_data);
- this.scan_data.forEach((element, index) => {
- if (this.is_box_data.indexOf(element.box_no) === -1 && Object.keys(this.key_tableData).indexOf(this.deelUniqueProductKey(element)) !== -1 && (this.key_tableData[this.deelUniqueProductKey(element)].this_delivery_qty - element.box_num) >= 0) {
- let table_data_detail = JSON.parse(JSON.stringify(this.key_tableData[this.deelUniqueProductKey(element)]))
- table_data_detail.box_orders = element.box_id;
- table_data_detail.box_orders_show = element.box_no;
- table_data_detail.out_qty += element.box_num;
- this.key_tableData[this.deelUniqueProductKey(element)].this_delivery_qty -= element.box_num*1;
- is_scan_key[this.deelUniqueProductKey(element)]=1;
- // table_data_detail.this_delivery_qty = this.key_tableData[this.deelUniqueProductKey(element)].this_delivery_qty;
- table_data_detail.id = null;
- new_table_data.push(table_data_detail)
- }
- })
- this.tableData.forEach((element, index) => {
- // if (element.this_delivery_qty > 0 && element.out_qty === 0) {
- // new_table_data.push(element)
- // }
- if(!is_scan_key[this.deelUniqueProductKey(element)]){
- new_table_data.push(element)
- }
- })
- this.tableData = new_table_data;
- },
- handelGoSure () {
- this.tableData.forEach((element, index) => {
- element.item_num = (index + 1)
- })
- this.data.data.send_goods_out_product = this.tableData
- let data = {
- url: 'http://121.36.142.167:7774/jbl/api/module-data/send_goods_out/send_goods_out',
- post: this.data
- }
- this.axios.post('/api/testdwy', data).then(res => {
- if (res.code === 200) {
- this.$Message.success(res.msg)
- this.$router.go(-1)
- }
- })
- // console.log(JSON.stringify(this.data))
- },
- handleReturn() {
- localStorage.removeItem('fyy_target')
- this.$router.push('/cms/finish')
- },
- handleChoose(item, index) {
- item.is_choose = !item.is_choose
- this.tableData.splice(index, 1, item)
- },
- handleShow() {
- this.is_show = !this.is_show
- // console.log(document.getElementsByClassName('header'))
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .return_btn {
- background-image: url('../../../assets/home/return.png');
- background-size: 100% 100%;
- }
- .confirm_btn {
- background-image: url('../../../assets/home/confirm.png');
- background-size: 100% 100%;
- }
- .return_btn,
- .confirm_btn {
- width: 10.97rem;
- height: 3.93rem;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 1.06rem;
- font-weight: 500;
- letter-spacing: 1px;
- }
- .secd_flex_s>span:nth-child(1) {
- font-size: 0.94rem;
- color: #ABDFFF;
- }
- .secd_flex_s>span:nth-child(2) {
- font-size: 0.94rem;
- color: #03FCD3;
- }
- .secd_g {
- font-size: 1rem;
- color: #ABDFFF
- }
- .secd_title_d {
- font-size: 1.13rem;
- color: #FFFFFF;
- text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .secd_flex_w {
- display: flex;
- justify-content: space-between;
- padding-right: 1.6rem;
- box-sizing: border-box;
- }
- .secd_flex {
- display: flex;
- flex-direction: column;
- gap: .375rem;
- .secd_title {
- font-size: 0.88rem;
- color: #ABDFFF;
- opacity: 0.5;
- }
- }
- .check_box_c {
- width: 1.19rem;
- height: 100%;
- background-image: url('../../../assets/home/check.png');
- background-size: 100% 100%;
- }
- .check_box_c_active {
- width: 1.3rem;
- height: 100%;
- background-image: url('../../../assets/home/checked.png');
- background-size: 100% 100%;
- }
- .send_work {
- height: 10.69rem;
- background-image: url('../../../assets/home/packUpback.png');
- background-size: 100% 100%;
- margin-top: 1.38rem;
- padding: 0.44rem 0.4rem 1.34rem 1.22rem;
- box-sizing: border-box;
- .check_box {
- height: 1.19rem;
- display: flex;
- justify-content: right;
- }
- }
- .com_top {
- margin-top: 1.72rem !important;
- }
- .completion_con {
- height: 5.19rem;
- background-image: url('../../../assets/home/completion.png');
- background-size: 100% 100%;
- margin-top: 0.72rem;
- padding: 1rem 1.28rem;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .home_con_s {
- position: relative;
- .pack_up {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 5.56rem;
- background-image: url('../../../assets/home/packUp.png');
- background-size: 100% 100%;
- height: 1.97rem;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 2.59rem;
- height: 0.88rem;
- }
- }
- .pack_up_d {
- top: -1.1rem;
- }
- .pack_up_con {
- height: 14.09rem;
- background-image: url('../../../assets/home/packUpback.png');
- background-size: 100% 100%;
- padding: 1.78rem 2.03rem;
- box-sizing: border-box;
- .pack_up_name {
- height: 1.25rem;
- font-size: 1.25rem;
- color: #fff;
- font-weight: 600;
- }
- .pack_up_grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- row-gap: .625rem;
- &>div {
- display: flex;
- flex-direction: column;
- row-gap: .625rem;
- &>div {
- display: flex;
- gap: .125rem;
- span:nth-child(1) {
- font-size: 1.63rem;
- font-family: DIN-BoldItalic, DIN;
- font-weight: 600;
- color: #04FFD5;
- line-height: 1.31rem;
- transform: skewX(-10deg);
- text-shadow: 0px 0px 0px rgba(4, 255, 213, 0.23);
- }
- span:nth-child(2) {
- font-size: 1rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ABDFFF;
- }
- }
- &>p:nth-child(1) {
- font-size: 1rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ABDFFF;
- margin-bottom: 0px;
- }
- }
- }
- }
- }
- .home_con_body {
- width: 100%;
- padding: 1rem;
- box-sizing: border-box;
- }
- .home_header {
- height: 2.125rem;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 1.125rem;
- font-weight: 600;
- }
- .home_header_line {
- width: 100%;
- height: .0625rem;
- background-color: #fff;
- opacity: 0.2;
- }
- .header {
- width: 94%;
- height: 7rem;
- // overflow: hidden;
- // transition: all 0.4s;
- position: relative;
- top: 0.5rem;
- left: 3%;
- box-shadow: 0.16rem 0.1rem 0.1rem 0.1rem #9d9b9b;
- border-radius: 1rem;
- padding: 0.4rem 0.7rem 0 1rem;
- background: #fff;
- }
- .header_btn {
- border-radius: 1rem;
- padding: 0.1rem;
- width: 5rem;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .header_top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .ot {
- position: relative;
- top: -1.3rem;
- }
- .header_middle1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .ft {
- font-size: 1.5rem;
- width: 5rem;
- text-align: center;
- }
- }
- .header_middle {
- position: relative;
- top: -0.3rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- /deep/ .btn-group>.btn,
- .btn-group-vertical>.btn {
- background: #ffffff;
- color: #2c3e50;
- outline: none;
- border: none;
- margin: 0;
- z-index: 3;
- }
- //.header_footer {
- // position: relative;
- // top: -1.7rem;
- // display: flex;
- // justify-content: space-between;
- // align-items: center;
- //
- // div {
- // font-size: 0.5rem;
- // color: rgb(244, 136, 42);
- // }
- //}
- .bdy {
- width: 94%;
- height: calc(100% - 18.7rem);
- overflow: auto;
- position: relative;
- top: 1rem;
- left: 3%;
- }
- /deep/td {
- text-align: center;
- vertical-align: middle;
- }
- table {
- border-collapse: collapse;
- /* 合并边框 */
- width: 100%;
- /* 表格宽度 */
- background: #fff;
- table-layout: fixed;
- }
- th {
- font-size: 0.6rem;
- background: #66b1f4;
- color: #fff;
- }
- td {
- font-size: 0.6rem;
- word-break: break-all;
- }
- td,
- th {
- vertical-align: middle;
- text-align: center;
- border: 0.1rem solid #dddddd;
- /* 单元格边框样式 */
- padding: 0.02rem;
- /* 单元格内边距 */
- }
- .choose_item {
- background: #c8c8c8;
- }
- .footer {
- display: flex;
- width: 91%;
- position: absolute;
- bottom: 3rem;
- }
- </style>
|