|
@@ -9,7 +9,7 @@ from django.db import connection
|
|
|
import datetime
|
|
|
|
|
|
from utils.cust_data import customer_data
|
|
|
-from utils.judge_bills import judge_bills
|
|
|
+from utils.examine_ood import examine_ood
|
|
|
from utils.usr_data import usr_data
|
|
|
|
|
|
|
|
@@ -64,23 +64,23 @@ class InvoiceView(View):
|
|
|
print(USR_NAME) #制单人姓名 1
|
|
|
|
|
|
# 判断单号是否存在
|
|
|
- row_ZL_NO = judge_bills(ZL_NO)
|
|
|
+ row_ZL_NO = examine_ood('MF_LZ1','LZ_NO',ZL_NO)
|
|
|
if row_ZL_NO > 0:
|
|
|
return http.HttpResponseForbidden('单号重复')
|
|
|
|
|
|
#判断客户资料是否存在,不存在则创建
|
|
|
- row_cus_no = customer_data(CUS_NO, CUS_NO_NAME, '2')
|
|
|
+ row_cus_no = customer_data(CUS_NO, CUS_NO_NAME, '2',datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'))
|
|
|
|
|
|
# 判断用户是否存在,不存在则创建
|
|
|
- row_usr = usr_data(USR,USR_NAME)
|
|
|
+ row_usr = usr_data(USR,USR_NAME,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'))
|
|
|
|
|
|
with connection.cursor() as cursor:
|
|
|
#判断是否开票开票
|
|
|
if int(ZHANG_ID) == 3:
|
|
|
- # 插入进货单表头
|
|
|
- cursor.execute("""INSERT INTO MF_PSS(PS_ID,PS_NO,PS_DD,CUS_NO,ZHANG_ID,USR,CHK_MAN,CLS_DATE,SYS_DATE,AMT,CUR_ID,EXC_RTO,LZ_CLS_ID,CLSLZ,TAX_ID)
|
|
|
+ # 插入进货单表头-----------------------改CUR_ID RMB
|
|
|
+ cursor.execute("""INSERT INTO MF_PSS(PS_ID,PS_NO,PS_DD,CUS_NO,ZHANG_ID,USR,CHK_MAN,CLS_DATE,SYS_DATE,AMT,EXC_RTO,LZ_CLS_ID,CLSLZ,TAX_ID)
|
|
|
VALUES('PC',%s,%s,%s,3,%s,%s,%s,%s,%s,
|
|
|
- 'RMB',1,'F','F',1)""", ['PC'+ZL_NO[2::], datetime.datetime.strptime(LZ_DD,'%Y-%m-%d'),CUS_NO,USR,USR,datetime.datetime.strptime(LZ_DD,'%Y-%m-%d'),
|
|
|
+ 1,'F','F',1)""", ['PC'+ZL_NO[2::], datetime.datetime.strptime(LZ_DD,'%Y-%m-%d'),CUS_NO,USR,USR,datetime.datetime.strptime(LZ_DD,'%Y-%m-%d'),
|
|
|
datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),AMT])
|
|
|
#插入进货单表身
|
|
|
cursor.execute("""INSERT INTO TF_PSS(PS_ID,PS_NO,PS_DD,WH,PRD_NO,QTY,UP,AMT,AMTN_NET,TAX_RTO,ITM,UNIT,CSTN_SAL,PRE_ITM)
|
|
@@ -91,15 +91,15 @@ class InvoiceView(View):
|
|
|
VALUES(%s,%s,'LP',21,%s,%s,%s,%s,1,1,1,%s,%s,%s,%s,%s,%s,%s)""",[ZL_NO, INV_NO, CUS_NO, CUS_NO_NAME, CUS_NO_NAME, AMT,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),
|
|
|
UNI_NO_PAY,SAL_ADR,SAL_TEL,SAL_KH_BANK,SAL_ID_CODE,REM])
|
|
|
|
|
|
- #插入立账单MF_MRP
|
|
|
- cursor.execute("""INSERT INTO MF_ARP(ARP_ID,OPN_ID,ARP_NO,BIL_NO,CUS_NO,PAY_DD,INV_NO,AMT,AMTN,AMTN_NET,CUR_ID,EXC_RTO,CLOSE_ID,BIL_ID,SYS_DATE)VALUES
|
|
|
- (2,2,%s,%s,%s,%s,%s,%s,%s,%s,'RMB',1,'F','LP',%s)""", [ 'AP'+ZL_NO[2::],ZL_NO,CUS_NO,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),INV_NO
|
|
|
- ,AMT,AMT,AMT,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d')])
|
|
|
+ #插入立账单MF_MRP------------------改CUR_ID RMB
|
|
|
+ cursor.execute("""INSERT INTO MF_ARP(ARP_ID,OPN_ID,ARP_NO,BIL_NO,CUS_NO,PAY_DD,INV_NO,AMT,AMTN,AMTN_NET,EXC_RTO,CLOSE_ID,BIL_ID,SYS_DATE,BIL_DD)VALUES
|
|
|
+ (2,2,%s,%s,%s,%s,%s,%s,%s,%s,1,'F','LP',%s,%s)""", [ 'AP'+ZL_NO[2::],ZL_NO,CUS_NO,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),INV_NO
|
|
|
+ ,AMT,AMT,AMT,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),datetime.datetime.strptime(LZ_DD, '%Y-%m-%d')])
|
|
|
|
|
|
- #插入进货开票表头
|
|
|
- cursor.execute("""INSERT INTO MF_LZ1(LZ_ID,LZ_NO,PAY_DD,LZ_DD,CUS_NO,INV_NO,CUR_ID,EXC_RTO,USR,CHK_MAN,AMT,AMTN_NET,ARP_NO,CLS_DATE,TAX_ID,ZHANG_ID,
|
|
|
+ #插入进货开票表头--------------改CUR_ID RMB
|
|
|
+ cursor.execute("""INSERT INTO MF_LZ1(LZ_ID,LZ_NO,PAY_DD,LZ_DD,CUS_NO,INV_NO,EXC_RTO,USR,CHK_MAN,AMT,AMTN_NET,ARP_NO,CLS_DATE,TAX_ID,ZHANG_ID,
|
|
|
SYS_DATE,VOH_CHK,TURN_ID,INV_BIL_ID,INV_BIL_NO,FLG_VOH)VALUES
|
|
|
- ('LP',%s,%s,%s,%s,%s,'RMB',1,%s,%s,
|
|
|
+ ('LP',%s,%s,%s,%s,%s,1,%s,%s,
|
|
|
%s,%s,%s,%s,'1',3,%s,1,1,'LP',%s,'F')""", [ZL_NO, datetime.datetime.strptime(LZ_DD, '%Y-%m-%d')
|
|
|
,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),CUS_NO,INV_NO,USR,USR,AMT,AMT,'AP'+ZL_NO[2::],datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'),datetime.datetime.strptime(LZ_DD, '%Y-%m-%d')
|
|
|
,ZL_NO])
|
|
@@ -158,15 +158,15 @@ class InvoiceView(View):
|
|
|
# "REM": "我的备注",
|
|
|
# }
|
|
|
# 判断单号是否存在
|
|
|
- row_ZL_NO = judge_bills(ZL_NO)
|
|
|
+ row_ZL_NO = examine_ood('MF_LZ1', 'LZ_NO', ZL_NO)
|
|
|
if row_ZL_NO == 0:
|
|
|
return http.HttpResponseForbidden('单号不存在')
|
|
|
|
|
|
#判断厂商是否存在,不存在则自动创建
|
|
|
- row_cus_no = customer_data(CUS_NO, CUS_NO_NAME, '2')
|
|
|
+ row_cus_no = customer_data(CUS_NO, CUS_NO_NAME, '2',datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'))
|
|
|
|
|
|
# 判断用户是否存在,不存在则创建
|
|
|
- row_usr = usr_data(USR, USR_NAME)
|
|
|
+ row_usr = usr_data(USR, USR_NAME,datetime.datetime.strptime(LZ_DD, '%Y-%m-%d'))
|
|
|
|
|
|
with connection.cursor() as cursor:
|
|
|
# 修改进货单表头
|