123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <template>
- <div>
- <!-- <el-dropdown size="small" split-button type="primary" @command="handleCommand">
- 新 建
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="标准订单">标准订单</el-dropdown-item>
- <el-dropdown-item command="项目订单">项目订单</el-dropdown-item>
- <el-dropdown-item command="促销订单">促销订单</el-dropdown-item>
- <el-dropdown-item command="工具订单">工具订单</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown> -->
- <el-dropdown @command="handleCommand">
- <el-button type="primary" size="small">
- 新 建<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="标准订单">标准订单</el-dropdown-item>
- <el-dropdown-item command="项目订单">项目订单</el-dropdown-item>
- <!-- <el-dropdown-item command="促销订单">促销订单</el-dropdown-item> -->
- <el-dropdown-item command="工具订单">工具订单</el-dropdown-item>
- <!-- <el-dropdown-item command="样品订单" v-if="siteId=='HY'">样品订单</el-dropdown-item> -->
- </el-dropdown-menu>
- </el-dropdown>
- <el-drawer
- title="新建订单"
- :visible.sync="drawer"
- direction="rtl"
- :show-close="false"
- append-to-body
- size="800px"
- @close="refresh">
- <div class="drawer__panel">
- <el-row :gutter="15">
- <el-form size="small" ref="form" :model="form" :rules="rules" label-width="100px" :status-icon="false">
- <el-col :span="24">
- <el-form-item label="订单类型" prop="type">
- <el-input readonly v-model="form.type" placeholder="订单类型" :maxlength="11" clearable :style="{width: '100%'}"></el-input>
- </el-form-item>
- </el-col>
- <el-col v-if="form.type === '促销订单'" :span="12">
- <el-form-item label="活动信息" prop="promname">
- <el-popover
- placement="bottom"
- trigger="click"
- v-model="visible1">
- <orderCanUseActivity ref="activity" @rowClick="activityClick"></orderCanUseActivity>
- <el-input readonly v-model="form.promname" slot="reference" placeholder="选择活动"></el-input>
- </el-popover>
- </el-form-item>
- </el-col>
- <el-col v-if="form.type === '项目订单'" :span="12">
- <el-form-item label="项目合同" prop="contractname">
- <el-popover
- placement="bottom"
- trigger="click"
- v-model="visible">
- <orderCanUseContract @rowClick="contractClick"></orderCanUseContract>
- <el-input readonly v-model="form.contractname" slot="reference" placeholder="选择合同"></el-input>
- </el-popover>
- </el-form-item>
- </el-col>
- <el-col :span="12" v-if="form.type !=='工具订单' && form.type !=='项目订单'">
- <el-form-item label="选择品牌" prop="sa_brandid">
- <el-select :disabled="form.type === '促销订单'" v-model="form.sa_brandid" placeholder="请选择选择品牌" clearable :style="{width: '100%'}">
- <el-option v-for="(item, index) in sa_brandidOptions" :key="index" :label="item.brandname"
- :value="item.sa_brandid" :disabled="item.disabled"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12" v-if="form.type !=='工具订单' && form.type !=='项目订单'">
- <el-form-item label="选择领域" prop="tradefield">
- <el-select :disabled="form.type === '促销订单'" v-model="form.tradefield" placeholder="请选择选择领域" clearable :style="{width: '100%'}">
- <el-option v-for="(item, index) in tradefieldOptions" :key="index" :label="item.tradefield"
- :value="item.tradefield" :disabled="item.disabled"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12" v-if="form.type =='标准订单' || form.type =='项目订单'">
- <el-form-item label="是否样品订单" prop="typemx">
- <el-radio-group v-model="form.typemx">
- <el-radio label="样品">是</el-radio>
- <el-radio label="">否</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :span="24" v-if="form.type ==='标准订单' || form.type ==='特殊订单' || form.type ==='样品订单'">
- <el-form-item label="项目备注">
- <el-input size="mini" class="order__note__input" type="textarea" v-model="form.projectnote" :autosize="{minRows:5}" placeholder="请输入项目备注"></el-input>
- </el-form-item>
- </el-col>
- </el-form>
- </el-row>
- </div>
- <div class="fixed__btn__panel">
- <el-button class="normal-btn-width" type="primary" size="small" @click="submitForm">创 建</el-button>
- <el-button class="normal-btn-width" size="small" @click="resetForm">重 置</el-button>
- </div>
- </el-drawer>
- </div>
- </template>
- <script>
- import enterprise from '@/template/enterprise/index.vue'
- import orderCanUseContract from '@/template/orderCanUseContract/index.vue'
- import orderCanUseActivity from '@/template/orderCanUseActivity/index.vue'
- export default {
- data () {
- return {
- drawer:false,
- visible:false,
- visible1:false,
- siteId:JSON.parse(sessionStorage.getItem('active_account')).siteid,
- form:{
- "sa_orderid": 0,
- "sa_accountclassid": 0, //营销账户类型ID
- "sa_brandid": "", //品牌ID
- "sa_contractid": 0, //合同ID,标准订单不传
- "sa_projectid": 0, //工程项目表ID,标准订单不传
- "sys_enterprise_financeid": 0, //合作企业财务信息ID(开票信息)
- "sa_logiscompid": 0, //物流公司档案ID
- "rec_contactsid": 0, //合作企业联系人表ID(收货信息)
- "type": "", //订单类型
- "typemx": "", //明细分类,可选
- "remarks": "", //可选
- "saler_hrid":0,//销售人员hrid,业务员hrid
- "tradefield":"",//必选
- "pay_enterpriseid": 0, //结算单位
- "rebate_used":0,//默认0,是否使用返利金
- "billdate":"",//单据日期,默认创建日期
- "signbacknum":"",
- "contractname":'',
- "projectnote":""
- },
- rules: {
- sa_brandid: [{
- required: true,
- message: '请选择选择品牌',
- trigger: 'change'
- }],
- tradefield: [{
- required: true,
- message: '请选择选择领域',
- trigger: 'change'
- }],
- sys_enterpriseid:[{
- required: true,
- message: '订货企业不能为空',
- trigger: 'blur'
- }],
- contractname:[{
- required: true,
- message: '项目不能为空',
- trigger: 'blur'
- }],
- },
- sa_brandidOptions: [],
- tradefieldOptions: [],
- typemxlist:[]
- }
- },
- components:{
- enterprise,
- orderCanUseContract,
- orderCanUseActivity
- },
- methods:{
- async handleCommand (command) {
- this.form.type = command
- if (this.form.type == '特殊订单') {
- this.rules.typemx = [{
- required: true,
- message: '请选择选子分类',
- trigger: 'change'
- }]
- } else {
- delete this.rules.typemx
- }
- if (command === '工具订单') {
- const res = await this.$api.requested({
- "id": 20221108111402,
- "content":this.form
- })
- this.tool.showMessage(res,()=>{
- this.$store.dispatch('changeDetailDrawer',true)
- this.$router.push({path:'/agent_orderDetails',query:{id:res.data.sa_orderid,rowindex:res.data.rowindex}})
- })
- } else {
- this.drawer = true
- this.pageData()
- this.specordermx()
- }
- },
- submitForm() {
- this.$refs['form'].validate(async valid => {
- if (!valid) return
- const res = await this.$api.requested({
- "id":this.form.type ==='项目订单'?20230103141402: 20221108111402,
- "content":this.form
- })
- this.tool.showMessage(res,()=>{
- this.drawer = false
- this.refresh()
- this.$store.dispatch('changeDetailDrawer',true)
- this.$router.push({path:'/agent_orderDetails',query:{id:res.data.sa_orderid,rowindex:res.data.rowindex}})
- })
- })
- },
- async specordermx () {
- const res = await this.$store.dispatch('optiontypeselect','specordermx')
- this.typemxlist = res.data
- },
- resetForm() {
- this.$refs['form'].resetFields()
- },
- async pageData () {
- const res = await this.$api.requested({
- "id": 20220924163702,
- "content": {
- "pageSize": 999,
- }
- })
- this.sa_brandidOptions = res.data
- const res1 = await this.$api.requested({
- "id": 20221223141802,
- "content": {
- "pageSize": 999,
- }
- })
- this.tradefieldOptions = res1.data
- },
- rowClick (row) {
- this.form.sys_enterpriseid = row.sys_enterpriseid
- },
- contractClick (row) {
- console.log(row,'row')
- this.form.sa_contractid = row.sa_contractid
- this.form.sa_projectid = row.sa_projectid
- this.form.contractname = row.title === ''?'未知':row.title
- this.visible = false
- this.$refs['form'].validateField('contractname')
- },
- activityClick (row) {
- this.form.sa_promotionid = row.sa_promotionid
- this.form.promname = row.promname
- this.form.tradefield = row.tradefield
- this.form.sa_brandid = row.sa_brandid
- if (row.tradefield) {
- let arr = []
- arr = this.tradefieldOptions.filter(e=>{
- if (e.tradefield === row.tradefield) {
- return e
- }
- })
- this.childField = arr[0].subvalues
- }
- this.$refs['form'].validate()
- this.visible1 = false
- },
- refresh () {
- this.form = {
- "sa_orderid": 0,
- "sa_accountclassid": 0, //营销账户类型ID
- "sa_brandid": "", //品牌ID
- "sa_contractid": 0, //合同ID,标准订单不传
- "sa_projectid": 0, //工程项目表ID,标准订单不传
- "sys_enterprise_financeid": 0, //合作企业财务信息ID(开票信息)
- "sa_logiscompid": 0, //物流公司档案ID
- "rec_contactsid": 0, //合作企业联系人表ID(收货信息)
- "type": "", //订单类型
- "typemx": "", //明细分类,可选
- "remarks": "", //可选
- "saler_hrid":0,//销售人员hrid,业务员hrid
- "tradefield":"",//必选
- "pay_enterpriseid": 0, //结算单位
- "rebate_used":0,//默认0,是否使用返利金
- "billdate":"",//单据日期,默认创建日期
- "signbacknum":"",
- "contractname":'',
- "projectnote":""
- }
- this.visible1 = false
- }
- }
- }
- </script>
- <style>
- </style>
|