123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- <template>
- <el-row :gutter="10">
- <el-col :span="setcol">
- <div class="flex-align-center normal-margin">
- <slot name="operation"></slot>
- <el-button class="inline-16" size="small" type="primary" @click="drawer = true">{{setcol === 24?'添 加':'取 消'}}</el-button>
- <excel class="inline-16" :tablecols="columnTitle" :param="param" :total="total" :excelTitle="excelTitle"></excel>
- </div>
- <el-table
- ref="multipleTable"
- :data="tableData"
- height="500px"
- style="width: 100%;"
- max-height="410px"
- size="small"
- stripe
- border>
- <!-- <el-table-column
- type="selection"
- width="55"
- align="center">
- </el-table-column> -->
- <el-table-column
- prop="rowno"
- label="行号"
- fixed
- width="50">
- </el-table-column>
- <el-table-column
- prop="itemname"
- label="产品名称"
- fixed
- width="180">
- </el-table-column>
- <el-table-column
- prop="itemno"
- label="产品编号"
- width="180">
- </el-table-column>
- <el-table-column
- prop="erpitemno"
- label="erp编号"
- width="180">
- </el-table-column>
- <el-table-column
- label="型号"
- prop="model">
- <template slot-scope="scope">
- <p><span>{{scope.row.model}}</span></p>
- </template>
- </el-table-column>
- <el-table-column
- label="规格"
- prop="spec">
- <template slot-scope="scope">
- <p><span>{{scope.row.spec}}</span></p>
- </template>
- </el-table-column>
- <el-table-column
- label="数量"
- width="180"
- prop="qty">
- <template slot-scope="scope">
- <el-input-number
- :controls="true"
- controls-position='right'
- :step-strictly="true"
- v-if="data.status === '新建'" size="mini"
- v-model="scope.row.qty" :min="scope.row.orderminqty" :step="scope.row.orderaddqty" label="输入数量" @change="qtyChange(scope.row,scope.$index)"></el-input-number>
- <span v-else>{{scope.row.qty}}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="需求日期"
- prop="needdate"
- width="200">
- <template slot="header" slot-scope="scope">
- <div>
- <el-date-picker
- style="width:180px"
- v-if="data.status === '新建'"
- v-model="value2"
- value-format="yyyy-MM-dd"
- slot="reference"
- align="right"
- type="date"
- size="mini"
- placeholder="一键交期"
- @change="dateChange(scope.row)">
- </el-date-picker>
- <span v-else>需求日期</span>
- </div>
- </template>
- <template slot-scope="scope">
- <el-date-picker
- v-if="scope.row.delivery > 0 && data.status === '新建'"
- v-model="scope.row.needdate"
- type="date"
- placeholder="选择日期"
- value-format="yyyy-MM-dd"
- size="mini"
- style="width:150px"
- :picker-options="pickerOptions"
- @change="onDateChange(scope.row)"
- @focus="setPickerOptions(scope.row)">
- </el-date-picker>
- <div v-else>
- <p v-if="scope.row.delivery === 0 ">不管控交期</p>
- <p v-else>{{scope.row.needdate}}</p>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- prop="deliverydate"
- label="回复交期"
- width="120">
- </el-table-column>
- <el-table-column
- prop="unit"
- label="计量单位"
- width="90">
- <template slot-scope="scope">
- <el-tag size="mini" type="info" effect="plain">{{scope.row.unit}}</el-tag>
- </template>
- </el-table-column>
- <!-- <el-table-column
- prop="price"
- label="价格"
- width="90">
- <template slot-scope="scope">
- <p style="color:red;font-weight:500">¥ {{tool.formatAmount(scope.row.price,2)}}</p>
- </template>
- </el-table-column> -->
- <el-table-column
- prop="marketprice"
- label="牌价"
- width="100">
- <template slot-scope="scope">
- <p>¥ {{tool.formatAmount(scope.row.marketprice,2)}}</p>
- </template>
- </el-table-column>
- <el-table-column
- prop="defaultprice"
- label="折前价格"
- width="100">
- <template slot-scope="scope">
- <el-input v-if="canUseInput" v-model="scope.row.defaultprice" @change="inputChange(scope.row,scope.$index)" placeholder="输入单价" size="mini"></el-input>
- <p v-else>¥ {{tool.formatAmount(scope.row.defaultprice,2)}}</p>
- </template>
- </el-table-column>
- <el-table-column
- prop="defaultamount"
- label="折前金额"
- width="100">
- <template slot-scope="scope">
- <p style="color:red;font-weight:500">¥ {{tool.formatAmount(scope.row.defaultprice * scope.row.qty,2)}}</p>
- </template>
- </el-table-column>
- <el-table-column
- label="折后价格"
- prop="price">
- <template slot-scope="scope">
- <p>¥ {{tool.formatAmount(scope.row.price,2)}}</p>
- </template>
- </el-table-column>
- <el-table-column
- label="折后金额"
- width="150"
- prop="amount">
- <template slot-scope="scope">
- <p style="color:red;font-weight:500">¥ {{tool.formatAmount(scope.row.amount,2)}}</p>
- </template>
- </el-table-column>
- <el-table-column
- prop="undeliqty"
- label="未发货数量"
- width="100">
- </el-table-column>
- <el-table-column
- prop="cansaleqty"
- label="库存数量"
- width="100">
- </el-table-column>
- <el-table-column
- prop="stockstatus"
- label="库存状态"
- width="100">
- </el-table-column>
- <el-table-column
- prop="remarks"
- label="备注"
- width="300"
- fixed="right">
- <template slot-scope="scope">
- <el-input type="textarea" :disabled="data.status != '新建'" @blur="onConfirm([scope.row],true)" size="small" v-model="scope.row.remarks" placeholder="请输入备注"></el-input>
- </template>
- </el-table-column>
- <el-table-column v-if="data.status === '新建'" width="90" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" size="mini" @click="deleteOrderProduct(scope.row)">删 除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div style="margin-top:16px;text-align:right">
- <el-pagination
- background
- small
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-size="param.content.pageSize"
- layout="total, prev, pager, next, jumper"
- :total="total">
- </el-pagination>
- </div>
- </el-col>
- <el-col :span="24 - setcol">
- <el-drawer
- title="添加商品"
- :visible.sync="drawer"
- append-to-body
- size="80%"
- direction="rtl">
- <div class="drawer__panel">
- <addProduct :drawer="drawer" :data="data" @onConfirm="onConfirm"></addProduct>
- </div>
- </el-drawer>
- </el-col>
- </el-row>
- </template>
- <script>
- import addProduct from '@/template/orderCanUseProduct/index.vue'
- export default {
- props:['data','type'],
- data () {
- return {
- drawer:false,
- setcol:24,
- dataRefresh:true,
- tableData:[],
- columnTitle:[],
- excelTitle:'订单明细',
- param:{
- "id": 20221109093902,
- "content": {
- "sa_orderid": 0, //订单ID
- "pageNumber": 1,
- "pageSize": 9999,
- "where": {
- "condition": ""
- }
- },
- },
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() < (Date.now() - 24 * 3600 * 1000);
- },
- },
- total:0,
- currentPage:0,
- time: null,
- value2:''
- }
- },
- computed:{
- canUseInput () {
- if (this.data.saler.length === 0) return false
- let salerIsEditPrice = this.data.saler[0].iseditprice
- if (this.data.type === '标准订单' && salerIsEditPrice && this.data.status === '新建') {
- return true
- } else {
- return false
- }
- }
- },
- components:{
- excel:() => import('../details/export_excel'),
- addProduct
- },
- methods:{
- async listData () {
- this.param.content.sa_orderid = this.$route.query.id
- const res = await this.$api.requested(this.param)
- this.tableData = res.data
- this.total = res.total
- this.currentPage = res.pageNumber
- },
- handleSizeChange(val) {
- // console.log(`每页 ${val} 条`);
- this.params.content.pageSize = val
- this.listData()
- },
- handleCurrentChange(val) {
- // console.log(`当前页: ${val}`);
- this.params.content.pageNumber = val
- this.listData()
- },
- async deleteOrderProduct (row) {
- const res = await this.$api.requested({
- "id": 20221109093702,
- "content": {
- "sa_orderid":this.$route.query.id,
- "sa_orderitemsids": [row.sa_orderitemsid]
- },
- })
- this.tool.showMessage(res,()=>{
- this.listData()
- this.$emit('onSuccess')
- })
- },
- // async updateOrderProduct (val) {
- // const res = await this.$api.requested({
- // "id": 20221110145302,
- // "content": val
- // })
- // this.$emit('onSuccess')
- // },
- qtyChange (val,index) {
- let that = this
- this.$set(this.tableData,index,val)
- // // 防抖
- if(this.time !== null){
- clearTimeout(this.time);
- }
- this.time = setTimeout(() => {
- that.updateOrder({
- "sa_orderid": this.data.sa_orderid, //订单ID
- "sys_enterpriseid": this.data.sys_enterpriseid, //企业ID
- "sa_contractid": this.data.contacts.contactsid, //合同ID
- "type": this.data.type, //订单类型
- "items": this.tableData
- })
- },500)
- },
- onDateChange (val){
- let that = this
- that.value2 = ''
- that.updateOrder({
- "sa_orderid": this.data.sa_orderid, //订单ID
- "sys_enterpriseid": this.data.sys_enterpriseid, //企业ID
- "sa_contractid": this.data.contacts.contactsid, //合同ID
- "type": this.data.type, //订单类型
- "items": this.tableData
- })
-
- },
- async dateChange (row) {
- this.tableData = this.tableData.filter(e=>{
- if (e.delivery > 0) {
- e.needdate = this.value2
- }
- return e
- })
- const res = await this.$api.requested({
- "id": 20230104143802,
- "content": {
- "sa_orderid": this.$route.query.id,
- "needdate": this.value2
- },
- })
- },
- async updateOrder (val) {
- const res = await this.$api.requested({
- "id": 20221109093602,
- "content": val
- })
- this.$emit('onSuccess')
- },
- setPickerOptions (val) {
- var startDate = val.deliverydate
- startDate = startDate.replace(new RegExp("-","gm"),"/")
- var startDateM = (new Date(startDate)).getTime()
- this.pickerOptions = {
- disabledDate(time) {
- return time.getTime() < startDateM;
- },
- }
- },
- // 订单添加商品
- async onConfirm (data,edit) {
- const res = await this.$api.requested({
- "id": 20221109093602,
- "content": {
- "sa_orderid": this.$route.query.id, //订单ID
- "sys_enterpriseid": this.data.sys_enterpriseid, //企业ID
- "type": this.data.type, //订单类型
- "items": data.map(e=>{
- return {
- sa_orderitemsid:edit?e.sa_orderitemsid : 0,
- itemid:e.itemid,
- qty:e.orderminqty,
- needdate:e.deliverydate,
- remarks:e.remarks
- }
- })
- },
- })
- this.tool.showMessage(res,()=>{
- this.drawer = false
- this.listData()
- this.$emit('onSuccess')
- })
- },
- inputChange (row,index) {
- console.log(row.defaultprice,Number(row.contractprice))
- if (row.defaultprice < Number(row.contractprice)) {
- this.$message({
- message:'价格不能低于原价!',
- type:'error'
- })
- row.defaultprice = row.contractprice
- this.updateOrder({
- "sa_orderid": this.data.sa_orderid, //订单ID
- "sys_enterpriseid": this.data.sys_enterpriseid, //企业ID
- "sa_contractid": this.data.contacts.contactsid, //合同ID
- "type": this.data.type, //订单类型
- "items": this.tableData
- })
- } else {
- // row.defaultprice = row.contractprice
- this.$set(this.tableData,index,row)
- this.updateOrder({
- "sa_orderid": this.data.sa_orderid, //订单ID
- "sys_enterpriseid": this.data.sys_enterpriseid, //企业ID
- "sa_contractid": this.data.contacts.contactsid, //合同ID
- "type": this.data.type, //订单类型
- "items": this.tableData
- })
-
- }
-
- }
- },
- mounted () {
- this.listData()
- console.log("表结构")
- this.columnTitle = []
- this.$refs.multipleTable.$children.forEach(obj => {
- let columnChild = {'columnname':obj.prop,'filter':0,'rowindex':'','sequence':'','title':obj.label,'width':obj.width}
- // 存到columnTitle数组中
- this.columnTitle.push(columnChild)
- })
- console.log(this.columnTitle)
- },
- watch:{
- value2 (val) {
- console.log(val)
- }
- }
- }
- </script>
- <style>
- </style>
|