goodChangeDialog.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. title="设置发票商品信息"
  5. :center="true"
  6. align="left"
  7. top="7vh"
  8. width="840px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. append-to-body
  15. @close="closeModel"
  16. >
  17. <el-card>
  18. <el-form
  19. ref="ruleForm"
  20. :model="ruleForm"
  21. status-icon
  22. size="mini"
  23. :rules="rulesThis"
  24. label-width="95px"
  25. class="demo-ruleForm"
  26. >
  27. <el-row>
  28. <el-col :span="8">
  29. <el-form-item label="产品编号" prop="goodNo">
  30. <p>{{ ruleForm.goodNo }}</p>
  31. </el-form-item>
  32. </el-col>
  33. <el-col :span="8">
  34. <el-form-item label="产品单价" prop="goodNo">
  35. <p>{{ ruleForm.price }}</p>
  36. </el-form-item>
  37. </el-col>
  38. <el-col :span="8">
  39. <el-form-item label="产品单位" prop="unit">
  40. <el-input v-model="ruleForm.unit" maxlength="200"></el-input>
  41. </el-form-item>
  42. </el-col>
  43. </el-row>
  44. <el-form-item label="商品名称">
  45. <p>{{ ruleForm.goodname }}</p>
  46. </el-form-item>
  47. <el-form-item label="开票商品名" prop="remark">
  48. <el-input v-model="ruleForm.remark" maxlength="200"></el-input>
  49. </el-form-item>
  50. <el-row v-if="isDetail === '003'">
  51. <el-col :span="6" class="fl-col">
  52. <el-form-item label="总量">
  53. <p>{{ ruleForm.num }}</p>
  54. </el-form-item>
  55. <el-tag size="medium" class="fl-tag">数量</el-tag>
  56. </el-col>
  57. <el-col :span="6" style="width: 165px">
  58. <el-form-item label="已核销" label-width="55px">
  59. <p>{{ ruleForm.inv_num }}</p>
  60. </el-form-item>
  61. </el-col>
  62. <el-col :span="6" style="width: 165px">
  63. <el-form-item label="未核销" label-width="55px">
  64. <p>{{ ruleForm.over_num }}</p>
  65. </el-form-item>
  66. </el-col>
  67. <el-col :span="6" style="width: 231px">
  68. <el-form-item label="此次核销" prop="good_num" label-width="80px">
  69. <el-input-number
  70. step-strictly
  71. size="mini"
  72. controls-position="right"
  73. style="width: 100%"
  74. class="notAnniu"
  75. :disabled="isDetail !== '003'"
  76. v-model="ruleForm.good_num"
  77. :precision="0"
  78. :step="1"
  79. :min="0"
  80. :max="ruleForm.over_num"
  81. ></el-input-number>
  82. </el-form-item>
  83. </el-col>
  84. <el-col :span="6" class="fl-col">
  85. <el-form-item label="总量">
  86. <p>{{ ruleForm.total }}</p>
  87. </el-form-item>
  88. <el-tag size="medium" class="fl-tag">金额</el-tag>
  89. </el-col>
  90. <el-col :span="6" style="width: 165px">
  91. <el-form-item label="已核销" label-width="55px">
  92. <p>{{ ruleForm.ainv_fee }}</p>
  93. </el-form-item>
  94. </el-col>
  95. <el-col :span="6" style="width: 165px">
  96. <el-form-item label="未核销" label-width="55px">
  97. <p>{{ ruleForm.winv_fee }}</p>
  98. </el-form-item>
  99. </el-col>
  100. <el-col :span="6" style="width: 231px">
  101. <el-form-item label="此次核销" label-width="80px" prop="total_fee">
  102. <el-input-number
  103. step-strictly
  104. size="mini"
  105. controls-position="right"
  106. style="width: 100%"
  107. class="notAnniu"
  108. :disabled="isDetail !== '003'"
  109. v-model="ruleForm.total_fee"
  110. :precision="2"
  111. :step="0.01"
  112. :min="0"
  113. :max="ruleForm.winv_fee"
  114. ></el-input-number>
  115. </el-form-item>
  116. </el-col>
  117. </el-row>
  118. <el-row>
  119. <el-col :span="24" style="text-align: right">
  120. <el-button type="primary" @click="submitForm"> 保 存 </el-button>
  121. <el-button @click="showModelThis = false">取 消</el-button>
  122. </el-col>
  123. </el-row>
  124. </el-form>
  125. </el-card>
  126. </el-dialog>
  127. </template>
  128. <script>
  129. export default {
  130. props: ["showModel", "item", "isDetail", "index"],
  131. data() {
  132. return {
  133. loading: false,
  134. showModelThis: this.showModel,
  135. ruleForm: {
  136. goodNo: "",
  137. goodname: "", // 账号
  138. remark: "",
  139. unit: "",
  140. num: "",
  141. inv_num: "",
  142. over_num: "",
  143. good_num: "",
  144. total: "",
  145. ainv_fee: "",
  146. winv_fee: "",
  147. total_fee: "",
  148. },
  149. rulesThis: this.rules,
  150. rules: {
  151. remark: [
  152. {
  153. required: true,
  154. message: "请输入开票商品名",
  155. trigger: "blur",
  156. },
  157. ],
  158. good_num: [
  159. {
  160. required: true,
  161. message: "请输入此次核销数量",
  162. trigger: "blur",
  163. },
  164. ],
  165. unit: [
  166. {
  167. required: true,
  168. message: "请输入商品单价",
  169. trigger: "blur",
  170. },
  171. ],
  172. total_fee: [
  173. {
  174. required: true,
  175. message: "请输入开票商品名",
  176. trigger: "blur",
  177. },
  178. ],
  179. },
  180. };
  181. },
  182. watch: {
  183. // icon(val) {
  184. // if (val) {
  185. // this.showModelThis = false
  186. // this.$emit('setVal', val)
  187. // }
  188. // },
  189. showModel: function (val) {
  190. this.showModelThis = val;
  191. if (val) {
  192. this.initForm();
  193. }
  194. },
  195. showModelThis(val) {
  196. if (!val) {
  197. this.$emit("cancel");
  198. }
  199. },
  200. },
  201. methods: {
  202. closeModel() {
  203. console.log("closeModel!!");
  204. },
  205. async initForm() {
  206. this.loading = true;
  207. console.log(this.item);
  208. await this.resetForm();
  209. this.rulesThis = this.rules;
  210. console.log(this.item);
  211. this.ruleForm = Object.assign({}, this.item);
  212. this.loading = false;
  213. },
  214. async resetForm() {
  215. // 重置
  216. await this.$nextTick((sitem) => {
  217. console.log(sitem);
  218. if (this.$refs.ruleForm) {
  219. this.$refs.ruleForm.resetFields();
  220. this.$refs.ruleForm.clearValidate();
  221. this.ruleForm = {
  222. goodNo: "",
  223. goodname: "", // 账号
  224. remark: "",
  225. num: "",
  226. inv_num: "",
  227. over_num: "",
  228. good_num: "",
  229. total: "",
  230. unit:"",
  231. ainv_fee: "",
  232. winv_fee: "",
  233. total_fee: "",
  234. };
  235. }
  236. });
  237. },
  238. async submitForm() {
  239. await this.$refs.ruleForm.validate(async (valid) => {
  240. if (valid) {
  241. this.ruleForm.remark = this.ruleForm.remark.replace(/\s*/g, "");
  242. if (this.ruleForm.remark === "") {
  243. this.$message.error("开票商品名不能未空!");
  244. return;
  245. }
  246. if (this.isDetail === "003") {
  247. if (this.ruleForm.good_num === 0) {
  248. this.$message.error("核销数量不能为0!");
  249. return;
  250. }
  251. if (
  252. this.ruleForm.total_fee === 0 ||
  253. this.ruleForm.total_fee === 0.0 ||
  254. this.ruleForm.total_fee === 0.0
  255. ) {
  256. this.$message.error("核销金额不能为0!");
  257. return;
  258. }
  259. }
  260. this.showModelThis = false;
  261. this.$emit("refresh", this.ruleForm);
  262. // console.log("this.icon");
  263. // console.log(this.icon);
  264. } else {
  265. console.log("error submit!!");
  266. return false;
  267. }
  268. });
  269. },
  270. },
  271. };
  272. </script>
  273. <style></style>